Files
fedora-infra_ansible/roles/developer/website/tasks/main.yml
Ryan Lerch 6a3816dfdc ansiblelint fixes-- fqcn[action-core] - copy to ansible.builtin.copy
Replaces many references to 'copy' with ansible.builtin.copy

Signed-off-by: Ryan Lerch <rlerch@redhat.com>
2025-01-15 10:43:31 +10:00

17 lines
407 B
YAML

---
- name: Copy in the sync-developer cronjob
ansible.builtin.copy: src=cron-sync-developer dest=/etc/cron.d/sync-developer
tags:
- developer
- name: Copy some config files for {{website}}
ansible.builtin.copy: >
src={{item}} dest=/etc/httpd/conf.d/{{website}}/{{item}}
owner=root group=root mode=0644
with_items:
- developer.conf
notify:
- reload proxyhttpd
tags:
- developer