From 4f47b842ad265f488c57f460d81222a45ffe105b Mon Sep 17 00:00:00 2001 From: Usman Nasir Date: Wed, 22 Jan 2020 16:27:15 +0500 Subject: [PATCH] update lscpd --- plogical/upgrade.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plogical/upgrade.py b/plogical/upgrade.py index aa7a8f91c..bdce0dec5 100755 --- a/plogical/upgrade.py +++ b/plogical/upgrade.py @@ -1494,13 +1494,13 @@ CSRF_COOKIE_SECURE = True if os.path.exists(lscpdPath): os.remove(lscpdPath) - command = 'wget https://cyberpanel.sh/lscpd-0.2.3 -P /usr/local/lscp/bin/' + command = 'wget https://cyberpanel.sh/lscpd-0.2.4 -P /usr/local/lscp/bin/' Upgrade.executioner(command, command, 0) command = 'rm -f /usr/local/lscp/bin/lscpd' Upgrade.executioner(command, command, 0) - command = 'mv /usr/local/lscp/bin/lscpd-0.2.3 /usr/local/lscp/bin/lscpd' + command = 'mv /usr/local/lscp/bin/lscpd-0.2.4 /usr/local/lscp/bin/lscpd' Upgrade.executioner(command, command, 0) command = 'chmod 755 %s' % (lscpdPath)