mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-04-01 10:13:38 -04:00
Merge pull request #2527 from nzalev/fix-logtxt-permission-bits
Fixed log.txt permission bits
This commit is contained in:
commit
7e692a2cc5
@ -2844,7 +2844,7 @@ function CreateMeshCentralServer(config, args) {
|
|||||||
const d = new Date();
|
const d = new Date();
|
||||||
if (obj.xxLogFile == null) {
|
if (obj.xxLogFile == null) {
|
||||||
try {
|
try {
|
||||||
obj.xxLogFile = obj.fs.openSync(obj.getConfigFilePath('log.txt'), 'a+', 666);
|
obj.xxLogFile = obj.fs.openSync(obj.getConfigFilePath('log.txt'), 'a+', 0o666);
|
||||||
obj.fs.writeSync(obj.xxLogFile, '---- Log start at ' + new Date().toLocaleString() + ' ----\r\n');
|
obj.fs.writeSync(obj.xxLogFile, '---- Log start at ' + new Date().toLocaleString() + ' ----\r\n');
|
||||||
obj.xxLogDateStr = d.toLocaleDateString();
|
obj.xxLogDateStr = d.toLocaleDateString();
|
||||||
} catch (ex) { }
|
} catch (ex) { }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user