summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2005-04-18 14:56:08 +0000
committerBill Nottingham <notting@redhat.com>2005-04-18 14:56:08 +0000
commitcf2f094c32abb07c9f8eb3c85dedfbb5144b33f7 (patch)
treeeea76060c7f8529276411cbde8805ea9bafb741f
parent6f0ca98374600e63d13c899eac76e105e74fa9ef (diff)
downloadinitscripts-cf2f094c32abb07c9f8eb3c85dedfbb5144b33f7.tar.gz
initscripts-cf2f094c32abb07c9f8eb3c85dedfbb5144b33f7.tar.xz
initscripts-cf2f094c32abb07c9f8eb3c85dedfbb5144b33f7.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 95223357..bf56091d 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