mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-16 18:23:40 +02:00
10 lines
348 B
YAML
10 lines
348 B
YAML
---
|
|
|
|
- name: Handle ports for openproject
|
|
iptables_raw:
|
|
name: openproject_ports
|
|
state: "{{ (openproject_src_ip | length > 0) | ternary('present','absent') }}"
|
|
rules: "-A INPUT -p tcp --dport {{ openproject_port }} -s {{ openproject_src_ip | join(',') }} -j ACCEPT"
|
|
when: iptables_manage | default(True)
|
|
tags: firewall,openproject
|