mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-26 03:23:08 +08:00
19 lines
422 B
YAML
19 lines
422 B
YAML
- name: Copy in the sync-start cronjob
|
|
copy: src=cron-sync-start dest=/etc/cron.d/sync-start
|
|
tags:
|
|
- fedora-web
|
|
- fedora-web/start
|
|
|
|
- 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:
|
|
- start-web.conf
|
|
- languages.conf
|
|
notify:
|
|
- reload proxyhttpd
|
|
tags:
|
|
- fedora-web
|
|
- fedora-web/start
|