Skip to content

Commit 8942140

Browse files
committed
Consistency changes
1 parent 891f2d0 commit 8942140

File tree

1 file changed

+16
-8
lines changed

1 file changed

+16
-8
lines changed

handlers/main.yml

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,43 @@
11
# handlers file
22
---
33
- name: new aliases
4-
command: newaliases
4+
command: >
5+
newaliases
56
when: postfix_default_database_type != 'regexp'
67

78
- name: new virtual aliases
8-
command: postmap {{ postfix_default_database_type }}:{{ postfix_virtual_aliases_file }}
9+
command: >
10+
postmap {{ postfix_default_database_type }}:{{ postfix_virtual_aliases_file }}
911
when: postfix_default_database_type != 'regexp'
1012

1113
- name: postmap sasl_passwd
12-
command: postmap {{ postfix_default_database_type }}:{{ postfix_sasl_passwd_file }}
14+
command: >
15+
postmap {{ postfix_default_database_type }}:{{ postfix_sasl_passwd_file }}
1316
when: postfix_default_database_type != 'regexp'
1417

1518
- name: postmap sender_canonical_maps
16-
command: postmap {{ postfix_sender_canonical_maps_database_type }}:{{ postfix_sender_canonical_maps_file }}
19+
command: >
20+
postmap {{ postfix_sender_canonical_maps_database_type }}:{{ postfix_sender_canonical_maps_file }}
1721
when: postfix_sender_canonical_maps_database_type != 'regexp'
1822

1923
- name: postmap recipient_canonical_maps
20-
command: postmap {{ postfix_recipient_canonical_maps_database_type }}:{{ postfix_recipient_canonical_maps_file }}
24+
command: >
25+
postmap {{ postfix_recipient_canonical_maps_database_type }}:{{ postfix_recipient_canonical_maps_file }}
2126
when: postfix_recipient_canonical_maps_database_type != 'regexp'
2227

2328
- name: postmap transport_maps
24-
command: postmap {{ postfix_transport_maps_database_type }}:{{ postfix_transport_maps_file }}
29+
command: >
30+
postmap {{ postfix_transport_maps_database_type }}:{{ postfix_transport_maps_file }}
2531
when: postfix_transport_maps_database_type != 'regexp'
2632

2733
- name: postmap sender_dependent_relayhost_maps
28-
command: postmap {{ postfix_default_database_type }}:{{ postfix_sender_dependent_relayhost_maps_file }}
34+
command: >
35+
postmap {{ postfix_default_database_type }}:{{ postfix_sender_dependent_relayhost_maps_file }}
2936
when: postfix_default_database_type != 'regexp'
3037

3138
- name: postmap generic
32-
command: postmap {{ postfix_smtp_generic_maps_database_type }}:{{ postfix_smtp_generic_maps_file }}
39+
command: >
40+
postmap {{ postfix_smtp_generic_maps_database_type }}:{{ postfix_smtp_generic_maps_file }}
3341
when: postfix_smtp_generic_maps_database_type != 'regexp'
3442

3543
- name: remove pid

0 commit comments

Comments
 (0)