packages/net/ucarp/files/ucarp.init
jow 2f4d192f2f [packages] ucarp: fix hardcoded paths to binaries (#7345)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@21496 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-05-17 20:05:32 +00:00

44 lines
758 B
Bash

#!/bin/sh /etc/rc.common
START=50
CONF=/etc/ucarp.conf
IP=$(which ip)
UCARP=$(which ucarp)
ARPING=$(which arping)
start() {
. ${CONF}
[ ${BACKGROUND} = 1 ] && daemon="--daemonize"
cat > /var/run/ucarp-vip-up <<EOF
#!/bin/sh
$IP addr add ${VIP}/${VMASK} dev ${IF}
EOF
for ip in ${PINGIP}
do
cat >> /var/run/ucarp-vip-up <<EOF
$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
$IP addr del ${VIP}/${VMASK} dev ${IF}
EOF
chmod a+x /var/run/ucarp-vip-down
$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
}