Merge pull request #13149 from unprofession-al/backport_fix_jsonfile_fact_caching_connection
Backport of the jsonfile cache fix for filepath substitution
This commit is contained in:
commit
ce77d2fa76
1 changed files with 1 additions and 1 deletions
2
lib/ansible/cache/jsonfile.py
vendored
2
lib/ansible/cache/jsonfile.py
vendored
|
@ -37,7 +37,7 @@ class CacheModule(BaseCacheModule):
|
||||||
|
|
||||||
self._timeout = float(C.CACHE_PLUGIN_TIMEOUT)
|
self._timeout = float(C.CACHE_PLUGIN_TIMEOUT)
|
||||||
self._cache = {}
|
self._cache = {}
|
||||||
self._cache_dir = C.CACHE_PLUGIN_CONNECTION # expects a dir path
|
self._cache_dir = os.path.expandvars(os.path.expanduser(C.CACHE_PLUGIN_CONNECTION)) # expects a dir path
|
||||||
if not self._cache_dir:
|
if not self._cache_dir:
|
||||||
utils.exit("error, fact_caching_connection is not set, cannot use fact cache")
|
utils.exit("error, fact_caching_connection is not set, cannot use fact cache")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue