From 4dbe81d3e199b6e44fd3113fb9fb0a9cc1680bca Mon Sep 17 00:00:00 2001 From: usmannasir Date: Sun, 3 Mar 2024 15:05:03 +0500 Subject: [PATCH] resolve https://github.com/usmannasir/cyberpanel/issues/1217 --- install/installCyberPanel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/installCyberPanel.py b/install/installCyberPanel.py index 1d34c41c7..baf181121 100755 --- a/install/installCyberPanel.py +++ b/install/installCyberPanel.py @@ -413,7 +413,7 @@ gpgcheck=1 passwordCMD = "use mysql;DROP DATABASE IF EXISTS test;DELETE FROM mysql.db WHERE Db='test' OR Db='test\\_%%';GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED BY '%s';flush privileges;" % ( InstallCyberPanel.mysql_Root_password) - command = 'mysql -u root -e "' + passwordCMD + '"' + command = 'mariadb -u root -e "' + passwordCMD + '"' install.preFlightsChecks.call(command, self.distro, command, command, 0, 0, os.EX_OSERR)