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.

19 line
344B

  1. ---
  2. - setup:
  3. gather_subset: "!all"
  4. - name: debian apt install packages
  5. apt:
  6. pkg:
  7. - lvm2
  8. when: ansible_os_family == "Debian"
  9. - name: logical volumes
  10. lvol:
  11. vg: "{{ item.volume_group }}"
  12. lv: "{{ item.name }}"
  13. size: "{{ item.size }}"
  14. state: "{{ logical_volumes_state }}"
  15. with_items: "{{ logical_volumes }}"