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

13 行
470 B

  1. ---
  2. # This is for both RedHat 7 and 8
  3. - ansible.builtin.include_tasks: "{{ role_path }}/tasks/ensure_fuse_installed_redhat.yml"
  4. when: ansible_os_family == 'RedHat'
  5. # This is for both Debian and Raspbian
  6. - ansible.builtin.include_tasks: "{{ role_path }}/tasks/ensure_fuse_installed_debian.yml"
  7. when: ansible_os_family == 'Debian'
  8. - ansible.builtin.include_tasks: "{{ role_path }}/tasks/ensure_fuse_installed_archlinux.yml"
  9. when: ansible_os_family == 'Archlinux'