mirror of
https://git.eworm.de/cgit/routeros-scripts
synced 2025-07-16 13:04:30 +02:00
global-functions: $ScriptInstallUpdate: simplify code
This commit is contained in:
parent
caddcbabe2
commit
605c313e46
1 changed files with 1 additions and 6 deletions
|
@ -569,7 +569,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
:foreach Script in=[ / system script find where source~"^#!rsc( by RouterOS)\?\n" ] do={
|
:foreach Script in=[ / system script find where source~"^#!rsc( by RouterOS)\?\n" ] do={
|
||||||
:local Ignore 0;
|
|
||||||
:local ScriptVal [ / system script get $Script ];
|
:local ScriptVal [ / system script get $Script ];
|
||||||
:local ScriptFile [ / file find where name=("script-updates/" . $ScriptVal->"name") ];
|
:local ScriptFile [ / file find where name=("script-updates/" . $ScriptVal->"name") ];
|
||||||
:local SourceNew;
|
:local SourceNew;
|
||||||
|
@ -595,11 +594,7 @@
|
||||||
|
|
||||||
:if ([ :len $SourceNew ] = 0 && $ScriptUpdatesFetch = true) do={
|
:if ([ :len $SourceNew ] = 0 && $ScriptUpdatesFetch = true) do={
|
||||||
:local Comment [ $ParseKeyValueStore ($ScriptVal->"comment") ];
|
:local Comment [ $ParseKeyValueStore ($ScriptVal->"comment") ];
|
||||||
:if ($Comment->"ignore" = true) do={
|
:if (!($Comment->"ignore" = true)) do={
|
||||||
:set Ignore 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
:if ($Ignore = 0) do={
|
|
||||||
$LogPrintExit debug ("Fetching script from url: " . $ScriptVal->"name") false;
|
$LogPrintExit debug ("Fetching script from url: " . $ScriptVal->"name") false;
|
||||||
:do {
|
:do {
|
||||||
:local BaseUrl $ScriptUpdatesBaseUrl;
|
:local BaseUrl $ScriptUpdatesBaseUrl;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue