forked from ISTI-ansible-roles/ansible-roles
Merge pull request 'dovecot firewall: Fix a default.' (#194) from adellam/ansible-roles:master into master
This commit is contained in:
commit
604dcdc906
|
@ -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' ]
|
||||
|
|
Loading…
Reference in New Issue