diff --git a/agents/meshcore.js b/agents/meshcore.js index f2889d0a..b3e3d989 100644 --- a/agents/meshcore.js +++ b/agents/meshcore.js @@ -3870,7 +3870,7 @@ function bsd_execv(name, agentfilename, sessionid) { arg.pointerBuffer().copy(args.toBuffer(), i * require('_GenericMarshal').PointerSize); } - if (sessionid != null) { sendConsoleText('Restarting service via service-manager', sessionid) } + if (sessionid != null) { sendConsoleText('Restarting service via execv()', sessionid) } libc.execv(path, args); if (sessionid != null) { sendConsoleText('Self Update failed because execv() failed', sessionid) } sendAgentMessage('Self Update failed because execv() failed', 3); diff --git a/agents/recoverycore.js b/agents/recoverycore.js index 7f35e68f..9d951380 100644 --- a/agents/recoverycore.js +++ b/agents/recoverycore.js @@ -198,7 +198,7 @@ function bsd_execv(name, agentfilename, sessionid) { arg.pointerBuffer().copy(args.toBuffer(), i * require('_GenericMarshal').PointerSize); } - if (sessionid != null) { sendConsoleText('Restarting service via service-manager', sessionid) } + if (sessionid != null) { sendConsoleText('Restarting service via execv()', sessionid) } libc.execv(path, args); if (sessionid != null) { sendConsoleText('Self Update failed because execv() failed', sessionid) } sendAgentMessage('Self Update failed because execv() failed', 3);