
Variables: - monitored_plugins_custom: list of plugins - monitored_plugins_custom_path: destination path
12 lines
240 B
YAML
12 lines
240 B
YAML
---
|
|
- name: Copy custom plugins
|
|
copy:
|
|
src: "plugins_custom/{{ item }}"
|
|
dest: "{{ monitored_plugins_custom_path }}"
|
|
owner: root
|
|
group: "{{ monitored_group }}"
|
|
mode: 0750
|
|
with_items: "{{ monitored_plugins_custom }}"
|
|
|
|
|