From 51a7a361abb08a23ab47e73dbb60ac795b45a669 Mon Sep 17 00:00:00 2001 From: Pavel Raiskup Date: Apr 17 2020 05:44:56 +0000 Subject: copr-fe: setsebool httpd_execmem=no again We are on F31 nowadays. --- diff --git a/roles/copr/frontend-cloud/tasks/main.yml b/roles/copr/frontend-cloud/tasks/main.yml index e75a45c..4286925 100644 --- a/roles/copr/frontend-cloud/tasks/main.yml +++ b/roles/copr/frontend-cloud/tasks/main.yml @@ -83,11 +83,13 @@ tags: - config -# https://bugzilla.redhat.com/show_bug.cgi?id=1535689 -- name: Allow execmem for Apache +# This was state=yes for https://bugzilla.redhat.com/show_bug.cgi?id=1535689 for +# some time, and since requests were fixed we want it the other way around +# again. +- name: Dis-alllow execmem for Apache seboolean: name: httpd_execmem - state: yes + state: no persistent: yes - import_tasks: "psql_setup.yml"