Additional selinux boolean for odcs frontend.

This commit is contained in:
Ralph Bean 2017-09-28 21:11:02 +00:00
parent 2734bbec05
commit c83a6dddf6

View file

@ -1,10 +1,15 @@
--- ---
- name: modify selinux so that httpd can serve data from NFS shares if needed - name: modify selinux so that httpd can serve data from NFS shares if needed
seboolean: seboolean:
name: httpd_use_nfs name: {{item}}
state: yes state: yes
persistent: yes persistent: yes
when: "'enabled' in ansible_selinux.status" when: "'enabled' in ansible_selinux.status"
with_items:
# For requesting UserInfo from ipsilon.
- httpd_execmem
# For accessing /srv/odcs/
- httpd_use_nfs
tags: tags:
- odcs - odcs
- odcs/frontend - odcs/frontend