DCD-224: Add fetching of the installer.

This commit is contained in:
Steve Smith
2019-04-15 13:06:41 +10:00
parent 6e596bef55
commit 94c06ce4d5
3 changed files with 25 additions and 5 deletions

View File

@@ -15,6 +15,12 @@
when: atl_product_version is defined and atl_product_version != "latest"
- name: Use version for product version
slurp:
src: "{{ atl_product_version_cache }}"
register: atl_product_version
command: "cat {{ atl_product_version_cache }}"
register: atl_product_version_file
- name: Fetch product installer
get_url:
url: "{{ atl_product_download_url }}"
dest: "{{ atl_product_download_cache }}"
mode: 0755
force: false