blob: cd57460ff14ff5c84d048ee9a8eca32d09fa8972 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/bash
TEXTDOMAIN=initscripts
# adds static routes which go through device $1
. /etc/rc.d/init.d/functions
if [ "$1" = "" ]; then
echo $"usage: ifup-routes <net-device>"
exit 1
fi
if [ ! -f /etc/sysconfig/static-routes ]; then
exit 0
fi
DEVICE=$1
#note the trailing space in the grep gets rid of aliases
grep "^$DEVICE " /etc/sysconfig/static-routes | while read device args; do
/sbin/route add -$args $device
done
grep "^any " /etc/sysconfig/static-routes | while read ignore args ; do
/sbin/route add -$args
done
|