mirror of
https://github.com/Telecominfraproject/ols-ucentral-schema.git
synced 2025-10-30 01:32:26 +00:00
16 lines
214 B
Ucode
16 lines
214 B
Ucode
let rc = system(args.command);
|
|
|
|
if (rc != 0) {
|
|
result_json({
|
|
"error": 2,
|
|
"text": "Command returned an error",
|
|
"resultCode": rc
|
|
});
|
|
|
|
return;
|
|
}
|
|
result_json({
|
|
"error": 0,
|
|
"text": "Command was executed"
|
|
});
|