diff options
author | Tim Rozet <trozet@redhat.com> | 2016-06-16 14:54:26 -0400 |
---|---|---|
committer | Tim Rozet <trozet@redhat.com> | 2016-06-17 11:21:27 -0400 |
commit | 28cfc2b85207721ad89317d8113e336cc4c3bc07 (patch) | |
tree | d2e06925a739272785eb347882e65215d7ba7894 /lib | |
parent | a5967c102534cfe5a12850a8e34634e997c08b03 (diff) |
Fixes setting dns server for undercloud
JIRA: APEX-177
Change-Id: I6ee95a3c525fb58699fb3af795a66639f217214c
Signed-off-by: Tim Rozet <trozet@redhat.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/python/apex/network_settings.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/python/apex/network_settings.py b/lib/python/apex/network_settings.py index 1ddf4620..9df8a1de 100644 --- a/lib/python/apex/network_settings.py +++ b/lib/python/apex/network_settings.py @@ -223,6 +223,11 @@ class NetworkSettings: bash_str += "enabled_network_list='{}'\n" \ .format(' '.join(self.enabled_network_list)) bash_str += "ip_addr_family={}\n".format(self.get_ip_addr_family()) + dns_list = "" + for dns_server in self.settings_obj['dns_servers']: + dns_list = dns_list + "{} ".format(dns_server) + dns_list = dns_list.strip() + bash_str += "dns_servers=\'{}\'\n".format(dns_list) if path: with open(path, 'w') as file: file.write(bash_str) |