From: Arkadiusz Miśkiewicz Date: Fri, 5 Dec 2003 20:41:49 +0000 (+0000) Subject: Fix interfaces_boot for bridge devices. (found by Radosław Kintzi ) svn-id: @1722 --- diff --git a/rc.d/init.d/network b/rc.d/init.d/network index 64f8f67d..933c967d 100644 --- a/rc.d/init.d/network +++ b/rc.d/init.d/network @@ -121,7 +121,7 @@ set_down_loopback interfaces_boot=$(( . /etc/rc.d/init.d/functions; \ cd /etc/sysconfig/interfaces && ls -1 ifcfg* | \ - egrep -v '(ifcfg-lo|ifcfg-sit|ifcfg-atm|ifcfg-lec|ifcfg-nas|ifcfg-br:)' | \ + egrep -v '(ifcfg-lo|ifcfg-sit|ifcfg-atm|ifcfg-lec|ifcfg-nas|ifcfg-br)' | \ egrep 'ifcfg-[a-z0-9\.]+$' | \ for i in `cat`; do \ ONBOOT=""; . /etc/sysconfig/interfaces/"$i"; is_yes "$ONBOOT" && echo "$i"; \