You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
513 B
37 lines
513 B
#!/bin/sh
|
|
# Start/stop/restart dnsmasq (a small DNS/DHCP server):
|
|
|
|
# Start dnsmasq:
|
|
dnsmasq_start() {
|
|
if [ -x /usr/sbin/dnsmasq ]; then
|
|
echo "Starting dnsmasq: /usr/sbin/dnsmasq"
|
|
/usr/sbin/dnsmasq
|
|
fi
|
|
}
|
|
|
|
# Stop dnsmasq:
|
|
dnsmasq_stop() {
|
|
killall dnsmasq
|
|
}
|
|
|
|
# Restart dnsmasq:
|
|
dnsmasq_restart() {
|
|
dnsmasq_stop
|
|
sleep 1
|
|
dnsmasq_start
|
|
}
|
|
|
|
case "$1" in
|
|
'start')
|
|
dnsmasq_start
|
|
;;
|
|
'stop')
|
|
dnsmasq_stop
|
|
;;
|
|
'restart')
|
|
dnsmasq_restart
|
|
;;
|
|
*)
|
|
echo "usage rc.dnsmasq: start|stop|restart"
|
|
esac
|
|
|
|
|