From 98ec16f7143656e3e9b8e896d35e83528a2fe54a Mon Sep 17 00:00:00 2001 From: master3395 Date: Mon, 26 Jan 2026 21:42:34 +0100 Subject: [PATCH] Call disableMariaDB12RepositoryIfNeeded in fix_almalinux9_comprehensive - Ensures MariaDB 12.1 repository is disabled early in the process - Called before Pre_Install_Required_Components runs - Prevents upgrade attempts when MariaDB 10.x is already installed --- install/install.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install/install.py b/install/install.py index f3b0c7f39..a1199050a 100644 --- a/install/install.py +++ b/install/install.py @@ -345,6 +345,10 @@ class preFlightsChecks: self.stdOut(f"Successfully installed alternative: {alt_package}", 1) break + # Disable MariaDB 12.1 repository if MariaDB 10.x is already installed + # This prevents upgrade attempts in Pre_Install_Required_Components + self.disableMariaDB12RepositoryIfNeeded() + # Check if MariaDB is already installed before attempting installation is_installed, installed_version, major_minor = self.checkExistingMariaDB()