summaryrefslogtreecommitdiffstats
path: root/etc/rc.d/dhclient
blob: ca3aece9201750e0397084ec44876868c0e6878b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/sh
#
# $NetBSD: dhclient,v 1.8 2002/03/22 04:33:58 thorpej Exp $
# $FreeBSD$
#

# PROVIDE: dhclient
# KEYWORD: nojail nostart
#

. /etc/rc.subr
. /etc/network.subr

name="dhclient"
rcvar=
start_cmd="dhclient_start"
stop_cmd="dhclient_stop"

dhclient_start()
{
	# prevent unnecessicary restarts
	# XXX: should use a pidfile
	if [ -x /usr/bin/pgrep ]; then
		pids=`/usr/bin/pgrep -f "dhclient: $ifn(\$| .*)"`
		if [ -n "$pids" ]; then
			exit 0
		fi
	fi

	if checkyesno background_dhclient; then
		rc_flags="${rc_flags} -b"
	fi

	${dhclient_program} ${rc_flags} $ifn
}

dhclient_stop()
{
	ifconfig $ifn down	# cause dhclient to die
}

ifn="$2"

load_rc_config $name

if ! dhcpif $ifn; then
	return 1
fi

run_rc_command "$1"
OpenPOWER on IntegriCloud