Lines Matching refs:DAEMON
18 # Linux /etc/init.d script to start/stop the mdnsd daemon.
26 DAEMON=/usr/sbin/mdnsd
28 DAEMON=/usr/local/sbin/mdnsd
31 test -r $DAEMON || exit 0
33 # Some systems have start-stop-daemon, some don't.
34 if [ -r /sbin/start-stop-daemon ]; then
35 START="start-stop-daemon --start --quiet --exec"
38 # STOP="start-stop-daemon --stop -s TERM --quiet --oknodo --exec"
39 STOP="start-stop-daemon --stop --quiet --oknodo --exec"
50 echo -n "Starting Apple Darwin Multicast DNS / DNS Service Discovery daemon:"
52 $START $DAEMON
56 echo -n "Stopping Apple Darwin Multicast DNS / DNS Service Discovery daemon:"
57 echo -n " mdnsd" ; $STOP $DAEMON
61 echo -n "Restarting Apple Darwin Multicast DNS / DNS Service Discovery daemon:"
62 $STOP $DAEMON
64 $START $DAEMON