From d4795c3e74b62aab0ec2b7e6cb3528c13c8fc1e3 Mon Sep 17 00:00:00 2001 From: Usman Nasir Date: Wed, 8 Jun 2022 19:37:55 +0500 Subject: [PATCH] resolve alma issue, ref https://github.com/usmannasir/cyberpanel/issues/891 --- install/installCyberPanel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/installCyberPanel.py b/install/installCyberPanel.py index f0a5a7f1c..60c10cd9c 100755 --- a/install/installCyberPanel.py +++ b/install/installCyberPanel.py @@ -248,7 +248,7 @@ class InstallCyberPanel: subprocess.call(command, shell=True) if self.distro == cent8: - command = 'dnf install lsphp71* lsphp72* lsphp73* lsphp74* lsphp80* --exclude lsphp73-pecl-zip -y' + command = 'dnf install lsphp71* lsphp72* lsphp73* lsphp74* lsphp80* --exclude lsphp73-pecl-zip --exclude *imagick* -y' subprocess.call(command, shell=True) def installMySQL(self, mysql):