mirror of
https://github.com/rocky-linux/infrastructure
synced 2024-11-29 08:26:28 +00:00
10 lines
207 B
YAML
10 lines
207 B
YAML
|
---
|
||
|
- name: Configure SELinux booleans
|
||
|
ansible.posix.seboolean:
|
||
|
name: "{{ item }}"
|
||
|
persistent: true
|
||
|
state: true
|
||
|
with_items:
|
||
|
- httpd_can_network_connect_db
|
||
|
- httpd_can_network_connect
|