]> git.pld-linux.org Git - packages/anaconda.git/blob - anaconda-network.patch
- update todo
[packages/anaconda.git] / anaconda-network.patch
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.038144 seconds and 3 git commands to generate.