ansible/roles/fedora-web/community/tasks/main.yml
Patrick Uiterwijk 08568865fe Replace all restart httpd with reload httpd
Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
2015-11-04 23:40:01 +00:00

18 lines
451 B
YAML

- name: Copy in the sync-community cronjob
copy: src=cron-sync-community dest=/etc/cron.d/sync-community
tags:
- fedora-web
- fedora-web/community
- name: Copy some config files for {{website}}
copy: >
src={{item}} dest=/etc/httpd/conf.d/{{website}}/{{item}}
owner=root group=root mode=0644
with_items:
- fedoracommunity.org-web.conf
- languages.conf
notify:
- reload httpd
tags:
- fedora-web
- fedora-web/community