diff --git a/CHANGELOG.md b/CHANGELOG.md index b9152395..5695a6e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,7 @@ The **patch** part changes is incremented if multiple releases happen the same m * nagios: rename var `nagios_nrpe_process_processes` into `nagios_nrpe_processes` and check systemd-timesyncd instead of ntpd in Debian 12 * proftpd: in SFTP vhost, enable SSH keys login, enable ed25549 host key for Debian >= 11 * vrrpd: variable to force update the switch script (default: false) +* dovecot: Munin plugin conf path is now `/etc/munin/plugin-conf.d/zzz-dovecot` (instead of `z-evolinux-dovecot`) ### Fixed diff --git a/dovecot/tasks/munin.yml b/dovecot/tasks/munin.yml index 7227e991..8d0df9db 100644 --- a/dovecot/tasks/munin.yml +++ b/dovecot/tasks/munin.yml @@ -14,11 +14,16 @@ path: /etc/munin/plugins/dovecot state: absent - - name: Remove dovecot plugin conf + - name: Remove old dovecot plugin conf ansible.builtin.file: path: /etc/munin/plugin-conf.d/dovecot state: absent + - name: Remove old dovecot plugin conf + ansible.builtin.file: + path: /etc/munin/plugin-conf.d/z-evolinux-dovecot + state: absent + - name: "Remount /usr if needed" ansible.builtin.include_role: name: remount-usr @@ -47,7 +52,7 @@ - name: Copy Munin config ansible.builtin.copy: src: z-evolinux-dovecot.conf - dest: /etc/munin/plugin-conf.d/z-evolinux-dovecot + dest: /etc/munin/plugin-conf.d/zzz-dovecot mode: '0644' notify: restart munin-node