blob: b902a812cd15e68a9da013abe50cb66bd576ed75 (
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
53
54
55
56
57
58
59
60
61
|
- include_vars: dir="vars"
- name: Set facts
set_fact:
ands_configure_heketi: "{{ ands_configure_heketi }}"
- name: Detect Heketi
set_fact:
ands_storage_domains: "{{ ands_storage_domains | union([ands_heketi_domain]) }}"
ands_block_volumes: "{{ ands_block_volumes }}"
when:
- ands_configure_heketi
- ands_heketi_domain is defined
- ansible_lvm.lvs[ands_heketi_lv] is defined
- name: Set some facts
set_fact:
ands_data_vg: "{{ ands_data_vg }}"
when: ands_data_vg != ""
- name: Set some facts
set_fact:
ands_data_lv: "{{ ands_data_lv }}"
when: ands_data_lv != ""
- name: Set some facts
set_fact:
ands_heketi_vg: "{{ ands_heketi_vg }}"
when: ands_heketi_vg != ""
- name: Set some facts
set_fact:
ands_heketi_lv: "{{ ands_heketi_lv }}"
when: ands_heketi_lv != ""
- name: Set some facts
set_fact:
ands_data_dev: "/dev/mapper/{{ands_data_vg}}-{{ands_data_lv}}"
when:
- ands_data_vg != ""
- ands_data_lv != ""
- name: set some facts
set_fact:
ands_heketi_dev: "/dev/mapper/{{ands_heketi_vg}}-{{ands_heketi_lv}}"
when:
- ands_heketi_vg != ""
- ands_heketi_lv != ""
- name: set some facts
set_fact:
glusterfs_devices: [ "{{ ands_heketi_dev }}" ]
when:
- ands_heketi_vg != ""
- ands_heketi_lv != ""
- include_tasks: detect_data_path.yml
when: not ands_data_path is defined
#- command: yum-complete-transaction --cleanup-only
|