From b84a23fab00548939fdc6c3f0775e3abeb7c2e56 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Thu, 23 Oct 2014 15:16:42 +0200 Subject: [PATCH] Install the apache configuration file for anitya https --- roles/anitya/frontend/tasks/main.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/roles/anitya/frontend/tasks/main.yml b/roles/anitya/frontend/tasks/main.yml index f65296f4b6..4f3f5b4e3e 100644 --- a/roles/anitya/frontend/tasks/main.yml +++ b/roles/anitya/frontend/tasks/main.yml @@ -50,6 +50,19 @@ - config - anitya_frontend +- name: Install the configuration file to activate https + copy: > + src={{ item }} dest=/etc/httpd/conf.d/{{ item }} + owner=root group=root mode=0644 + with_items: + - 0_releasemonitoring.conf + tags: + - files + - config + - anitya_frontend + notify: + - restart apache + - name: set sebooleans so anitya can talk to the db action: seboolean name={{ item }} state=true