From 63e47584e1cc285127ebed0748cb7dab16d43152 Mon Sep 17 00:00:00 2001 From: freezed <git-expect-noreply@freezed.me> Date: Sun, 1 Jan 2023 01:32:28 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20SYSTEM=20Fix=20PVE=20port=20aces?= =?UTF-8?q?s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tasks/system_cfg/firewall.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tasks/system_cfg/firewall.yml b/tasks/system_cfg/firewall.yml index 3de9df5..c3b5576 100644 --- a/tasks/system_cfg/firewall.yml +++ b/tasks/system_cfg/firewall.yml @@ -59,6 +59,14 @@ port: '80' proto: tcp +- name: UFW | allow tcp port 8006 IN + when: inventory_hostname in groups.pve + community.general.ufw: + direction: in + rule: allow + port: '8006' + proto: tcp + - name: UFW | enable & set logging community.general.ufw: logging: low -- GitLab