diff --git a/install/install.py b/install/install.py index 98f461687..7652947f7 100755 --- a/install/install.py +++ b/install/install.py @@ -1345,13 +1345,13 @@ imap_folder_list_limit = 0 lscpdPath = '/usr/local/lscp/bin/lscpd' - command = 'cp -f /usr/local/CyberCP/lscpd-0.2.5 /usr/local/lscp/bin/lscpd-0.2.5' + command = 'cp -f /usr/local/CyberCP/lscpd-0.2.7 /usr/local/lscp/bin/lscpd-0.2.7' 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.2.5 /usr/local/lscp/bin/lscpd' + command = 'mv /usr/local/lscp/bin/lscpd-0.2.7 /usr/local/lscp/bin/lscpd' preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR) command = 'chmod 755 %s' % (lscpdPath) diff --git a/lscpd-0.2.5 b/lscpd-0.2.7 similarity index 75% rename from lscpd-0.2.5 rename to lscpd-0.2.7 index 5ce38f60d..455fb6457 100755 Binary files a/lscpd-0.2.5 and b/lscpd-0.2.7 differ diff --git a/plogical/upgrade.py b/plogical/upgrade.py index 716a2344a..797d3d008 100755 --- a/plogical/upgrade.py +++ b/plogical/upgrade.py @@ -1520,13 +1520,13 @@ class Upgrade: if os.path.exists(lscpdPath): os.remove(lscpdPath) - command = 'cp -f /usr/local/CyberCP/lscpd-0.2.5 /usr/local/lscp/bin/lscpd-0.2.5' + command = 'cp -f /usr/local/CyberCP/lscpd-0.2.7 /usr/local/lscp/bin/lscpd-0.2.7' 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.5 /usr/local/lscp/bin/lscpd' + command = 'mv /usr/local/lscp/bin/lscpd-0.2.7 /usr/local/lscp/bin/lscpd' Upgrade.executioner(command, command, 0) command = 'chmod 755 %s' % (lscpdPath)