Expand variables in configuration files

e.g. $HOME. Fixes #6373.
This commit is contained in:
Veeti Paananen 2014-07-28 17:34:54 +03:00
parent d1d318b028
commit a9eef029b6

View file

@ -79,7 +79,7 @@ def shell_expand_path(path):
''' shell_expand_path is needed as os.path.expanduser does not work
when path is None, which is the default for ANSIBLE_PRIVATE_KEY_FILE '''
if path:
path = os.path.expanduser(path)
path = os.path.expandvars(os.path.expanduser(path))
return path
p = load_config_file()