This is an automated email from the ASF dual-hosted git repository.
machristie pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata.git
The following commit(s) were added to refs/heads/develop by this push:
new 113221f Temporarily set SELinux mode to permissing
113221f is described below
commit 113221fd3616c9390be6c987b23066db71db20f6
Author: Marcus Christie <[email protected]>
AuthorDate: Mon Apr 1 17:14:27 2019 -0400
Temporarily set SELinux mode to permissing
---
dev-tools/ansible/roles/httpd/tasks/main.yml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dev-tools/ansible/roles/httpd/tasks/main.yml
b/dev-tools/ansible/roles/httpd/tasks/main.yml
index 469c105..e8f2ec7 100644
--- a/dev-tools/ansible/roles/httpd/tasks/main.yml
+++ b/dev-tools/ansible/roles/httpd/tasks/main.yml
@@ -1,7 +1,8 @@
# SELinux configuration
- name: set selinux to enforcing
- selinux: state=enforcing policy=targeted
+# TODO: switch back to enforcing
+ selinux: state=permissive policy=targeted
become: yes
when: ansible_os_family == "RedHat"