diff options
| author | Bill Nottingham <notting@redhat.com> | 2004-09-27 20:50:16 +0000 |
|---|---|---|
| committer | Bill Nottingham <notting@redhat.com> | 2004-09-27 20:50:16 +0000 |
| commit | e6ba0b02e6df576615cfb90b38b2e10e85f01059 (patch) | |
| tree | e68870a7ad5ff0d8849966a97a0d49cbf23ac184 | |
| parent | dfcd9c82775ee7d183d7d3dfec92d68d7a7c6622 (diff) | |
backport range fix
| -rw-r--r-- | initscripts.spec | 1 | ||||
| -rwxr-xr-x | rc.d/init.d/network | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/initscripts.spec b/initscripts.spec index d27f49ab..ef0696eb 100644 --- a/initscripts.spec +++ b/initscripts.spec @@ -255,6 +255,7 @@ rm -rf $RPM_BUILD_ROOT - backport ETHTOOL_OPTS + bonding fixes from Fedora (#128714) - fix get_hwaddr for token ring (#127984) - fix shell quoting for device renaming +- fix overzealous initialization of -range interfaces (#65415) * Mon Aug 30 2004 Jason Vas Dias <jvdias@redhat.com> 7.31.17.EL-1 - Add change_resolv_conf function to network_functions ; get diff --git a/rc.d/init.d/network b/rc.d/init.d/network index e2045812..1830ec4e 100755 --- a/rc.d/init.d/network +++ b/rc.d/init.d/network @@ -51,7 +51,7 @@ cd /etc/sysconfig/network-scripts # find all the interfaces besides loopback. # ignore aliases, alternative configurations, and editor backup files -interfaces=`ls ifcfg* | LANG=C egrep -v '(ifcfg-lo|:|rpmsave|rpmorig|rpmnew)' | \ +interfaces=`ls ifcfg* | LANG=C egrep -v '(ifcfg-lo|:|-range|rpmsave|rpmorig|rpmnew)' | \ LANG=C egrep -v '(~|\.bak)$' | \ LANG=C egrep 'ifcfg-[A-Za-z0-9\._-]+$' | \ sed 's/^ifcfg-//g' | |
