Fix opendkim socket permissions

This commit is contained in:
s3lph 2022-05-29 20:01:50 +02:00
parent a84beb24f6
commit 4f1dd94686
2 changed files with 12 additions and 0 deletions
roles/opendkim
handlers
tasks

View file

@ -4,3 +4,8 @@
ansible.builtin.service:
name: opendkim
state: restarted
- name: restart postfix
ansible.builtin.service:
name: postfix
state: restarted

View file

@ -5,3 +5,10 @@
name:
- opendkim
- opendkim-tools
- name: add postfix to opendkim group
ansible.builtin.user:
name: postfix
groups: opendkim
append: yes
notify: restart postfix