monitored/tasks/plugins_custom.yml
Sven Velt 2e76f7b537 Feature: Copy custom plugins
Variables:
- monitored_plugins_custom: list of plugins
- monitored_plugins_custom_path: destination path
2018-10-02 22:44:11 +02:00

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 }}"