From 3add080fe67047b51e4af436d2bb60828f7ce05e Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Mon, 11 Apr 2005 20:38:54 +0000 Subject: make sure commented lines are handled correctly (#154353, #114548) --- sysconfig/network-scripts/ifup-routes | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'sysconfig') diff --git a/sysconfig/network-scripts/ifup-routes b/sysconfig/network-scripts/ifup-routes index 1c2343e4..37b6888e 100755 --- a/sysconfig/network-scripts/ifup-routes +++ b/sysconfig/network-scripts/ifup-routes @@ -28,13 +28,15 @@ fi for file in $FILES; do if [ -f "$file" ]; then - if egrep -q 'ADDRESS[0-9]+=' $file ; then + if egrep -q '^[[:space:]]*ADDRESS[0-9]+=' ; then # new format handle_file $file $1 else # older format while read line; do - /sbin/ip route add $line + if [ "$line" == "${line##\#}" ]; then + /sbin/ip route add $line + fi done < "$file" fi fi -- cgit v1.2.1