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,24 +12,22 @@
# #
# #
if [ -d /var/install/sysvinit* ]; then WDIR=`pwd`
WDIR=`pwd` cd etc/init.d
cd etc/init.d for i in *; do
for i in *; do if [ -f $i ]; then
if [ -f $i ]; then chmod 755 $i
chmod 755 $i fi
fi done
done mkdir rc{0,1,2,3,4,5,6}.d
mkdir rc{0,1,2,3,4,5,6}.d for i in 0 1 2 6; do
for i in 0 1 2 6; do cd rc$i.d
cd rc$i.d ln -s ../adrouting K73adrouting
ln -s ../adrouting K73adrouting cd ..
cd .. done
done for i in 3 4 5; do
for i in 3 4 5; do cd rc$i.d
cd rc$i.d ln -s ../adrouting S14adrouting
ln -s ../adrouting S14adrouting cd ..
cd .. done
done cd $WDIR
cd $WDIR
fi