2024-12-07 17:40:11 +00:00
|
|
|
# SPDX-FileCopyrightText: 2022 MDAD Team and contributors
|
2024-12-07 16:34:44 +00:00
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
|
2022-11-05 07:15:35 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
# This is for both RedHat 7 and 8
|
|
|
|
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/ensure_fuse_installed_redhat.yml"
|
|
|
|
when: ansible_os_family == 'RedHat'
|
|
|
|
|
|
|
|
# This is for both Debian and Raspbian
|
|
|
|
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/ensure_fuse_installed_debian.yml"
|
|
|
|
when: ansible_os_family == 'Debian'
|
|
|
|
|
|
|
|
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/ensure_fuse_installed_archlinux.yml"
|
|
|
|
when: ansible_os_family == 'Archlinux'
|