SmartAudio/package/libs/avahi/files/avahi-daemon.init

25 lines
306 B
Plaintext
Raw Normal View History

2018-07-13 01:31:50 +00:00
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
START=61
2018-08-03 01:42:23 +00:00
DEPEND=dbus,boot,netease_dbus_services
2018-07-13 01:31:50 +00:00
BIN=avahi-daemon
DEFAULT=/etc/default/$BIN
OPTIONS="-D"
RUN_D=/var/run/$BIN
start() {
[ -f $DEFAULT ] && . $DEFAULT
mkdir -p $RUN_D
$BIN $OPTIONS
}
stop() {
$BIN -k
}
reload() {
$BIN -r
}