ansible-ops-management/tasks/srpmproc.yml
nazunalika 699ec2e2f0
init
2022-02-26 20:19:20 -07:00

11 lines
211 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
...