Matrix Docker Ansible eploy
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
479 B

  1. ---
  2. # This is for both CentOS 7 and 8
  3. - name: Ensure fuse installed (CentOS)
  4. yum:
  5. name:
  6. - fuse
  7. state: latest
  8. when: ansible_distribution == 'CentOS'
  9. # This is for both Debian and Raspbian
  10. - name: Ensure fuse installed (Debian/Raspbian)
  11. apt:
  12. name:
  13. - fuse
  14. state: latest
  15. when: ansible_os_family == 'Debian'
  16. - name: Ensure fuse installed (Archlinux)
  17. pacman:
  18. name:
  19. - fuse3
  20. state: latest
  21. when: ansible_distribution == 'Archlinux'