From 34eaee695eff9c6a3d517e4e7124976b3d22971e Mon Sep 17 00:00:00 2001 From: Jiri Podivin Date: Wed, 4 Feb 2026 12:51:23 +0100 Subject: [PATCH] Opening 8090 port for communication with packit interface server Signed-off-by: Jiri Podivin --- roles/logdetective/tasks/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/roles/logdetective/tasks/main.yml b/roles/logdetective/tasks/main.yml index e7fb634b4f..6ef93aa92d 100644 --- a/roles/logdetective/tasks/main.yml +++ b/roles/logdetective/tasks/main.yml @@ -122,6 +122,12 @@ permanent: true state: enabled +- name: Allow accessing 8090 from the outside for Packit Interface + ansible.posix.firewalld: + port: 8090/tcp + permanent: true + state: enabled + - name: Allow HTTP and HTTPS in firewall ansible.posix.firewalld: service: "{{ item }}"