Commit fba1f7ef by Michael DeHaan

Revert "expand vars like $HOME used in config values too" -- breaks remote_tmp if set.

This reverts commit e5ff35bb.
parent 49717366
...@@ -70,7 +70,7 @@ def shell_expand_path(path): ...@@ -70,7 +70,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.expandvars(os.path.expanduser(path)) path = os.path.expanduser(path)
return path return path
p = load_config_file() p = load_config_file()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment