diff options
-rwxr-xr-x | rc.d/init.d/network | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/rc.d/init.d/network b/rc.d/init.d/network index 29d8ce77..30025a04 100755 --- a/rc.d/init.d/network +++ b/rc.d/init.d/network @@ -68,9 +68,12 @@ case "$1" in # Add non interface-specific static-routes. if [ -f /etc/sysconfig/static-routes ]; then - grep "^any" /etc/sysconfig/static-routes | while read ignore type dest netmask mask gw gateway; do - [ "${gateway}" != "${gateway##[0-9}" ] && \ - /sbin/route add -$type $dest $netmask $mask $gw $gateway + grep "^any" /etc/sysconfig/static-routes | while read ignore type dest netmask mask bogus args; do + if [ "${bogus}" = "gw" ]; then + /sbin/route add -$type $dest $netmask $mask $args + else + /sbin/route add -$type $dest $netmask $mask $bogus $args + fi done fi |