16 lines
381 B
YAML
16 lines
381 B
YAML
---
|
|
|
|
- name: Delete squid plugins
|
|
ansible.builtin.shell:
|
|
cmd: "rm -f /etc/munin/plugins/squid_*"
|
|
changed_when: true
|
|
notify:
|
|
- Restart munin-node
|
|
|
|
- name: Delete lxc interfaces plugins
|
|
ansible.builtin.shell:
|
|
cmd: "rm -f /etc/munin/plugins/if_*veth* /etc/munin/plugins/if_*fw* /etc/munin/plugins/if_*vmbr*"
|
|
changed_when: true
|
|
notify:
|
|
- Restart munin-node
|