19 lines
416 B
YAML
19 lines
416 B
YAML
---
|
|
- name: Create custom plugin directory
|
|
file:
|
|
path: "{{ monitored_plugins_custom_path }}"
|
|
state: directory
|
|
owner: root
|
|
group: "{{ monitored_group }}"
|
|
mode: 0750
|
|
|
|
- name: Copy custom plugins
|
|
copy:
|
|
src: "plugins_custom/{{ item }}"
|
|
dest: "{{ monitored_plugins_custom_path }}"
|
|
owner: root
|
|
group: "{{ monitored_group }}"
|
|
mode: 0750
|
|
loop: "{{ monitored_plugins_custom }}"
|
|
|