From 5780f3a8b4a868379fc0167d8e4d897644165d85 Mon Sep 17 00:00:00 2001 From: Veeti Paananen Date: Tue, 29 Jul 2014 15:20:30 +0300 Subject: [PATCH] Expand variables in configuration files, take two e.g. $HOME. --- lib/ansible/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/constants.py b/lib/ansible/constants.py index 0bd88905a51..4d50f0dbe78 100644 --- a/lib/ansible/constants.py +++ b/lib/ansible/constants.py @@ -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.expanduser(os.path.expandvars(path)) return path p = load_config_file()