diff options
| author | spmfox <spmfox@foxwd.com> | 2025-08-25 13:07:11 -0400 |
|---|---|---|
| committer | spmfox <spmfox@foxwd.com> | 2025-08-25 13:07:11 -0400 |
| commit | 516f9c5e879314ac1d4921c1fc59e3d110ab1cab (patch) | |
| tree | a0628718012f31ec11c1ff53493f887b201c71a4 /roles/host/tasks/selinux.yml | |
| parent | e53c324dae5957a99f6ecbb0ad88246c204da42f (diff) | |
adding selinux booleans
Diffstat (limited to 'roles/host/tasks/selinux.yml')
| -rw-r--r-- | roles/host/tasks/selinux.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/roles/host/tasks/selinux.yml b/roles/host/tasks/selinux.yml new file mode 100644 index 0000000..c8cfc37 --- /dev/null +++ b/roles/host/tasks/selinux.yml @@ -0,0 +1,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 |
