Merge pull request #13100 from ghislainbourgeois/patch-2

Fix get_dns_facts on inexistent resolv.conf
pull/13106/head
Brian Coca 9 years ago
commit 74d76105aa

@ -727,7 +727,7 @@ class Facts(object):
def get_dns_facts(self): def get_dns_facts(self):
self.facts['dns'] = {} self.facts['dns'] = {}
for line in get_file_lines('/etc/resolv.conf'): for line in get_file_content('/etc/resolv.conf', '').splitlines():
if line.startswith('#') or line.startswith(';') or line.strip() == '': if line.startswith('#') or line.startswith(';') or line.strip() == '':
continue continue
tokens = line.split() tokens = line.split()

Loading…
Cancel
Save