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.

24 lines
504 B

  1. ---
  2. - name: "Load lvm kernel modules"
  3. become: true
  4. with_items:
  5. - "dm_snapshot"
  6. - "dm_mirror"
  7. - "dm_thin_pool"
  8. modprobe:
  9. name: "{{ item }}"
  10. state: "present"
  11. - name: "Install glusterfs mount utils (RedHat)"
  12. become: true
  13. yum:
  14. name: "glusterfs-fuse"
  15. state: "present"
  16. when: "ansible_os_family == 'RedHat'"
  17. - name: "Install glusterfs mount utils (Debian)"
  18. become: true
  19. apt:
  20. name: "glusterfs-client"
  21. state: "present"
  22. when: "ansible_os_family == 'Debian'"