dc4af7d32a
[ci:skip-build]: already built successfully in CI
18 lines
295 B
Text
18 lines
295 B
Text
#!/sbin/openrc-run
|
|
|
|
supervisor=supervise-daemon
|
|
|
|
name="DHCP Client Daemon"
|
|
description="DHCP Client Daemon"
|
|
|
|
command=/sbin/dhcpcd
|
|
command_args_foreground="-B"
|
|
command_args="-q ${command_args:-}"
|
|
|
|
depend() {
|
|
provide net
|
|
need localmount
|
|
use logger network
|
|
after bootmisc modules
|
|
before dns
|
|
}
|