From ae11d0994300a91b342fc037b1ac93ab963c43ee Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Thu, 28 Sep 2017 21:25:50 +0000 Subject: [PATCH] Install the httpd package. --- roles/odcs/backend/tasks/main.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/roles/odcs/backend/tasks/main.yml b/roles/odcs/backend/tasks/main.yml index 7505985ae9..977ac53baf 100644 --- a/roles/odcs/backend/tasks/main.yml +++ b/roles/odcs/backend/tasks/main.yml @@ -1,4 +1,20 @@ --- +- name: Install the httpd package, just to get the apache group on the system. + pkg: + name: httpd + state: present + tags: + - packages + - odcs + - odcs/backend +- name: Make sure httpd isn't running. + service: + name: httpd + state: stopped + enabled: false + tags: + - odcs + - odcs/backend - name: generate the ODCS koji config template: src: etc/koji.conf.d/odcs.conf.j2