mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 22:33:25 +00:00
Fixes #4852 properly evaluate log_path writability
This commit is contained in:
@@ -31,7 +31,7 @@ import logging
|
|||||||
if constants.DEFAULT_LOG_PATH != '':
|
if constants.DEFAULT_LOG_PATH != '':
|
||||||
path = constants.DEFAULT_LOG_PATH
|
path = constants.DEFAULT_LOG_PATH
|
||||||
|
|
||||||
if (os.path.exists(path) and not os.access(path, os.W_OK)) or not os.access(os.path.dirname(path), os.W_OK):
|
if (os.path.exists(path) and not os.access(path, os.W_OK)) and not os.access(os.path.dirname(path), os.W_OK):
|
||||||
sys.stderr.write("log file at %s is not writeable, aborting\n" % path)
|
sys.stderr.write("log file at %s is not writeable, aborting\n" % path)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user