summaryrefslogtreecommitdiff
path: root/aports/dhcpcd/dhcpcd.initd
blob: bcefb601d6cdc95f422407d672e72031fc899186 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/sbin/openrc-run

description="DHCP Client Daemon"

command="/sbin/dhcpcd"
command_args="-q -B ${command_args:-}"
command_background="true"
pidfile="/run/dhcpcd/pid"

depend() {
	provide net
	need localmount
	use logger network
	after bootmisc modules
	before dns
}

start_pre() {
	checkpath -d /run/dhcpcd
}