aboutsummaryrefslogtreecommitdiff
path: root/roles/host/tasks/selinux.yml
blob: c8cfc376df2b30ab5a191694b19f7e789c26652b (plain)
1
2
3
4
5
6
7
8
---
- name: Set seboolean
  ansible.posix.seboolean:
    name: "{{ item.name }}"
    state: "{{ item.state }}"
    persistent: true
  loop: "{{ host_selinux.booleans }}"
  when: host_selinux.booleans is defined