diff options
Diffstat (limited to 'main/dhcpcd/dhcpcd.initd')
-rw-r--r-- | main/dhcpcd/dhcpcd.initd | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/main/dhcpcd/dhcpcd.initd b/main/dhcpcd/dhcpcd.initd new file mode 100644 index 0000000000..d88b0610dd --- /dev/null +++ b/main/dhcpcd/dhcpcd.initd @@ -0,0 +1,17 @@ +#!/sbin/runscript +# Copyright 2007-2008 Roy Marples <roy@marples.name> +# All rights reserved. Released under the 2-clause BSD license. + +command=/sbin/dhcpcd +pidfile=/var/run/dhcpcd.pid +command_args=-q +name="DHCP Client Daemon" + +depend() +{ + provide net + need localmount + use logger network + after bootmisc modules + before dns +} |