Files
fedora-infra_ansible/roles/zabbix/zabbix_server/tasks/plugins.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
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