blob: 825486b6f19b3b7e4669b49360c8752448a19343 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
---
- name: Upload resources to infrastructure servers over nfs
block:
- name: Mount resources
mount:
path: /tmp/resource_data
src: "{{ hostvars[groups.resources.0].ansible_host }}:{{ hostvars[groups.resources.0].resources_dir }}"
fstype: nfs
state: mounted
- name: Unarchive resources
unarchive:
src: "/tmp/resource_data/{{ hostvars[groups.resources.0].resources_filename }}"
remote_src: yes
dest: "{{ app_data_path }}"
when: not resources_data_check.stat.exists
- name: Unarchive auxiliary resources
unarchive:
src: "/tmp/resource_data/{{ hostvars[groups.resources.0].aux_resources_filename }}"
remote_src: yes
dest: "{{ aux_data_path }}"
when: >
hostvars[groups.resources.0].aux_resources_filename is defined
and aux_data_path is defined and aux_data_path is not none
and hostvars[groups.resources.0].aux_file_presence.stat.exists
and not aux_resources_data_check.stat.exists
rescue:
- name: Removing the resources data due to an error - so the next run can try again
command: /bin/false
register: upload_failed
always:
- name: unmount resource dir
mount:
path: /tmp/resource_data
src: "{{ hostvars[groups.resources.0].ansible_host }}:{{hostvars[groups.resources.0].resources_dir }}"
fstype: nfs
state: absent
- name: Remove the resource data on error
file:
path: "{{ app_data_path }}"
state: absent
when: upload_failed is defined
- name: Remove the auxilliary resource data on error
file:
path: "{{ aux_data_path }}"
state: absent
when: upload_failed is defined
|