Initial commit
Some checks failed
/ ansible-docsmith (push) Successful in 23s
/ molecule (certbot) (push) Failing after 47s
/ molecule (galene) (push) Failing after 59s
/ molecule (golang) (push) Has been cancelled

Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
Julien Riou 2026-02-16 18:57:09 +01:00 committed by Julien Riou
commit c610083d3c
Signed by: jriou
GPG key ID: 9A099EDA51316854
92 changed files with 3530 additions and 0 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