🚨: yamllint conformity
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
ansible.builtin.template:
|
||||
src: sasl_passwd.j2
|
||||
dest: /etc/postfix/sasl_passwd
|
||||
mode: 0640
|
||||
mode: "0o640"
|
||||
notify:
|
||||
- Postmap sasl_passwd
|
||||
- Restart postfix
|
||||
@@ -29,5 +29,5 @@
|
||||
ansible.builtin.template:
|
||||
src: main.cf.j2
|
||||
dest: /etc/postfix/main.cf
|
||||
mode: 0644
|
||||
mode: "0o644"
|
||||
notify: Restart postfix
|
||||
|
@@ -3,7 +3,7 @@
|
||||
- name: Create recipient/destination map
|
||||
ansible.builtin.copy:
|
||||
dest: "{{ item.destination }}"
|
||||
mode: 0644
|
||||
mode: "0o644"
|
||||
content: |
|
||||
{{ item.content }}
|
||||
loop:
|
||||
|
@@ -9,7 +9,7 @@
|
||||
ansible.builtin.template:
|
||||
src: smtp-wrapper.conf.j2
|
||||
dest: /etc/stunnel/smtp-wrapper.conf
|
||||
mode: 0644
|
||||
mode: "0o644"
|
||||
notify: Restart stunnel4
|
||||
|
||||
- name: Ensure stunnel is enabled and running
|
||||
|
Reference in New Issue
Block a user