From d32d25fa9acd163e5bcffebd05f0dd565710e964 Mon Sep 17 00:00:00 2001 From: "usman@cyberpersons.com" Date: Fri, 7 Jul 2023 21:31:28 +0500 Subject: [PATCH] bug fix: ftp for ubuntu 20 --- install/installCyberPanel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/installCyberPanel.py b/install/installCyberPanel.py index 067d1ee53..73f955098 100755 --- a/install/installCyberPanel.py +++ b/install/installCyberPanel.py @@ -505,7 +505,7 @@ class InstallCyberPanel: install.preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR) - if get_Ubuntu_release() > 20: + if get_Ubuntu_release() > 21.00: ### change mysql md5 to crypt command = "sed -i 's/MYSQLCrypt md5/MYSQLCrypt crypt/g' /etc/pure-ftpd/db/mysql.conf"