1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_dotfiles.git synced 2024-08-16 16:09:49 +02:00
ansible_role_dotfiles/tasks/basic-selinux.yml
2023-10-31 00:35:12 +01:00

8 lines
204 B
YAML

---
- name: Install the latest libselinux-python package
become: true
ansible.builtin.dnf:
name: libselinux-python
state: present
when: ansible_distribution == "Fedora"
failed_when: false