Skip to content

Commit

Permalink
bug fix in backup creation of complete website
Browse files Browse the repository at this point in the history
  • Loading branch information
usmannasir committed Jul 17, 2021
1 parent ed9a5e2 commit 821379d
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions plogical/backupUtilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -2044,14 +2044,11 @@ def submitBackupCreation(tempStoragePath, backupName, backupPath, backupDomain):
databases = backupMetaData.findall('Databases/database')

for database in databases:

dbName = database.find('dbName').text

if mysqlUtilities.mysqlUtilities.createDatabaseBackup(dbName, '/home/cyberpanel') == 0:
writeToFile = open(schedulerPath, 'w')
writeToFile.writelines('1358')
writeToFile.close()
return 0
res = mysqlUtilities.mysqlUtilities.createDatabaseBackup(dbName, '/home/cyberpanel')
if res == 0:
## This login can be further improved later.
logging.CyberCPLogFileWriter.writeToFile('Failed to create database backup for %s. This could be false positive, moving on.' % (dbName))

command = 'mv /home/cyberpanel/%s.sql %s/%s.sql' % (dbName, tempStoragePath, dbName)
ProcessUtilities.executioner(command, 'root')
Expand Down

0 comments on commit 821379d

Please sign in to comment.