From fa4848f5cdd875be1fc011017ec69f18ff8872ff Mon Sep 17 00:00:00 2001 From: usmannasir Date: Sun, 14 Jan 2024 11:21:21 +0500 Subject: [PATCH] update default mariadb version to 10.11 --- install/installCyberPanel.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install/installCyberPanel.py b/install/installCyberPanel.py index dec908796..44b8776b3 100755 --- a/install/installCyberPanel.py +++ b/install/installCyberPanel.py @@ -298,6 +298,9 @@ def installMySQL(self, mysql): WriteToFile.write(RepoContent) WriteToFile.close() + command = 'DEBIAN_FRONTEND=noninteractive apt-get update -y' + install.preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR, True) + command = "DEBIAN_FRONTEND=noninteractive apt-get install mariadb-server -y" elif self.distro == centos: