mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-06-28 04:07:50 +02:00
Use ansible.builtin.package
instead of ansible.builtin.yum
`ansible.builtin.yum` is no longer available in newer Ansible versions. We may use `ansible.builtin.dnf` instead, but `ansible.builting.package` seems like a safer bet that should work in both older & newer RHEL-based distros. Ref: https://github.com/ansible/ansible-lint/issues/4251
This commit is contained in:
@ -5,6 +5,6 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
- name: Ensure fuse installed (RedHat)
|
- name: Ensure fuse installed (RedHat)
|
||||||
ansible.builtin.yum:
|
ansible.builtin.package:
|
||||||
name: fuse
|
name: fuse
|
||||||
state: present
|
state: present
|
||||||
|
Reference in New Issue
Block a user