DCD-686: Ensure temp directory is present before downloads.

This commit is contained in:
Steve Smith
2019-10-03 13:24:07 +10:00
parent 89038fb7c0
commit 14e2fdf25b

View File

@@ -2,6 +2,15 @@
- block:
- name: Ensure temp directory is present
file:
path: "{{ atl_installer_temp }}"
state: directory
mode: 0750
owner: "{{ atl_product_user }}"
group: "{{ atl_product_user }}"
changed_when: false # For Molecule idempotence check
- name: Parse the manifest URL
set_fact:
atl_backup_manifest_url: "{{ atl_backup_manifest_url | urlsplit }}"