summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorghislainbourgeois <ghislain.bourgeois@bell.ca>2015-11-09 15:02:03 -0500
committerghislainbourgeois <ghislain.bourgeois@bell.ca>2015-11-09 15:02:03 -0500
commiteb850d7e5bd78047da055ea974732c67f02c231c (patch)
treea168b79a966a6cb0c326f05e182aa4738b0e6458
parente36b4e2a1355b0afcb163da61acb0da302594c99 (diff)
downloadansible-eb850d7e5bd78047da055ea974732c67f02c231c.tar.gz
Fix get_dns_facts on inexistent resolv.conf
-rw-r--r--lib/ansible/module_utils/facts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/module_utils/facts.py b/lib/ansible/module_utils/facts.py
index bc611b41d0..d7105b5a87 100644
--- a/lib/ansible/module_utils/facts.py
+++ b/lib/ansible/module_utils/facts.py
@@ -727,7 +727,7 @@ class Facts(object):
def get_dns_facts(self):
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() == '':
continue
tokens = line.split()