From 64ec237e89337b18a00638c4b43cd608bd2a16d3 Mon Sep 17 00:00:00 2001 From: rperper Date: Mon, 29 Oct 2018 10:52:34 -0400 Subject: [PATCH] Didn't install openlitespeed correctly. --- install/installCyberPanel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/installCyberPanel.py b/install/installCyberPanel.py index a8f1fa65d..eb9ae3dca 100644 --- a/install/installCyberPanel.py +++ b/install/installCyberPanel.py @@ -37,7 +37,7 @@ class InstallCyberPanel: while (1): if self.distro == ubuntu: - command = "apt-get -y openlitespeed" + command = "apt-get -y install openlitespeed" else: command = 'yum install -y openlitespeed' cmd = shlex.split(command)