fix linter

This commit is contained in:
nd 2021-07-17 01:47:47 +02:00
parent c35783bfb4
commit 6fc46ae4d1
No known key found for this signature in database
GPG key ID: 21B5CD4DEE3670E9

View file

@ -16,6 +16,9 @@
template:
src: saslauthd.conf.j2
dest: /etc/saslauthd.conf
owner: root
group: root
mode: 0644
notify:
- restart saslauthd
@ -23,6 +26,9 @@
copy:
src: saslauthd-defaults
dest: /etc/default/saslauthd
owner: root
group: root
mode: 0644
notify:
- restart saslauthd
@ -30,6 +36,9 @@
copy:
src: smtpd.conf
dest: /etc/postfix/sasl/smtpd.conf
owner: root
group: root
mode: 0644
notify:
- restart postfix
@ -50,6 +59,9 @@
template:
src: "{{ item.src }}"
dest: "{{ item.dest }}"
owner: root
group: root
mode: 0644
with_items:
- { src: "main.cf.j2", dest: "/etc/postfix/main.cf" }
- { src: "master.cf.j2", dest: "/etc/postfix/master.cf" }
@ -62,6 +74,9 @@
template:
src: maps.j2
dest: "{{ item }}"
owner: root
group: root
mode: 0644
with_items: "{{ postfix.postfixmaps }}"
notify:
- restart postfix