George's suggested additions

This commit is contained in:
rperper
2018-11-01 20:27:26 -04:00
parent 082243d9f8
commit 6408ce66e5
2 changed files with 2 additions and 2 deletions

View File

@@ -320,7 +320,7 @@ class preFlightsChecks:
count = 0
while (1):
if self.distro == ubuntu:
command = "apt-get -y install python-pip libcurl4-gnutls-dev"
command = "apt-get -y install python-pip libcurl4-gnutls-dev libgnutls-dev libgcrypt20-dev"
else:
command = "yum -y install python-pip"
res = subprocess.call(shlex.split(command))

View File

@@ -232,7 +232,7 @@ class InstallCyberPanel:
while (1):
if self.distro == ubuntu:
command = 'DEBIAN_FRONTEND=noninteractive apt-get -y install lsphp*'
command = 'DEBIAN_FRONTEND=noninteractive apt-get -y install lsphp7*'
res = os.system(command)
else: