From 7a200efb4cd39619ab60434255433e83c2cd0ff1 Mon Sep 17 00:00:00 2001 From: istiak101 <30789544+istiak101@users.noreply.github.com> Date: Fri, 6 Aug 2021 08:45:37 +0600 Subject: [PATCH] Fix #453 --- install/installCyberPanel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/installCyberPanel.py b/install/installCyberPanel.py index d7d33a0fc..8164d30a6 100755 --- a/install/installCyberPanel.py +++ b/install/installCyberPanel.py @@ -262,7 +262,7 @@ class InstallCyberPanel: command = "apt-key adv --fetch-keys 'https://mariadb.org/mariadb_release_signing_key.asc'" install.preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR) - command = "add-apt-repository 'deb [arch=amd64,arm64,ppc64el] https://mirror.yongbok.net/mariadb/repo/10.5/ubuntu bionic main'" + command = "add-apt-repository 'deb [arch=amd64,arm64,ppc64el] https://mirror.yongbok.net/mariadb/repo/10.4/ubuntu bionic main'" install.preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR) command = "apt-get -y install mariadb-server"