From 5b80e15fa65ad65e49c391f3dce0d2ed0f5556ce Mon Sep 17 00:00:00 2001 From: Usman Nasir Date: Sat, 24 Sep 2022 15:31:43 +0500 Subject: [PATCH] bug fix: https://github.com/usmannasir/cyberpanel/issues/952: finally CP Running --- install/install.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/install.py b/install/install.py index 5a26672ff..a44b9350d 100755 --- a/install/install.py +++ b/install/install.py @@ -1451,13 +1451,13 @@ autocreate_system_folders = On lscpdPath = '/usr/local/lscp/bin/lscpd' - command = 'cp -f /usr/local/CyberCP/lscpd-0.4.0 /usr/local/lscp/bin/lscpd-0.4.0' + command = 'cp -f /usr/local/CyberCP/lscpd.0.4.0 /usr/local/lscp/bin/lscpd.0.4.0' preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR) command = 'rm -f /usr/local/lscp/bin/lscpd' preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR) - command = 'mv /usr/local/lscp/bin/lscpd-0.4.0 /usr/local/lscp/bin/lscpd' + command = 'mv /usr/local/lscp/bin/lscpd.0.4.0 /usr/local/lscp/bin/lscpd' preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR) command = 'chmod 755 %s' % (lscpdPath)