diff options
author | Matt Wilson <msw@redhat.com> | 2003-01-08 19:26:10 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2003-01-08 19:26:10 +0000 |
commit | e3c25894cde61c52e6ed2ada1c70ccf810e4d8ae (patch) | |
tree | ab13f5b90d5a6e1f2718f23cb0afd2ee1d8e4100 /network.py | |
parent | f5b2064483ae525bfb148fa0b59cadf2df0933e9 (diff) | |
download | anaconda-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.py | 3 |
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"): |