From 7ce6dcefaa4545dcf468ab3178a9a66ab839e733 Mon Sep 17 00:00:00 2001 From: Daniel Hokka Zakrisson Date: Wed, 8 Dec 2010 10:27:24 -0500 Subject: [PATCH] Use correct gateway address for secondary interfaces. --- PLC/Interfaces.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/PLC/Interfaces.py b/PLC/Interfaces.py index bd933cd..7e72f74 100644 --- a/PLC/Interfaces.py +++ b/PLC/Interfaces.py @@ -186,10 +186,11 @@ class Interface(Row): # DHCP! elif method == "static": - if 'is_primary' in self and self['is_primary'] is True: - for key in ['gateway', 'dns1']: - if key not in self or not self[key]: + for key in ['gateway', 'dns1']: + if key not in self or not self[key]: + if 'is_primary' in self and self['is_primary'] is True: raise PLCInvalidArgument, "For static method primary network, %s is required" % key + else: globals()[key] = self[key] for key in ['ip', 'network', 'broadcast', 'netmask']: if key not in self or not self[key]: -- 2.43.0