Use cache/venvs for the packages venvs folder

As the cache may be used ofr other things. Let's be
just a little more explicit.
This commit is contained in:
Jesse Pretorius 2018-03-23 14:21:00 +00:00
parent 7a8b10fdf9
commit b77b1aabd3
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ venv_reuse_build_only: no
# deployment host. By default, ensure that the location
# separates venvs per distribution and architecture to
# prevent re-use of venvs between them.
venv_reuse_download_path: "{{ lookup('env', 'HOME') | default('/opt', true) }}/cache/{{ venv_reuse_download_subfolder }}"
venv_reuse_download_path: "{{ lookup('env', 'HOME') | default('/opt', true) }}/cache/venvs/{{ venv_reuse_download_subfolder }}"
# NOTE(hwoarang): ansible_distribution may return a string with spaces
# such as "openSUSE Leap" so we need to replace the space with underscore