summaryrefslogtreecommitdiffstats
path: root/network.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2003-01-08 19:26:10 +0000
committerMatt Wilson <msw@redhat.com>2003-01-08 19:26:10 +0000
commite3c25894cde61c52e6ed2ada1c70ccf810e4d8ae (patch)
treeab13f5b90d5a6e1f2718f23cb0afd2ee1d8e4100 /network.py
parentf5b2064483ae525bfb148fa0b59cadf2df0933e9 (diff)
downloadanaconda-e3c25894cde61c52e6ed2ada1c70ccf810e4d8ae.tar.gz
anaconda-e3c25894cde61c52e6ed2ada1c70ccf810e4d8ae.tar.xz
anaconda-e3c25894cde61c52e6ed2ada1c70ccf810e4d8ae.zip
REMIP is dying, merge this part from s390 branch
Diffstat (limited to 'network.py')
-rw-r--r--network.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/network.py b/network.py
index f6e03c992..fe08966a4 100644
--- a/network.py
+++ b/network.py
@@ -113,8 +113,7 @@ class Network:
netinf = string.splitfields(line, '=')
info [netinf[0]] = string.strip(netinf[1])
self.netdevices [info["DEVICE"]] = NetworkDevice(info["DEVICE"])
- # XXX is REMIP ever used?
- for key in ("IPADDR", "NETMASK", "BOOTPROTO", "ONBOOT", "REMIP"):
+ for key in ("IPADDR", "NETMASK", "BOOTPROTO", "ONBOOT", "MTU"):
if info.has_key(key):
self.netdevices [info["DEVICE"]].set((key, info[key]))
if info.has_key("GATEWAY"):