29 lines
1 KiB
YAML
29 lines
1 KiB
YAML
- name: Fedorahosted. No more on our servers, but still in our hearts...
|
|
hosts: proxies_stg:proxies
|
|
user: root
|
|
gather_facts: True
|
|
|
|
vars_files:
|
|
- /srv/web/infra/ansible/vars/global.yml
|
|
- "/srv/private/ansible/vars.yml"
|
|
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
|
|
|
|
handlers:
|
|
- import_tasks: "{{ handlers_path }}/restart_services.yml"
|
|
|
|
tasks:
|
|
- name: Ensure directories exists
|
|
file:
|
|
path: "{{ item }}"
|
|
state: directory
|
|
mode: '0755'
|
|
loop:
|
|
- '/etc/httpd/conf.d/fedorahosted.org'
|
|
- '/etc/httpd/conf.d/git.fedorahosted.org'
|
|
|
|
- name: install special fedorahosted-redirects.conf with fedorahosted redirects
|
|
copy: src={{ files }}/httpd/fedorahosted-redirects.conf dest=/etc/httpd/conf.d/fedorahosted.org/fedorahosted-redirects.conf
|
|
|
|
- name: install special git.fedorahosted-redirects.conf with git.fedorahosted redirects
|
|
copy: src={{ files }}/httpd/git.fedorahosted-redirects.conf dest=/etc/httpd/conf.d/git.fedorahosted.org/fedorahosted-redirects.conf
|
|
|