pmaports/temp/dhcpcd/dhcpcd.initd
JuniorJPDJ 67ceee4079
temp/dhcpcd: fix for old kernels (!228)
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.
2019-02-28 13:43:28 +01:00

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
}