android_mt6572_jiabo/external/avahi/initscript/gentoo/avahi-daemon.in
2025-09-05 16:56:03 +08:00

29 lines
444 B
Text

#!/sbin/runscript
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
opts="reload"
depend() {
before netmount nfsmount
use net
need dbus
}
start() {
ebegin "Starting avahi-daemon"
@sbindir@/avahi-daemon -D
eend $?
}
stop() {
ebegin "Stopping avahi-daemon"
@sbindir@/avahi-daemon -k
eend $?
}
reload() {
ebegin "Reloading avahi-daemon"
@sbindir@/avahi-daemon -r
eend $?
}