2016-11-18 22:39:22 +01:00

26 lines
463 B
Bash
Executable File

#!@RCD_SCRIPTS_SHELL@
# PROVIDE: dhcpcd
# REQUIRE: network mountcritlocal
# BEFORE: NETWORKING
$_rc_subr_loaded . /etc/rc.subr
name="dhcpcd"
rcvar=$name
command="@PREFIX@/sbin/${name}"
load_rc_config $name
# Work out what pidfile dhcpcd will use based on flags
if [ -n "$flags" ]; then
myflags=$flags
else
eval myflags=\$${name}_flags
fi
pidfile=$(eval $command -P $myflags 2>/dev/null)
: ${pidfile:=/var/run/$name.pid}
unset myflags
run_rc_command "$1"