Files
fedora-infra_ansible/roles/apache/tasks/main.yml
Patrick Uiterwijk 5a5dc9d9b0 Close down apache-status from the public
Signed-off-by: Patrick Uiterwijk <patrick@puiterwijk.org>
2018-01-03 21:55:36 +01:00

95 lines
2.1 KiB
YAML

---
# install apache(httpd)
- name: install apache (yum)
package: name={{ item }} state=present
with_items:
- httpd
- httpd-tools
tags:
- packages
- apache
when: ansible_distribution_major_version|int < 22
# install apache(httpd)
- name: install apache (dnf)
dnf: name={{ item }} state=present
with_items:
- httpd
- httpd-tools
tags:
- packages
- apache
when: ansible_distribution_major_version|int > 21 and ansible_cmdline.ostree is not defined
- name: set apache running/enabled
service: name=httpd enabled=yes
ignore_errors: true
notify:
- reload apache
tags:
- service
- apache
# install hash randomization hotfix
- name: hotfix - copy over new httpd init script
copy: src="{{ files }}/hotfix/httpd/httpd.init" dest=/etc/init.d/httpd
owner=root group=root mode=0755
notify:
- reload apache
tags:
- config
- hotfix
- apache
- name: hotfix - copy over new httpd sysconfig (el6)
copy: src="{{ files }}/hotfix/httpd/httpd.sysconfig" dest=/etc/sysconfig/httpd
when: ansible_distribution_major_version|int == 6
notify:
- reload apache
tags:
- config
- hotfix
- apache
- name: hotfix - copy over new httpd sysconfig (el7)
copy: src="{{ files }}/hotfix/httpd/httpd.sysconfig" dest=/etc/sysconfig/httpd
when: ansible_distribution_major_version|int == 7
notify:
- reload apache
tags:
- config
- hotfix
- apache
- name: add appserver headers.conf
template: src="{{ files }}/httpd/headers.conf.j2" dest=/etc/httpd/conf.d/headers.conf
notify:
- reload apache
tags:
- config
- apache
- name: add appserver h2.conf
template: src="{{ files }}/httpd/h2.conf.j2" dest=/etc/httpd/conf.d/h2.conf
when: ansible_distribution == 'Fedora'
notify:
- reload apache
tags:
- config
- apache
- name: add apache_status location for collectd
template: src="{{ files }}/httpd/apachestatus.conf" dest=/etc/httpd/conf.d/apachestatus.conf
notify:
- reload apache
tags:
- config
- apache
- apachestatus
- name: setup logrotate to our needs
copy: src="{{ files }}/httpd/httpd.logrotate" dest=/etc/logrotate.d/httpd
tags:
- config
- apache