summaryrefslogtreecommitdiff
path: root/user/dhcpcd/dhcpcd.initd
diff options
context:
space:
mode:
Diffstat (limited to 'user/dhcpcd/dhcpcd.initd')
-rw-r--r--user/dhcpcd/dhcpcd.initd14
1 files changed, 14 insertions, 0 deletions
diff --git a/user/dhcpcd/dhcpcd.initd b/user/dhcpcd/dhcpcd.initd
new file mode 100644
index 000000000..0539b25da
--- /dev/null
+++ b/user/dhcpcd/dhcpcd.initd
@@ -0,0 +1,14 @@
+#!/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
+}