matrix-docker-ansible-deploy/roles/custom/matrix-base/tasks/util/ensure_fuse_installed_redhat.yml
Slavi Pantaleev c1c152f7ac Include potentially distro-specific tasks at runtime
This avoids Ansible trying to ensure `community.general.pacman` is
available, even if that module will never run (because `when` says so).

Related to https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/2228
2022-11-05 08:31:22 +02:00

7 lines
101 B
YAML

---
- name: Ensure fuse installed (RedHat)
ansible.builtin.yum:
name: fuse
state: present