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