mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-08-05 16:17:38 +02:00
Update to 2021-12-01 19:13
This commit is contained in:
10
roles/seafile/tasks/iptables.yml
Normal file
10
roles/seafile/tasks/iptables.yml
Normal file
@@ -0,0 +1,10 @@
|
||||
---
|
||||
|
||||
- name: Handle seafile ports
|
||||
iptables_raw:
|
||||
name: seafile_ports
|
||||
state: "{{ (seafile_src_ip | length > 0) | ternary('present','absent') }}"
|
||||
rules: "-A INPUT -m state --state NEW -p tcp -m multiport --dports {{ seafile_ports | join(',') }} -s {{ seafile_src_ip | join(',') }} -j ACCEPT"
|
||||
when: iptables_manage | default(True)
|
||||
tags: seafile
|
||||
|
Reference in New Issue
Block a user