diff options
author | ghislainbourgeois <ghislain.bourgeois@bell.ca> | 2015-11-09 21:02:03 +0100 |
---|---|---|
committer | ghislainbourgeois <ghislain.bourgeois@bell.ca> | 2015-11-09 21:02:03 +0100 |
commit | eb850d7e5bd78047da055ea974732c67f02c231c (patch) | |
tree | a168b79a966a6cb0c326f05e182aa4738b0e6458 | |
parent | Merge pull request #13072 from Yannig/devel_cache_optimization (diff) | |
download | ansible-eb850d7e5bd78047da055ea974732c67f02c231c.tar.xz ansible-eb850d7e5bd78047da055ea974732c67f02c231c.zip |
Fix get_dns_facts on inexistent resolv.conf
-rw-r--r-- | lib/ansible/module_utils/facts.py | 2 |
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() |