b44e605e71
--HG-- extra : convert_revision : 2ee0419796e70950f1a47e217bd6b141c982c8e1
23 lines
254 B
Text
23 lines
254 B
Text
#!/sbin/runscript
|
|
#
|
|
#
|
|
|
|
command=/sbin/dhcpcd
|
|
command_args=-q
|
|
pidfile=/var/run/dhcpcd.pid
|
|
|
|
depend()
|
|
{
|
|
provide net
|
|
need localmount
|
|
use logger
|
|
after bootmisc modules
|
|
before dns
|
|
}
|
|
|
|
stop_pre()
|
|
{
|
|
if yesno $RC_GOINGDOWN; then
|
|
: ${stopsig:=SIGKILL}
|
|
fi
|
|
}
|