aboutsummaryrefslogtreecommitdiffstats
path: root/os_net_config/impl_ifcfg.py
diff options
context:
space:
mode:
Diffstat (limited to 'os_net_config/impl_ifcfg.py')
-rw-r--r--os_net_config/impl_ifcfg.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/os_net_config/impl_ifcfg.py b/os_net_config/impl_ifcfg.py
index 3a82597..4f9e0c3 100644
--- a/os_net_config/impl_ifcfg.py
+++ b/os_net_config/impl_ifcfg.py
@@ -398,10 +398,10 @@ class IfcfgNetConfig(os_net_config.NetConfig):
data += "DHCLIENTARGS=%s\n" % base_opt.dhclient_args
if base_opt.dns_servers:
data += "DNS1=%s\n" % base_opt.dns_servers[0]
- if len(base_opt.dns_servers) == 2:
+ if len(base_opt.dns_servers) >= 2:
data += "DNS2=%s\n" % base_opt.dns_servers[1]
- elif len(base_opt.dns_servers) > 2:
- logger.warning('ifcfg format supports a max of 2 dns servers.')
+ if len(base_opt.dns_servers) > 2:
+ logger.warning('ifcfg format supports max 2 resolvers.')
return data
def _add_routes(self, interface_name, routes=[]):