Initial commit
Some checks failed
/ ansible-docsmith (push) Failing after 6s

Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
Julien Riou 2026-02-16 08:44:10 +01:00
commit 4c867292e6
Signed by: jriou
GPG key ID: 9A099EDA51316854
47 changed files with 1680 additions and 2 deletions

View file

@ -0,0 +1,16 @@
---
- name: install packages
ansible.builtin.package:
name: netfilter-persistent
- name: allow with iptables
ansible.builtin.iptables:
chain: INPUT
protocol: tcp
source: "{{ item }}"
destination_ports:
- "{{ coller_port }}"
jump: ACCEPT
comment: coller
loop: "{{ coller_allowed_sources }}"
notify: save iptables