From a9114b2a80313a7d4cc7fd7311031311909ec789 Mon Sep 17 00:00:00 2001 From: Usman Nasir Date: Thu, 13 Feb 2020 09:47:00 +0500 Subject: [PATCH] remove as per req --- install/installCyberPanel.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/install/installCyberPanel.py b/install/installCyberPanel.py index 4ed1301a2..46e1734bf 100755 --- a/install/installCyberPanel.py +++ b/install/installCyberPanel.py @@ -356,17 +356,6 @@ class InstallCyberPanel: ####### Install pureftpd to system startup - ### Deal with some Centos 7 OpenVZ issues: - if self.distro == centos: - if subprocess.check_output('systemd-detect-virt').decode("utf-8").find("openvz") > -1: - varTmp = "[Service]\nPIDFile=/run/pure-ftpd.pid" - writeToFile = open("/etc/systemd/system/pure-ftpd.service.d/override.conf", "w") - writeToFile.writelines(varTmp) - writeToFile.close() - - command = "systemctl daemon-reload" - install.preFlightsCheck.call(command, self.distro. command, command, 1, 1, os.EX_OSERR); - command = "systemctl enable " + install.preFlightsChecks.pureFTPDServiceName(self.distro) install.preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)