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.
 
 

13 lines
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'