summaryrefslogtreecommitdiffstats
path: root/network.py
diff options
context:
space:
mode:
Diffstat (limited to 'network.py')
-rw-r--r--network.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/network.py b/network.py
index 11f6ab96e..933bd82f7 100644
--- a/network.py
+++ b/network.py
@@ -86,7 +86,8 @@ class Network:
netinf = string.splitfields(line, '=')
info [netinf[0]] = string.strip(netinf[1])
self.netdevices [info["DEVICE"]] = NetworkDevice(info["DEVICE"])
- for key in ("IPADDR", "NETMASK", "BOOTPROTO", "ONBOOT"):
+ # XXX is REMIP ever used?
+ for key in ("IPADDR", "NETMASK", "BOOTPROTO", "ONBOOT", "REMIP"):
if info.has_key(key):
self.netdevices [info["DEVICE"]].set((key, info[key]))
if info.has_key("GATEWAY"):