]> git.pld-linux.org Git - packages/anaconda.git/blame - anaconda-network.patch
- skip sit0 - it's not phydev
[packages/anaconda.git] / anaconda-network.patch
CommitLineData
c252c1ac
ER
1--- anaconda-11.0.5/network.py~ 2006-05-24 22:05:53.856227238 +0300
2+++ anaconda-11.0.5/network.py 2006-05-24 22:05:55.836271436 +0300
3@@ -275,6 +275,9 @@
4 lines = lines[2:]
5 for line in lines:
6 dev = string.strip(line[0:6])
7+ # skip sit* devices, they aren't real
8+ if dev.startsWith("sit"):
9+ break
10 if dev != "lo" and not self.netdevices.has_key(dev):
11 if self.firstnetdevice is None:
12 self.firstnetdevice = dev
This page took 0.234955 seconds and 4 git commands to generate.