ITOPSENG-101 work around ansible not handling unzip -j

This commit is contained in:
Brett Meehan
2019-10-18 18:11:00 +11:00
parent 0245f9059d
commit 3ae840cf13

View File

@@ -53,5 +53,13 @@
owner: "{{ atl_product_user }}"
group: "{{ atl_product_user }}"
mode: 0750
extra_opts:
- "-j"
# Ansible unarchive task validation does not work with the -j flag so we need to achieve the same result in 2 steps
# extra_opts:
# - "-j"
- name: Copy JSD dependency jars into the installed-plugins dir
copy:
src: "{{ item }}"
dest: "{{ atl_product_version_cache_dir }}/plugins/installed-plugins"
remote_src: true
with_fileglob: "{{ atl_product_version_cache_dir }}/plugins/installed-plugins/dependencies/*.jar"