Skip to content

Commit

Permalink
Synced changes for silent install, with agent repo
Browse files Browse the repository at this point in the history
  • Loading branch information
krayon007 committed Oct 24, 2022
1 parent 72e6450 commit 2b04eeb
Showing 1 changed file with 14 additions and 17 deletions.
31 changes: 14 additions & 17 deletions agents/meshinstall-linux.js
Expand Up @@ -222,21 +222,19 @@ if ((!skip) && ((msh.InstallFlags & 2) == 2))

if (!skip)
{
if (process.platform != 'darwin')
if (process.argv.includes('-install') || process.argv.includes('-update'))
{
if (process.argv.includes('-install') || process.argv.includes('-update'))
var p = [];
for (var i = 0; i < process.argv.length; ++i)
{
var p = [];
for (var i = 0; i < process.argv.length; ++i)
if (process.argv[i].startsWith('--installPath='))
{
if (process.argv[i].startsWith('--installPath='))
{
p.push('--installPath="' + process.argv[i].split('=').pop() + '"');
}
else if(process.argv[i].startsWith('--'))
{
p.push(process.argv[i]);
}
p.push('--installPath="' + process.argv[i].split('=').pop() + '"');
}
else if(process.argv[i].startsWith('--'))
{
p.push(process.argv[i]);
}
}
_install(p);
process.exit();
Expand Down Expand Up @@ -274,12 +272,11 @@ if ((!skip) && ((msh.InstallFlags & 2) == 2))
process.exit();
}
}
if (process.platform == 'darwin')
{
if (!require('user-sessions').isRoot()) { console.log('\n' + translation[lang].elevation); process.exit(); }
}
}
else
{
if (!require('user-sessions').isRoot()) { console.log('\n' + translation[lang].elevation); process.exit(); }
}
}


if (!skip)
Expand Down

0 comments on commit 2b04eeb

Please sign in to comment.