mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2024-12-26 07:05:52 -05:00
Fixed Linux interactive installer.
This commit is contained in:
parent
a148ad07e2
commit
f0a3280f7e
@ -14,7 +14,9 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var s = null, msh = {}, buttons = ['Cancel'], skip = false;
|
// The folloing line just below with 'msh=' needs to stay exactly like this since MeshCentral will replace it with the correct settings.
|
||||||
|
var msh = {};
|
||||||
|
var s = null, buttons = ['Cancel'], skip = false;
|
||||||
try { s = require('service-manager').manager.getService('meshagent'); } catch (e) { }
|
try { s = require('service-manager').manager.getService('meshagent'); } catch (e) { }
|
||||||
|
|
||||||
function _install(parms) {
|
function _install(parms) {
|
||||||
|
@ -4468,9 +4468,7 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 'createDeviceShareLink': {
|
case 'createDeviceShareLink': {
|
||||||
var maxExpireMinutes = (typeof domain.maxguestsessionsharingtime == 'number') ? domain.maxguestsessionsharingtime : 60;
|
var err = null, maxExpireMinutes = (typeof domain.maxguestsessionsharingtime == 'number') ? domain.maxguestsessionsharingtime : 60;
|
||||||
console.log(maxExpireMinutes);
|
|
||||||
var err = null;
|
|
||||||
if (common.validateString(command.nodeid, 8, 128) == false) { err = 'Invalid node id'; } // Check the meshid
|
if (common.validateString(command.nodeid, 8, 128) == false) { err = 'Invalid node id'; } // Check the meshid
|
||||||
else if (common.validateString(command.guestname, 1, 128) == false) { err = 'Invalid guest name'; } // Check the guest name
|
else if (common.validateString(command.guestname, 1, 128) == false) { err = 'Invalid guest name'; } // Check the guest name
|
||||||
else if (common.validateInt(command.expire, 1, maxExpireMinutes) == false) { err = 'Invalid expire time'; } // Check the expire time in hours
|
else if (common.validateInt(command.expire, 1, maxExpireMinutes) == false) { err = 'Invalid expire time'; } // Check the expire time in hours
|
||||||
|
Loading…
Reference in New Issue
Block a user