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.
38 lines
513 B
38 lines
513 B
6 years ago
|
#!/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
|
||
|
|