mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2024-11-26 07:57:56 +03:00
Added more text to clarify that MeshCentral needs to be offline for --resetaccount, --createaccount, --adminaccount to work.
This commit is contained in:
parent
b193ee5521
commit
2a201630e9
@ -842,7 +842,7 @@ function CreateMeshCentralServer(config, args) {
|
|||||||
if (hashpasssplit.length != 2) { console.log("Invalid hashed password."); process.exit(); return; }
|
if (hashpasssplit.length != 2) { console.log("Invalid hashed password."); process.exit(); return; }
|
||||||
user.salt = hashpasssplit[0];
|
user.salt = hashpasssplit[0];
|
||||||
user.hash = hashpasssplit[1];
|
user.hash = hashpasssplit[1];
|
||||||
obj.db.Set(user, function () { console.log("Done."); process.exit(); return; });
|
obj.db.Set(user, function () { console.log("Done. This command will only work if MeshCentral is stopped."); process.exit(); return; });
|
||||||
} else {
|
} else {
|
||||||
// Hash the password and create the account.
|
// Hash the password and create the account.
|
||||||
require('./pass').hash(obj.args.pass, function (err, salt, hash, tag) { if (err) { console.log("Unable create account password: " + err); process.exit(); return; } user.salt = salt; user.hash = hash; obj.db.Set(user, function () { console.log("Done."); process.exit(); return; }); }, 0);
|
require('./pass').hash(obj.args.pass, function (err, salt, hash, tag) { if (err) { console.log("Unable create account password: " + err); process.exit(); return; } user.salt = salt; user.hash = hash; obj.db.Set(user, function () { console.log("Done."); process.exit(); return; }); }, 0);
|
||||||
@ -866,7 +866,7 @@ function CreateMeshCentralServer(config, args) {
|
|||||||
if (hashpasssplit.length != 2) { console.log("Invalid hashed password."); process.exit(); return; }
|
if (hashpasssplit.length != 2) { console.log("Invalid hashed password."); process.exit(); return; }
|
||||||
user.salt = hashpasssplit[0];
|
user.salt = hashpasssplit[0];
|
||||||
user.hash = hashpasssplit[1];
|
user.hash = hashpasssplit[1];
|
||||||
obj.db.Set(user, function () { console.log("Done."); process.exit(); return; });
|
obj.db.Set(user, function () { console.log("Done. This command will only work if MeshCentral is stopped."); process.exit(); return; });
|
||||||
} else {
|
} else {
|
||||||
// Hash the password and reset the account.
|
// Hash the password and reset the account.
|
||||||
require('./pass').hash(String(obj.args.pass), user.salt, function (err, hash, tag) { if (err) { console.log("Unable to reset password: " + err); process.exit(); return; } user.hash = hash; obj.db.Set(user, function () { console.log("Done."); process.exit(); return; }); }, 0);
|
require('./pass').hash(String(obj.args.pass), user.salt, function (err, hash, tag) { if (err) { console.log("Unable to reset password: " + err); process.exit(); return; } user.hash = hash; obj.db.Set(user, function () { console.log("Done."); process.exit(); return; }); }, 0);
|
||||||
@ -883,7 +883,7 @@ function CreateMeshCentralServer(config, args) {
|
|||||||
if (err != null) { console.log("Database error: " + err); process.exit(); return; }
|
if (err != null) { console.log("Database error: " + err); process.exit(); return; }
|
||||||
if ((docs == null) || (docs.length == 0)) { console.log("Unknown userid, usage: --adminaccount [userid] --domain (domain)."); process.exit(); return; }
|
if ((docs == null) || (docs.length == 0)) { console.log("Unknown userid, usage: --adminaccount [userid] --domain (domain)."); process.exit(); return; }
|
||||||
docs[0].siteadmin = 0xFFFFFFFF; // Set user as site administrator
|
docs[0].siteadmin = 0xFFFFFFFF; // Set user as site administrator
|
||||||
obj.db.Set(docs[0], function () { console.log("Done."); process.exit(); return; });
|
obj.db.Set(docs[0], function () { console.log("Done. This command will only work if MeshCentral is stopped."); process.exit(); return; });
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user