From b0fe47d3631c329398e16c5cecaed87b7ed1e16b Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Tue, 6 Apr 2010 13:28:50 -0400 Subject: Only blacklist the original loopback interface. (#579816, ) --- rc.d/init.d/network | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rc.d/init.d/network b/rc.d/init.d/network index 71e67ee0..cc218541 100755 --- a/rc.d/init.d/network +++ b/rc.d/init.d/network @@ -1,3 +1,4 @@ + #! /bin/bash # # network Bring up/down networking @@ -48,7 +49,7 @@ cd /etc/sysconfig/network-scripts # ignore aliases, alternative configurations, and editor backup files interfaces=$(ls ifcfg* | \ LANG=C sed -e "$__sed_discard_ignored_files" \ - -e '/\(ifcfg-lo\|:\|ifcfg-.*-range\)/d' \ + -e '/\(ifcfg-lo$\|:\|ifcfg-.*-range\)/d' \ -e '/ifcfg-[A-Za-z0-9\._-]\+$/ { s/^ifcfg-//g;s/[0-9]/ &/}' | \ LANG=C sort -k 1,1 -k 2n | \ LANG=C sed 's/ //') -- cgit v1.2.1