diff --git a/roles/logdetective/tasks/main.yml b/roles/logdetective/tasks/main.yml index be020e30ba..d751261a9f 100644 --- a/roles/logdetective/tasks/main.yml +++ b/roles/logdetective/tasks/main.yml @@ -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