From 90d28aabbeb59b272467a605a2ea8f08e04dcd30 Mon Sep 17 00:00:00 2001 From: Chris Edillon <67980205+jce-redhat@users.noreply.github.com> Date: Mon, 11 Nov 2024 17:04:03 -0500 Subject: [PATCH] Resolved firewalld issue on patch report server (#200) --- linux/patching.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/linux/patching.yml b/linux/patching.yml index 01801af..96b31cf 100644 --- a/linux/patching.yml +++ b/linux/patching.yml @@ -45,6 +45,16 @@ name: firewalld state: started + - name: Enable firewall http service + ansible.posix.firewalld: + service: '{{ item }}' + state: enabled + immediate: true + permanent: true + loop: + - http + - https + - name: Build report server ansible.builtin.include_role: name: "{{ item }}"