summaryrefslogtreecommitdiffstats
path: root/roles/ands_facts/tasks/main.yml
blob: 52cc5bcd3e5cb90babad13d2207f43642e97252c (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
- include_vars: dir="vars"

- include: detect_data_path.yml
  when: not ands_data_path is defined

- name: Detect Heketi
  set_fact: ands_storage_domains="{{ ands_storage_domains | union([ands_heketi_domain]) }}"
  when: ansible_lvm.lvs[ands_heketi_lv] is defined

- name: Set some facts
  set_fact:
    ands_storage_servers: "{{ ands_storage_servers }}"

- 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 != ""

#- command: yum-complete-transaction --cleanup-only