blob: 0898b2b5ca1ad68afbf78acf439fffade871d9a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
---
- when: r_openshift_nfs_firewall_enabled | bool and not r_openshift_nfs_use_firewalld | bool
block:
- name: Add iptables allow rules
os_firewall_manage_iptables:
name: "{{ item.service }}"
action: add
protocol: "{{ item.port.split('/')[1] }}"
port: "{{ item.port.split('/')[0] }}"
when: item.cond | default(True)
with_items: "{{ r_openshift_nfs_firewall_allow }}"
- name: Remove iptables rules
os_firewall_manage_iptables:
name: "{{ item.service }}"
action: remove
protocol: "{{ item.port.split('/')[1] }}"
port: "{{ item.port.split('/')[0] }}"
when: item.cond | default(True)
with_items: "{{ r_openshift_nfs_os_firewall_deny }}"
- when: r_openshift_nfs_firewall_enabled | bool and r_openshift_nfs_use_firewalld | bool
block:
- name: Add firewalld allow rules
firewalld:
port: "{{ item.port }}"
permanent: true
immediate: true
state: enabled
when: item.cond | default(True)
with_items: "{{ r_openshift_nfs_firewall_allow }}"
- name: Remove firewalld allow rules
firewalld:
port: "{{ item.port }}"
permanent: true
immediate: true
state: disabled
when: item.cond | default(True)
with_items: "{{ r_openshift_nfs_os_firewall_deny }}"
|