ports/net/ifdepd/files/ifdepd.in
Nicola Vitale 7b792d6e03 - Fix a syntax error in the ifdepd startup script
- Bump PORTREVISION
- Remove the MD5 checksum from distinfo

PR:		ports/152397
Submitted by:	Alexander Hausner <alex@hugo.bmg.gv.at> (maintainer)
2010-11-21 22:55:13 +00:00

41 lines
819 B
Bash

#!/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"