mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-20 03:57:02 +08:00
Replaces many references to 'copy' with ansible.builtin.copy Signed-off-by: Ryan Lerch <rlerch@redhat.com>
17 lines
449 B
YAML
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
|