2023-10-25 22:26:17 +02:00
|
|
|
---
|
|
|
|
- name: restart munin-node
|
|
|
|
ansible.builtin.service:
|
|
|
|
name: munin-node
|
|
|
|
state: restarted
|
|
|
|
|
|
|
|
- name: munin-node-configure --shell # noqa ignore-errors
|
|
|
|
ansible.builtin.command: munin-node-configure --shell
|
|
|
|
register: output_conf
|
|
|
|
changed_when: "output_conf.rc != 0"
|
|
|
|
ignore_errors: true # ignoriere fehler
|
|
|
|
|
2024-02-15 13:52:00 +01:00
|
|
|
- name: munin-node-configure --shell - 2 # noqa ignore-errors no-changed-when
|
2023-10-25 22:26:17 +02:00
|
|
|
ansible.builtin.command: munin-node-configure --shell --families=contrib,auto | sh -x
|
|
|
|
ignore_errors: true # ignoriere fehler
|