blob: 66303d6f76842bc649e765169e8510328a36ad0d (
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
|
---
- name: NFS Install Checkpoint Start
hosts: localhost
connection: local
gather_facts: false
tasks:
- name: Set NFS install 'In Progress'
set_stats:
data:
installer_phase_nfs: "In Progress"
aggregate: false
- name: Configure nfs
hosts: oo_nfs_to_config
roles:
- role: os_firewall
- role: openshift_storage_nfs
- name: NFS Install Checkpoint End
hosts: localhost
connection: local
gather_facts: false
tasks:
- name: Set NFS install 'Complete'
set_stats:
data:
installer_phase_nfs: "Complete"
aggregate: false
|