Matrix Docker Ansible eploy
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

24 行
476 B

  1. ---
  2. # This is for both RedHat 7 and 8
  3. - name: Ensure fuse installed (RedHat)
  4. yum:
  5. name:
  6. - fuse
  7. state: latest
  8. when: ansible_os_family == 'RedHat'
  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'