blob: f45227492e5bb3a0e9342840db379f5ee7e07715 (
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
40
41
|
#!/bin/sh
#
# $FreeBSD$
#
# 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=`set_rcvar`
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"
|