ansible-ops-management/tasks/srpmproc.yml

11 lines
211 B
YAML
Raw Normal View History

2022-02-27 03:19:20 +00:00
---
- name: Configure SELinux booleans
ansible.posix.seboolean:
name: "{{ item }}"
persistent: true
state: true
with_items:
- httpd_can_network_connect_db
- httpd_can_network_connect
...