Home | History | Annotate | Download | only in mDNSPosix

Lines Matching refs:STOP

18 # Linux /etc/init.d script to start/stop the mdnsd daemon.
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"
37 # to specify "-s TERM" since SIGTERM (15) is the default stop signal anway
38 # STOP="start-stop-daemon --stop -s TERM --quiet --oknodo --exec"
39 STOP="start-stop-daemon --stop --quiet --oknodo --exec"
45 STOP=killmdnsd
55 stop)
57 echo -n " mdnsd" ; $STOP $DAEMON
62 $STOP $DAEMON
68 echo "Usage: /etc/init.d/mDNS {start|stop|reload|restart}"