diff options
author | Bill Nottingham <notting@redhat.com> | 2005-04-18 14:56:41 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2005-04-18 14:56:41 +0000 |
commit | c589eef816fe26685ae9d5ac8882b6f6bb710e70 (patch) | |
tree | 6e79c58c7f6bdd3702c7da5584041330770b9be2 /sysconfig | |
parent | 8bdbd6e5dcf5a8662f8f07bb342b0125d86a71db (diff) | |
download | initscripts-c589eef816fe26685ae9d5ac8882b6f6bb710e70.tar initscripts-c589eef816fe26685ae9d5ac8882b6f6bb710e70.tar.gz initscripts-c589eef816fe26685ae9d5ac8882b6f6bb710e70.tar.bz2 initscripts-c589eef816fe26685ae9d5ac8882b6f6bb710e70.tar.xz initscripts-c589eef816fe26685ae9d5ac8882b6f6bb710e70.zip |
backport fix
Diffstat (limited to 'sysconfig')
-rwxr-xr-x | sysconfig/network-scripts/ifup-routes | 2 |
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 |