base / postfix: fix handlers for postfix maps to use lmdb

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi 2026-05-08 10:22:29 -07:00
commit 511f16d9d6

View file

@ -80,13 +80,13 @@
action: service name=network state=restarted
- name: Rebuild postfix transport
ansible.builtin.command: /usr/sbin/postmap /etc/postfix/transport
ansible.builtin.command: /usr/sbin/postmap lmdb:/etc/postfix/transport
- name: Rebuild postfix bysender
ansible.builtin.command: /usr/sbin/postmap /etc/postfix/bysender
ansible.builtin.command: /usr/sbin/postmap lmdb:/etc/postfix/bysender
- name: Rebuild postfix tls_policy
ansible.builtin.command: /usr/sbin/postmap /etc/postfix/tls_policy
ansible.builtin.command: /usr/sbin/postmap lmdb:/etc/postfix/tls_policy
- name: Restart postfix
service: name=postfix state=restarted