fix linter
This commit is contained in:
parent
c35783bfb4
commit
6fc46ae4d1
1 changed files with 15 additions and 0 deletions
|
|
@ -16,6 +16,9 @@
|
||||||
template:
|
template:
|
||||||
src: saslauthd.conf.j2
|
src: saslauthd.conf.j2
|
||||||
dest: /etc/saslauthd.conf
|
dest: /etc/saslauthd.conf
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: 0644
|
||||||
notify:
|
notify:
|
||||||
- restart saslauthd
|
- restart saslauthd
|
||||||
|
|
||||||
|
|
@ -23,6 +26,9 @@
|
||||||
copy:
|
copy:
|
||||||
src: saslauthd-defaults
|
src: saslauthd-defaults
|
||||||
dest: /etc/default/saslauthd
|
dest: /etc/default/saslauthd
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: 0644
|
||||||
notify:
|
notify:
|
||||||
- restart saslauthd
|
- restart saslauthd
|
||||||
|
|
||||||
|
|
@ -30,6 +36,9 @@
|
||||||
copy:
|
copy:
|
||||||
src: smtpd.conf
|
src: smtpd.conf
|
||||||
dest: /etc/postfix/sasl/smtpd.conf
|
dest: /etc/postfix/sasl/smtpd.conf
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: 0644
|
||||||
notify:
|
notify:
|
||||||
- restart postfix
|
- restart postfix
|
||||||
|
|
||||||
|
|
@ -50,6 +59,9 @@
|
||||||
template:
|
template:
|
||||||
src: "{{ item.src }}"
|
src: "{{ item.src }}"
|
||||||
dest: "{{ item.dest }}"
|
dest: "{{ item.dest }}"
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: 0644
|
||||||
with_items:
|
with_items:
|
||||||
- { src: "main.cf.j2", dest: "/etc/postfix/main.cf" }
|
- { src: "main.cf.j2", dest: "/etc/postfix/main.cf" }
|
||||||
- { src: "master.cf.j2", dest: "/etc/postfix/master.cf" }
|
- { src: "master.cf.j2", dest: "/etc/postfix/master.cf" }
|
||||||
|
|
@ -62,6 +74,9 @@
|
||||||
template:
|
template:
|
||||||
src: maps.j2
|
src: maps.j2
|
||||||
dest: "{{ item }}"
|
dest: "{{ item }}"
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: 0644
|
||||||
with_items: "{{ postfix.postfixmaps }}"
|
with_items: "{{ postfix.postfixmaps }}"
|
||||||
notify:
|
notify:
|
||||||
- restart postfix
|
- restart postfix
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue