From cad54f92ed47e7d7227b2472589c99c7ba4d1912 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Tue, 12 Jan 2016 11:59:29 -0500 Subject: [PATCH] Another selinux boolean for pdc frontend. --- roles/pdc/frontend/tasks/main.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/roles/pdc/frontend/tasks/main.yml b/roles/pdc/frontend/tasks/main.yml index 9bdb6a6911..48b8533fb5 100644 --- a/roles/pdc/frontend/tasks/main.yml +++ b/roles/pdc/frontend/tasks/main.yml @@ -38,8 +38,13 @@ notify: reload httpd tags: pdc -- name: ensure selinux lets httpd talk to postgres - seboolean: name=httpd_can_network_connect_db persistent=yes state=yes +- name: ensure selinux lets httpd do the stuff we need. + seboolean: name={{ item }} persistent=yes state=yes + with_items: + - httpd_can_network_connect_db + - httpd_can_sendmail + # XXX - Someday for fedmsg + #- httpd_can_network_connect tags: - pdc - selinux