Sophie

Sophie

distrib > Mandriva > 2010.0 > x86_64 > media > main-release > by-pkgid > 1df9f03b3fdb3533663bd13d46c0b3d0 > files > 95

initscripts-8.99-6mdv2010.0.x86_64.rpm

#! /bin/bash
#
# Drops static routes which go through device $1
if [ -z "$1" ]; then
    echo $"usage: ifup-routes <net-device> [<nickname>]"
    exit 1
fi

# The routes are actually dropped just by setting the link down, so nothing
# needs to be done

MATCH='^[[:space:]]*(\#.*)?$'

# Routing rules
FILES="/etc/sysconfig/network-scripts/rule-$1"
if [ -n "$2" -a "$2" != "$1" ]; then
    FILES="$FILES /etc/sysconfig/network-scripts/rule-$2"
fi

for file in $FILES; do
   if [ -f "$file" ]; then
       { cat "$file" ; echo ; } | while read line; do
	   if [[ ! "$line" =~ $MATCH ]]; then
	       /sbin/ip rule del $line
	   fi
       done
   fi
done