mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-02 19:32:47 +00:00
Catch permissions errors related to opening a known_hosts file in modules
Fixes #6644
This commit is contained in:
@@ -87,9 +87,16 @@ def not_in_host_file(self, host):
|
||||
if not os.path.exists(hf):
|
||||
hfiles_not_found += 1
|
||||
continue
|
||||
host_fh = open(hf)
|
||||
data = host_fh.read()
|
||||
host_fh.close()
|
||||
|
||||
try:
|
||||
host_fh = open(hf)
|
||||
except IOError, e:
|
||||
hfiles_not_found += 1
|
||||
continue
|
||||
else:
|
||||
data = host_fh.read()
|
||||
host_fh.close()
|
||||
|
||||
for line in data.split("\n"):
|
||||
if line is None or line.find(" ") == -1:
|
||||
continue
|
||||
|
||||
Reference in New Issue
Block a user