Files
fedora-infra_ansible/roles/fedora-docs/build/tasks/main.yml
Ryan Lerch 47c68f478d ansiblelint fixes - fqcn[action-core] - template to ansible.builtin.template
Replaces references to template: with ansible.builtin.template

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

30 lines
576 B
YAML

---
- ansible.builtin.template: >
src=docs-sync.j2 dest=/usr/local/bin/docs-sync
owner=root group=root mode=0755
tags:
- fedora-docs
- fedora-docs/build
- ansible.builtin.copy:
src: cron-docs-sync
dest: /etc/cron.d/docs-sync
owner: root
group: root
mode: "0644"
tags:
- fedora-docs
- fedora-docs/build
when: env == "production"
- ansible.builtin.copy:
src: cron-docs-sync.stg
dest: /etc/cron.d/docs-sync
owner: root
group: root
mode: "0644"
tags:
- fedora-docs
- fedora-docs/build
when: env == "staging"