67ceee4079
Fork the package from Alpine and undefine IFA_F_NOPREFIXROUTE during compilation, so it works with the old downstream kernels that do not have this feature yet.
14 lines
231 B
Text
14 lines
231 B
Text
#!/sbin/openrc-run
|
|
|
|
name="DHCP Client Daemon"
|
|
command="/sbin/dhcpcd"
|
|
pidfile="/run/dhcpcd.pid"
|
|
command_args="-q ${command_args:-}"
|
|
|
|
depend() {
|
|
provide net
|
|
need localmount
|
|
use logger network
|
|
after bootmisc modules
|
|
before dns
|
|
}
|