blob: 3db5529039520397d4753204939cca66d624afa9 (
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
|
#!/usr/bin/openrc-run
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
extra_started_commands="reload"
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"
/usr/bin/avahi-daemon -r
eend $?
}
|