packages/net/ucarp/files/ucarp.init
swalker 7ccddf3423 [packages] ucarp: update to 1.5.2, add missing libpcap depends, select the ip addr symbols needed by the init script, cleanup the init script
git-svn-id: svn://svn.openwrt.org/openwrt/packages@20017 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-03-06 17:03:32 +00:00

41 lines
724 B
Bash

#!/bin/sh /etc/rc.common
START=50
CONF=/etc/ucarp.conf
start() {
. ${CONF}
[ ${BACKGROUND} = 1 ] && daemon="--daemonize"
cat > /var/run/ucarp-vip-up <<EOF
#!/bin/sh
/bin/ip addr add ${VIP}/${VMASK} dev ${IF}
EOF
for ip in ${PINGIP}
do
cat >> /var/run/ucarp-vip-up <<EOF
/usr/bin/arping -c 2 -I ${IF} -s ${VIP} ${ip}
EOF
done
chmod a+x /var/run/ucarp-vip-up
cat > /var/run/ucarp-vip-down <<EOF
#!/bin/sh
/bin/ip addr del ${VIP}/${VMASK} dev ${IF}
EOF
chmod a+x /var/run/ucarp-vip-down
/usr/sbin/ucarp --interface=${IF} --srcip=${MYIP} --vhid=1 --pass=${PASSWORD} \
--addr=${VIP} --nomcast $daemon \
--upscript=/var/run/ucarp-vip-up --downscript=/var/run/ucarp-vip-down
}
stop() {
killall ucarp
}