dovecot firewall: Fix a default.

This commit is contained in:
Andrea Dell'Amico 2020-04-28 15:24:23 +02:00
parent 12eef67ba2
commit 8dfab517e6
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
with_items: '{{ dovecot_firewalld_services }}'
- name: Manage the dovecot related tcp/udp ports
firewalld: port={{ item.port }}/{{ item.protocol }} zone={{ item.zone }} permanent={{ item.permanent | default(False) }} state={{ item.state }} immediate=True
firewalld: port={{ item.port }}/{{ item.protocol }} zone={{ item.zone }} permanent={{ item.permanent | default(True) }} state={{ item.state }} immediate=True
with_items: '{{ dovecot_firewalld_ports }}'
tags: [ 'dovecot', 'firewall', 'firewalld', 'iptables', 'iptables_rules' ]
tags: [ 'dovecot', 'firewall', 'firewalld', 'iptables', 'iptables_rules' ]