From 0d6a96276fdc69887717f25fc921414ece797195 Mon Sep 17 00:00:00 2001 From: Wei Zhou Date: Mon, 25 Aug 2025 09:13:23 +0200 Subject: [PATCH] marvin: Stop and disable firewalld on OL9 --- Ansible/roles/marvin/tasks/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Ansible/roles/marvin/tasks/main.yml b/Ansible/roles/marvin/tasks/main.yml index 3964d7e177..2694bbfe71 100644 --- a/Ansible/roles/marvin/tasks/main.yml +++ b/Ansible/roles/marvin/tasks/main.yml @@ -18,6 +18,10 @@ - name: Set hostname pt2 shell: "hostnamectl set-hostname {{ inventory_hostname }}" +- name: Stop and disable firewalld on OL9 + shell: systemctl stop firewalld && systemctl disable firewalld + ignore_errors: true + - name: Ensure selinux python3 bindings are installed dnf: name=python3-libselinux state=present