Fixed unlink() in auto-backup.

This commit is contained in:
Ylian Saint-Hilaire 2019-05-17 15:50:09 -07:00
parent 89916841cc
commit d8b54376ef
3 changed files with 4 additions and 4 deletions

4
db.js
View File

@ -702,7 +702,7 @@ module.exports.CreateDB = function (parent, func) {
} else { } else {
archive = archiver('zip', { zlib: { level: 9 } }); archive = archiver('zip', { zlib: { level: 9 } });
} }
output.on('close', function () { obj.performingBackup = false; setTimeout(function () { try { obj.parent.fs.unlink(newBackupPath + '.archive'); } catch (ex) { console.log(ex); } }, 5000); }); output.on('close', function () { obj.performingBackup = false; setTimeout(function () { try { obj.parent.fs.unlink(newBackupPath + '.archive', function () { }); } catch (ex) { console.log(ex); } }, 5000); });
output.on('end', function () { }); output.on('end', function () { });
archive.on('warning', function (err) { console.log('Backup warning: ' + err); }); archive.on('warning', function (err) { console.log('Backup warning: ' + err); });
archive.on('error', function (err) { console.log('Backup error: ' + err); }); archive.on('error', function (err) { console.log('Backup error: ' + err); });
@ -743,7 +743,7 @@ module.exports.CreateDB = function (parent, func) {
var timex = name.substring(23, name.length - 4).split('-'); var timex = name.substring(23, name.length - 4).split('-');
if (timex.length == 5) { if (timex.length == 5) {
var fileDate = new Date(parseInt(timex[0]), parseInt(timex[1]) - 1, parseInt(timex[2]), parseInt(timex[3]), parseInt(timex[4])); var fileDate = new Date(parseInt(timex[0]), parseInt(timex[1]) - 1, parseInt(timex[2]), parseInt(timex[3]), parseInt(timex[4]));
if (fileDate && (cutoffDate > fileDate)) { try { obj.parent.fs.unlink(obj.parent.path.join(obj.parent.backuppath, name)); } catch (ex) { } } if (fileDate && (cutoffDate > fileDate)) { try { obj.parent.fs.unlink(obj.parent.path.join(obj.parent.backuppath, name), function () { }); } catch (ex) { } }
} }
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "meshcentral", "name": "meshcentral",
"version": "0.3.4-r", "version": "0.3.4-s",
"keywords": [ "keywords": [
"Remote Management", "Remote Management",
"Intel AMT", "Intel AMT",

File diff suppressed because one or more lines are too long