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