Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

#!/bin/sh

# $NetBSD: dhcpcd,v 1.11 2020/09/08 12:52:18 martin Exp $

# PROVIDE: dhcpcd
# REQUIRE: network CRITLOCALMOUNTED
# BEFORE:  NETWORKING

$_rc_subr_loaded . /etc/rc.subr

name=dhcpcd
rcvar=$name
command=/sbin/$name
extra_commands="reload"

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"