source:
freewrt/package/dnsmasq/files/dnsmasq.init@
e80a2f9
| Last change on this file since e80a2f9 was e80a2f9, checked in by , 19 years ago | |
|---|---|
|
|
| File size: 320 bytes | |
| Line | |
|---|---|
| 1 | #!/bin/sh |
| 2 | |
| 3 | . /etc/rc.conf |
| 4 | |
| 5 | case $1 in |
| 6 | autostart) |
| 7 | test x"${dns_dhcp:-NO}" = x"NO" && exit 0 |
| 8 | exec $0 start |
| 9 | ;; |
| 10 | start) |
| 11 | [ -f /etc/dnsmasq.conf ] || exit |
| 12 | mkdir -p /var/lib/misc |
| 13 | /usr/sbin/dnsmasq |
| 14 | ;; |
| 15 | stop) |
| 16 | killall dnsmasq |
| 17 | ;; |
| 18 | restart) |
| 19 | $0 stop |
| 20 | $0 start |
| 21 | ;; |
| 22 | *) |
| 23 | echo "Usage: $0 {start | stop | restart}" |
| 24 | ;; |
| 25 | esac |
| 26 | exit 0 |
Note:
See TracBrowser
for help on using the repository browser.
