mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-01 14:02:12 +08:00
Replaces many references to 'copy' with ansible.builtin.copy Signed-off-by: Ryan Lerch <rlerch@redhat.com>
17 lines
371 B
YAML
17 lines
371 B
YAML
---
|
|
# tasks file for zabbix-server
|
|
# Contains the task for external scripts or alertscripts
|
|
# Can be included on proxies automatically too
|
|
|
|
# Custom zabbix scripts
|
|
- name: Importing zabbix scripts
|
|
ansible.builtin.copy:
|
|
src: "{{ item }}"
|
|
dest: /usr/lib/zabbix/
|
|
mode: "0755"
|
|
with_items:
|
|
- alertscripts
|
|
- externalscripts
|
|
tags:
|
|
- plugin-scripts
|