mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-20 03:57:02 +08:00
Try and make proxies not replace files twice and also fix el7 python hash hotfix.
This commit is contained in:
@@ -1 +1,2 @@
|
||||
export OPENSSL_NO_DEFAULT_ZLIB=1
|
||||
export PYTHONHASHSEED=random
|
||||
@@ -24,17 +24,6 @@
|
||||
- forwarded.conf
|
||||
- 00-namevirtualhost.conf
|
||||
- 01-keepalives.conf
|
||||
- headers.conf
|
||||
notify:
|
||||
- restart httpd
|
||||
tags:
|
||||
- httpd
|
||||
- httpd/proxy
|
||||
|
||||
- name: And, copy in /etc/sysconfig/httpd
|
||||
copy: >
|
||||
src=sysconfig-httpd dest=/etc/sysconfig/httpd
|
||||
owner=root group=root mode=0644
|
||||
notify:
|
||||
- restart httpd
|
||||
tags:
|
||||
|
||||
@@ -29,8 +29,19 @@
|
||||
- hotfix
|
||||
- apache
|
||||
|
||||
- name: hotfix - copy over new httpd sysconfig
|
||||
- name: hotfix - copy over new httpd sysconfig (el6)
|
||||
copy: src="{{ files }}/hotfix/httpd/httpd.sysconfig" dest=/etc/sysconfig/httpd
|
||||
when: ansible_distribution_major_version == '6'
|
||||
notify:
|
||||
- restart 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 == '7'
|
||||
notify:
|
||||
- restart apache
|
||||
tags:
|
||||
|
||||
Reference in New Issue
Block a user