2018-10-02 20:44:11 +00:00
|
|
|
---
|
2019-11-13 20:49:59 +00:00
|
|
|
- name: Create custom plugin directory
|
|
|
|
file:
|
|
|
|
path: "{{ monitored_plugins_custom_path }}"
|
|
|
|
state: directory
|
|
|
|
owner: root
|
|
|
|
group: "{{ monitored_group }}"
|
|
|
|
mode: 0750
|
|
|
|
|
2018-10-02 20:44:11 +00:00
|
|
|
- name: Copy custom plugins
|
|
|
|
copy:
|
|
|
|
src: "plugins_custom/{{ item }}"
|
|
|
|
dest: "{{ monitored_plugins_custom_path }}"
|
|
|
|
owner: root
|
|
|
|
group: "{{ monitored_group }}"
|
|
|
|
mode: 0750
|
2019-11-13 20:49:59 +00:00
|
|
|
loop: "{{ monitored_plugins_custom }}"
|
2018-10-02 20:44:11 +00:00
|
|
|
|