Files
fedora-infra_ansible/roles/cloudstats/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
449 B
YAML

---
- name: Install the cloud-image-stat script
ansible.builtin.copy: >
src=cloud-image-stat.py dest=/usr/local/bin/cloud-image-stat.py
owner=root group=root mode=0755
tags:
- files
- cloudstats
- name: Install the cloud-image-stats cronjob to collect stats from log01
ansible.builtin.copy: >
src=cloud-image-stat.cron dest=/etc/cron.d/cloud-image-stat.cron
owner=root group=root mode=0644
tags:
- cron
- cloudstats