mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-06 05:15:49 +01:00
bug fix: remove not needed php on cent8 and ub20
This commit is contained in:
@@ -13,9 +13,11 @@ class PHPManager:
|
||||
def findPHPVersions():
|
||||
distro = ProcessUtilities.decideDistro()
|
||||
if distro == ProcessUtilities.centos:
|
||||
if distro == ProcessUtilities.cent8:
|
||||
return ['PHP 7.2', 'PHP 7.3', 'PHP 7.4']
|
||||
return ['PHP 5.3', 'PHP 5.4', 'PHP 5.5', 'PHP 5.6', 'PHP 7.0', 'PHP 7.1', 'PHP 7.2', 'PHP 7.3', 'PHP 7.4']
|
||||
elif distro == ProcessUtilities.cent8:
|
||||
return ['PHP 7.2', 'PHP 7.3', 'PHP 7.4']
|
||||
elif distro == ProcessUtilities.ubuntu20:
|
||||
return ['PHP 7.2', 'PHP 7.3', 'PHP 7.4']
|
||||
else:
|
||||
return ['PHP 7.0', 'PHP 7.1', 'PHP 7.2', 'PHP 7.3', 'PHP 7.4']
|
||||
|
||||
|
||||
@@ -37,6 +37,9 @@ class backupSchedule:
|
||||
print(("[" + time.strftime("%m.%d.%Y_%H-%M-%S") + "] "+ message + "\n"))
|
||||
file.close()
|
||||
|
||||
if backupSchedule.backupLog == '':
|
||||
pass
|
||||
else:
|
||||
BackupJobLogs(owner=backupSchedule.backupLog, status=status, message="[" + time.strftime("%m.%d.%Y_%H-%M-%S") + "] "+ message).save()
|
||||
|
||||
except IOError as msg:
|
||||
|
||||
@@ -17,7 +17,7 @@ from plogical.processUtilities import ProcessUtilities
|
||||
from re import match,I,M
|
||||
import signal
|
||||
from datetime import datetime
|
||||
from websiteFunctions.models import BackupJob, BackupJobLogs
|
||||
from websiteFunctions.models import BackupJob
|
||||
|
||||
class backupScheduleLocal:
|
||||
localBackupPath = '/home/cyberpanel/localBackupPath'
|
||||
|
||||
Reference in New Issue
Block a user