You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
-
- - setup:
- gather_subset: "!all"
-
- - name: debian apt install packages
- apt:
- pkg: "{{ item }}"
- state: installed
- with_items:
- - lvm2
- when: ansible_os_family == "Debian"
-
- - name: volume groups
- lvg:
- vg: "{{ item.name }}"
- pvs: "{{ item.devices | join(',') }}"
- state: "{{ volume_groups_state }}"
- with_items: "{{ volume_groups }}"
|