Compare commits

...

3 Commits

Author SHA1 Message Date
wh1te909
20d534eab0 Release 0.101.31 2023-10-01 17:36:52 +00:00
wh1te909
0d87f5afee bump version 2023-10-01 17:36:39 +00:00
wh1te909
1b83c3c5d6 fix tooltip 2023-10-01 17:36:11 +00:00
3 changed files with 4 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "web",
"version": "0.101.30",
"version": "0.101.31",
"private": true,
"productName": "Tactical RMM",
"scripts": {

View File

@@ -173,8 +173,7 @@
>Setting this value on the script model will always override
any 'Run As User' checkboxes in the UI and force this script
to always be run in the context of the logged in user. If no
user is logged in, the script will not run and an error will
be returned.
user is logged in, the script will run as SYSTEM.
</q-tooltip>
</q-checkbox>
<q-input
@@ -353,7 +352,7 @@ export default {
downloadScript(script.value.id, { with_snippets: props.readonly }).then(
(r) => {
script.value.script_body = r.code;
}
},
);
async function submitForm() {

View File

@@ -4,7 +4,7 @@ export const GOARCH_ARM64 = "arm64";
export const GOARCH_ARM32 = "arm";
export const runAsUserToolTip =
"Run in the context of the logged in user. If no user is logged in, the script will not run and an error will be returned.";
"Run in the context of the logged in user. If no user is logged in, the script will run as SYSTEM";
export const envVarsLabel =
"Environment vars (press Enter after typing each key=value pair)";