From 7a5501da84f43f6e64465c6e9de936aca10ff970 Mon Sep 17 00:00:00 2001 From: Chris Edillon Date: Mon, 11 Nov 2024 15:06:31 -0500 Subject: [PATCH] Opened firewalld HTTP ports on report server Closes #177 --- linux/patching.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/linux/patching.yml b/linux/patching.yml index 01801af1f..96b31cf78 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 }}"