blob: c5cd6505e0f5d95ffefd69f37834ee00b6eb25a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#!/usr/bin/openrc-run
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
extra_started_commands="reload"
command="/usr/sbin/avahi-daemon"
supervisor="supervise-daemon"
depend() {
before netmount nfsmount
use net
need dbus
}
# start() {
# ebegin "Starting avahi-daemon"
# /usr/bin/avahi-daemon -D
# eend $?
# }
#
# stop() {
# ebegin "Stopping avahi-daemon"
# /usr/bin/avahi-daemon -k
# eend $?
# }
reload() {
ebegin "Reloading avahi-daemon"
${command} -r
eend $?
}
|