Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
20d534eab0 | ||
|
|
0d87f5afee | ||
|
|
1b83c3c5d6 |
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "web",
|
"name": "web",
|
||||||
"version": "0.101.30",
|
"version": "0.101.31",
|
||||||
"private": true,
|
"private": true,
|
||||||
"productName": "Tactical RMM",
|
"productName": "Tactical RMM",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -173,8 +173,7 @@
|
|||||||
>Setting this value on the script model will always override
|
>Setting this value on the script model will always override
|
||||||
any 'Run As User' checkboxes in the UI and force this script
|
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
|
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
|
user is logged in, the script will run as SYSTEM.
|
||||||
be returned.
|
|
||||||
</q-tooltip>
|
</q-tooltip>
|
||||||
</q-checkbox>
|
</q-checkbox>
|
||||||
<q-input
|
<q-input
|
||||||
@@ -353,7 +352,7 @@ export default {
|
|||||||
downloadScript(script.value.id, { with_snippets: props.readonly }).then(
|
downloadScript(script.value.id, { with_snippets: props.readonly }).then(
|
||||||
(r) => {
|
(r) => {
|
||||||
script.value.script_body = r.code;
|
script.value.script_body = r.code;
|
||||||
}
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
async function submitForm() {
|
async function submitForm() {
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ export const GOARCH_ARM64 = "arm64";
|
|||||||
export const GOARCH_ARM32 = "arm";
|
export const GOARCH_ARM32 = "arm";
|
||||||
|
|
||||||
export const runAsUserToolTip =
|
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 =
|
export const envVarsLabel =
|
||||||
"Environment vars (press Enter after typing each key=value pair)";
|
"Environment vars (press Enter after typing each key=value pair)";
|
||||||
|
|||||||
Reference in New Issue
Block a user