1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

fixed exception handling to be 2.4 compatible

previous 'fix' broke on 2.4
This commit is contained in:
Brian Coca 2016-01-19 08:31:10 -05:00
parent 1f7492171e
commit a773486432

View file

@ -2981,17 +2981,19 @@ def get_file_content(path, default=None, strip=True):
data = default data = default
if os.path.exists(path) and os.access(path, os.R_OK): if os.path.exists(path) and os.access(path, os.R_OK):
try: try:
datafile = open(path) try:
data = datafile.read() datafile = open(path)
if strip: data = datafile.read()
data = data.strip() if strip:
if len(data) == 0: data = data.strip()
data = default if len(data) == 0:
data = default
finally:
datafile.close()
except: except:
# todo: issue warning about unreadable file? # ignore errors as some jails/containers might have readable permissions but not allow reads to proc
# done in 2 blocks for 2.4 compat
pass pass
finally:
datafile.close()
return data return data
def get_file_lines(path): def get_file_lines(path):