Install mod_auth_gssapi

Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
This commit is contained in:
Patrick Uiterwijk 2016-11-24 19:55:47 +00:00
parent c8f5fa271c
commit 3dced471d8

View file

@ -1,6 +1,9 @@
--- ---
- name: install epylog package - name: install epylog packages
yum: state=present name=epylog yum: state=present name={{item}}
with_items:
- epylog
- mod_auth_gssapi
tags: tags:
- packages - packages
- epylog - epylog
@ -11,6 +14,8 @@
- /var/lib/epylog/merged - /var/lib/epylog/merged
- /srv/web/epylog - /srv/web/epylog
- /srv/web/epylog/merged - /srv/web/epylog/merged
tags:
- epylog
- name: setup extra epylog modules - name: setup extra epylog modules
copy: src={{ item }} dest=/usr/share/epylog/{{ item }} copy: src={{ item }} dest=/usr/share/epylog/{{ item }}
@ -21,6 +26,8 @@
- modules/common_unparsed_mod.py - modules/common_unparsed_mod.py
- modules/logins_mod.py - modules/logins_mod.py
- modules/kojiload_mod.py - modules/kojiload_mod.py
tags:
- epylog
- name: epylog cron - name: epylog cron
copy: src=epylog-default.cron dest=/etc/{{ item }}/epylog.cron copy: src=epylog-default.cron dest=/etc/{{ item }}/epylog.cron
@ -30,17 +37,20 @@
tags: tags:
- config - config
- cron - cron
- epylog
- name: copy in all the epylog merged files - name: copy in all the epylog merged files
copy: src=merged dest=/etc/epylog/ copy: src=merged dest=/etc/epylog/
tags: tags:
- config - config
- epylog
- name: epylog merged cron - name: epylog merged cron
copy: src=epylog-merged.cron dest=/etc/cron.d/epylog-merged.cron copy: src=epylog-merged.cron dest=/etc/cron.d/epylog-merged.cron
tags: tags:
- config - config
- cron - cron
- epylog
- name: epylog httpd config - name: epylog httpd config
copy: src=epylog-web.conf dest=/etc/httpd/conf.d/epylog-web.conf copy: src=epylog-web.conf dest=/etc/httpd/conf.d/epylog-web.conf
@ -49,3 +59,4 @@
tags: tags:
- config - config
- apache - apache
- epylog