style: make ansible-lint happier

This commit is contained in:
VC
2024-07-05 11:53:33 +02:00
parent 574982340e
commit 4f57cd79ee
16 changed files with 208 additions and 180 deletions

View File

@@ -1,11 +1,15 @@
---
- name: delete squid plugins
shell: "rm -f /etc/munin/plugins/squid_*"
- name: Delete squid plugins
ansible.builtin.command:
cmd: "rm -f /etc/munin/plugins/squid_*"
changed_when: true
notify:
- restart munin-node
- Restart munin-node
- name: delete lxc interfaces plugins
shell: "rm -f /etc/munin/plugins/if_*veth* /etc/munin/plugins/if_*fw* /etc/munin/plugins/if_*vmbr*"
- name: Delete lxc interfaces plugins
ansible.builtin.command:
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
- Restart munin-node