13 lines
191 B
Plaintext
13 lines
191 B
Plaintext
|
#!/sbin/runscript
|
||
|
|
||
|
pidfile=/var/run/dnsmasq.pid
|
||
|
command=/usr/sbin/dnsmasq
|
||
|
command_args="${DNSMASQ_OPTS:--g nogroup -u nobody}"
|
||
|
|
||
|
depend()
|
||
|
{
|
||
|
provide dns
|
||
|
need localmount net
|
||
|
after bootmisc
|
||
|
}
|