選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

main.yml 364B

8年前
8年前
8年前
1234567891011121314151617181920
  1. ---
  2. - setup:
  3. gather_subset: "!all"
  4. - name: debian apt install packages
  5. apt:
  6. pkg: "{{ item }}"
  7. state: installed
  8. with_items:
  9. - lvm2
  10. when: ansible_os_family == "Debian"
  11. - name: volume groups
  12. lvg:
  13. vg: "{{ item.name }}"
  14. pvs: "{{ item.devices | join(',') }}"
  15. state: "{{ volume_groups_state }}"
  16. with_items: "{{ volume_groups }}"