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

Merge pull request #3486 from pieska/expandvars

expand vars like $HOME used in config values too
This commit is contained in:
Michael DeHaan 2013-07-11 05:22:18 -07:00
commit 5f36079ffd

View file

@ -70,7 +70,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()