summaryrefslogtreecommitdiff
path: root/net/ifdepd/files/ifdepd.in
blob: 8e5b6a8f42f4d2c826f5572b80d75b0bdc59c52c (plain) (blame)
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
#!/bin/sh

# PROVIDE: ifdepd
# REQUIRE: netif routing
# KEYWORD: shutdown

# Add the following lines to /etc/rc.conf to enable ifdepd:
#
#ifdepd_enable="YES"
#ifdepd_src_ifaces="em0:em1"
#ifdepd_dst_ifaces="carp1"

. /etc/rc.subr

name="ifdepd"
rcvar=ifdepd_enable

command="%%PREFIX%%/bin/ifdepd"

start_cmd="ifdepd_start"

ifdepd_start()
{
	echo 'Starting ifdepd.'
	ifdepd_src_ifaces=`echo $ifdepd_src_ifaces | sed -E 's/[ \t]+/:/g'`
	ifdepd_dst_ifaces=`echo $ifdepd_dst_ifaces | sed -E 's/[ \t]+/:/g'`
	if checkyesno ${rcvar} && [ "x${ifdepd_src_ifaces}" != "x" ] &&
	   [ "x${ifdepd_dst_ifaces}" != "x" ]; then
		$command -d -S ${ifdepd_src_ifaces} -D ${ifdepd_dst_ifaces}
	else
		warn '$ifdepd_ifaces is not set.'
	fi
}

load_rc_config $name

ifdepd_enable=${ifdepd_enable:-"NO"}

run_rc_command "$1"