From af115ef1e8359bae10a5d65da9e5dd7a18913201 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Mon, 5 Jan 2015 21:50:59 +0000 Subject: [PATCH] Changing selinux bool names. whee! --- roles/koji_hub/tasks/main.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/roles/koji_hub/tasks/main.yml b/roles/koji_hub/tasks/main.yml index fef258ab66..9ada337361 100644 --- a/roles/koji_hub/tasks/main.yml +++ b/roles/koji_hub/tasks/main.yml @@ -183,6 +183,14 @@ tags: - selinux - koji_hub + when: ansible_distribution == "RedHat" and ansible_distribution_major_version == "6" + +- name: set sebooleans so koji can anon write + seboolean: name=httpd_anon_write state=true persistent=true + tags: + - selinux + - koji_hub + when: ansible_distribution == "RedHat" and ansible_distribution_major_version == "7" - name: Set httpd to run on boot service: name=httpd enabled=yes