mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
warn when having issues with local facts (#52507)
* warn when having issues with local facts fixes 41609
This commit is contained in:
parent
9d11cd311b
commit
8a0347ac7a
2 changed files with 4 additions and 0 deletions
|
@ -60,6 +60,7 @@ class LocalFactCollector(BaseFactCollector):
|
|||
fact = 'error loading fact - output of running %s was not utf-8' % fn
|
||||
local[fact_base] = fact
|
||||
local_facts['local'] = local
|
||||
module.warn(fact)
|
||||
return local_facts
|
||||
else:
|
||||
out = get_file_content(fn, default='')
|
||||
|
@ -75,6 +76,7 @@ class LocalFactCollector(BaseFactCollector):
|
|||
cp.readfp(StringIO(out))
|
||||
except configparser.Error:
|
||||
fact = "error loading fact - please check content"
|
||||
module.warn(fact)
|
||||
else:
|
||||
fact = {}
|
||||
for sect in cp.sections():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue