logdetective: firewalld isn't installed, use iptables directly

This commit is contained in:
Jakub Kadlcik 2025-03-20 16:57:18 +01:00
parent 26496b9ae0
commit 3ed2d8e61a

View file

@ -103,7 +103,9 @@
line: 'graphroot = "/mnt/srv/containers_storage"'
- name: Allow accessing 8080 from the outside
ansible.posix.firewalld:
port: 8080
permanent: true
state: enabled
ansible.builtin.iptables:
chain: INPUT
protocol: tcp
destination_ports:
- "8080"
jump: ACCEPT