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

24 行
476 B

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