2019-02-19 06:41:40 +00:00
|
|
|
#!/sbin/openrc-run
|
|
|
|
|
2019-09-09 09:29:32 +00:00
|
|
|
supervisor=supervise-daemon
|
|
|
|
|
2019-02-19 06:41:40 +00:00
|
|
|
name="DHCP Client Daemon"
|
2019-09-09 09:29:32 +00:00
|
|
|
description="DHCP Client Daemon"
|
|
|
|
|
|
|
|
command=/sbin/dhcpcd
|
|
|
|
command_args_foreground="-B"
|
2019-02-19 06:41:40 +00:00
|
|
|
command_args="-q ${command_args:-}"
|
|
|
|
|
|
|
|
depend() {
|
|
|
|
provide net
|
|
|
|
need localmount
|
|
|
|
use logger network
|
|
|
|
after bootmisc modules
|
|
|
|
before dns
|
|
|
|
}
|