Compare commits

...

No commits in common. "v963" and "v961" have entirely different histories.
v963 ... v961

2 changed files with 19 additions and 59 deletions

View File

@ -1,38 +0,0 @@
description "Setup Routing depending on several config files"
author "Harald Kueller <harald.kueller@compuextreme.de>"
version 1.0
emits none special
start on stopped routing
console output
script
source /etc/init/functions
if [ -f /etc/sysconfig/net/routetable ]; then
sed -e "/^#/d" /etc/sysconfig/net/routetable | \
sed -e "/^ *$/d" >/tmp/routetable
exec 3</tmp/routetable
read <&3 NETWORK DEVICE TABLE
while [ "$NETWORK" ]; do
$DEBUG ip route add $NETWORK dev $DEVICE table $TABLE
status_message "Added routing for net $NETWORK over device $DEVICE to table $TABLE"
read <&3 NETWORK DEVICE TABLE
done
exec 3>&-
rm /tmp/routetable
fi
if [ -f /etc/sysconfig/net/routerule ]; then
sed -e "/^#/d" /etc/sysconfig/net/routerule | \
sed -e "/^ *$/d" >/tmp/routerule
exec 3</tmp/routerule
read <&3 RULTYPE RULOPT RULDEST
while [ "$RULTYPE" ]; do
$DEBUG ip rule add $RULTYPE $RULOPT table $RULDEST
status_message "Adding routing rule $ROUTETYPE $ROUTOPT whith destination $RULDEST"
read <&3 RULTYPE RULOPT RULDEST
done
exec 3>&-
rm /tmp/routerule
fi
end script

View File

@ -12,7 +12,6 @@
#
#
if [ -d /var/install/sysvinit* ]; then
WDIR=`pwd`
cd etc/init.d
for i in *; do
@ -32,4 +31,3 @@ if [ -d /var/install/sysvinit* ]; then
cd ..
done
cd $WDIR
fi