From 01950a9d015bcfee4f4c3f9cb8c679840629984d Mon Sep 17 00:00:00 2001 From: jbe33 Date: Mon, 3 Jun 2024 17:41:11 +0200 Subject: [PATCH] Prevent firewall.d removal When removing python3-SELinux package the firewalld package is removed too. there is a dependency with the firewalld package --- roles/install_dbserver/tasks/PG_RedHat_rm_install.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/roles/install_dbserver/tasks/PG_RedHat_rm_install.yml b/roles/install_dbserver/tasks/PG_RedHat_rm_install.yml index cea01f88..8f89a5f3 100644 --- a/roles/install_dbserver/tasks/PG_RedHat_rm_install.yml +++ b/roles/install_dbserver/tasks/PG_RedHat_rm_install.yml @@ -15,7 +15,6 @@ ansible.builtin.package: name: - python-pycurl - - libselinux-python - python2-psycopg2 - python-ipaddress state: absent @@ -26,7 +25,6 @@ ansible.builtin.package: name: - python3-pycurl - - python3-libselinux - python3-psycopg2 state: absent become: true