Expand variables in configuration files, take two
e.g. $HOME.
This commit is contained in:
parent
e6bd049892
commit
5780f3a8b4
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ def shell_expand_path(path):
|
||||||
''' shell_expand_path is needed as os.path.expanduser does not work
|
''' 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 '''
|
when path is None, which is the default for ANSIBLE_PRIVATE_KEY_FILE '''
|
||||||
if path:
|
if path:
|
||||||
path = os.path.expanduser(path)
|
path = os.path.expanduser(os.path.expandvars(path))
|
||||||
return path
|
return path
|
||||||
|
|
||||||
p = load_config_file()
|
p = load_config_file()
|
||||||
|
|
Loading…
Reference in a new issue