aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2005-04-18 14:56:41 +0000
committerBill Nottingham <notting@redhat.com>2005-04-18 14:56:41 +0000
commitc589eef816fe26685ae9d5ac8882b6f6bb710e70 (patch)
tree6e79c58c7f6bdd3702c7da5584041330770b9be2
parent8bdbd6e5dcf5a8662f8f07bb342b0125d86a71db (diff)
downloadinitscripts-c589eef816fe26685ae9d5ac8882b6f6bb710e70.tar
initscripts-c589eef816fe26685ae9d5ac8882b6f6bb710e70.tar.gz
initscripts-c589eef816fe26685ae9d5ac8882b6f6bb710e70.tar.bz2
initscripts-c589eef816fe26685ae9d5ac8882b6f6bb710e70.tar.xz
initscripts-c589eef816fe26685ae9d5ac8882b6f6bb710e70.zip
backport fix
-rwxr-xr-xsysconfig/network-scripts/ifup-routes2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysconfig/network-scripts/ifup-routes b/sysconfig/network-scripts/ifup-routes
index f87638b7..61649a12 100755
--- a/sysconfig/network-scripts/ifup-routes
+++ b/sysconfig/network-scripts/ifup-routes
@@ -28,7 +28,7 @@ fi
for file in $FILES; do
if [ -f "$file" ]; then
- if egrep -q '^[[:space:]]*ADDRESS[0-9]+=' ; then
+ if egrep -q '^[[:space:]]*ADDRESS[0-9]+=' $file ; then
# new format
handle_file $file $1
else