mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-26 08:26:28 +00:00
Close some file handles explicitly in facts.py
Helps control open file descriptor count with pypy (which is used with one coreos + ansible example). Part of a fix for https://github.com/ansible/ansible/issues/10157
This commit is contained in:
@@ -2502,9 +2502,13 @@ class SunOSVirtual(Virtual):
|
||||
def get_file_content(path, default=None):
|
||||
data = default
|
||||
if os.path.exists(path) and os.access(path, os.R_OK):
|
||||
data = open(path).read().strip()
|
||||
if len(data) == 0:
|
||||
data = default
|
||||
try:
|
||||
datafile = open(path)
|
||||
data = datafile.read().strip()
|
||||
if len(data) == 0:
|
||||
data = default
|
||||
finally:
|
||||
datafile.close()
|
||||
return data
|
||||
|
||||
def ansible_facts(module):
|
||||
|
||||
Reference in New Issue
Block a user