From 0aad4699689d23619e00b97dc59c3cacc51b4c03 Mon Sep 17 00:00:00 2001 From: Karsten Hopp Date: Mon, 18 Apr 2005 09:49:00 +0000 Subject: message from Thomas Zehetbauer on fedora-devel (in URL field). In initscripts-8.08-2, "/etc/init.d/network" will hang in "ifup-routes" during boot. The cause is a missing "$file" in the script, making "egrep" hang waiting for data on STDIN. --- sysconfig/network-scripts/ifup-routes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sysconfig/network-scripts') 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 -- cgit v1.2.1