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.
 
 

17 regels
583 B

  1. # SPDX-FileCopyrightText: 2022 Slavi Pantaleev
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. ---
  5. # This is for both RedHat 7 and 8
  6. - ansible.builtin.include_tasks: "{{ role_path }}/tasks/ensure_fuse_installed_redhat.yml"
  7. when: ansible_facts.os_family == 'RedHat'
  8. # This is for both Debian and Raspbian
  9. - ansible.builtin.include_tasks: "{{ role_path }}/tasks/ensure_fuse_installed_debian.yml"
  10. when: ansible_facts.os_family == 'Debian'
  11. - ansible.builtin.include_tasks: "{{ role_path }}/tasks/ensure_fuse_installed_archlinux.yml"
  12. when: ansible_facts.os_family == 'Archlinux'