aboutsummaryrefslogtreecommitdiffstats
path: root/global-functions.rsc
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2023-10-13 17:27:52 +0200
committerGravatar Christian Hesse <mail@eworm.de>2023-10-17 14:05:03 +0200
commit382f92856883ad66b483dd3fef9dfc95b69fbcac (patch)
tree3075d1c7514e97a8f9658c34f4b8302892f5a7a9 /global-functions.rsc
parent7a1ffb659cd2fc39900fd3b466a237bec82b4739 (diff)
global-functions: $ScriptInstallUpdate: drop support for scripts from storagechange-110
Nobody ever used that, no? (Well, except me - just before I implemented fetching. 😜)
Diffstat (limited to 'global-functions.rsc')
-rw-r--r--global-functions.rsc12
1 files changed, 2 insertions, 10 deletions
diff --git a/global-functions.rsc b/global-functions.rsc
index d9a040e..c6aee1f 100644
--- a/global-functions.rsc
+++ b/global-functions.rsc
@@ -12,7 +12,7 @@
:local 0 "global-functions";
# expected configuration version
-:global ExpectedConfigVersion 109;
+:global ExpectedConfigVersion 110;
# global variables not to be changed by user
:global GlobalFunctionsReady false;
@@ -843,7 +843,6 @@
:global IDonate;
:global NoNewsAndChangesNotification;
:global ScriptUpdatesBaseUrl;
- :global ScriptUpdatesFetch;
:global ScriptUpdatesUrlSuffix;
:global CertificateAvailable;
@@ -878,12 +877,8 @@
:foreach Script in=[ /system/script/find where source~"^#!rsc by RouterOS\r?\n" ] do={
:local ScriptVal [ /system/script/get $Script ];
- :local ScriptFile [ /file/find where name=("script-updates/" . $ScriptVal->"name") . ".rsc" ];
+ :local ScriptInfo [ $ParseKeyValueStore ($ScriptVal->"comment") ];
:local SourceNew;
- :if ([ :len $ScriptFile ] > 0) do={
- :set SourceNew [ /file/get $ScriptFile contents ];
- /file/remove $ScriptFile;
- }
:foreach Scheduler in=[ /system/scheduler/find where on-event~("\\b" . $ScriptVal->"name" . "\\b") ] do={
:local SchedulerVal [ /system/scheduler/get $Scheduler ];
@@ -893,8 +888,6 @@
}
}
- :if ([ :len $SourceNew ] = 0 && $ScriptUpdatesFetch = true) do={
- :local ScriptInfo [ $ParseKeyValueStore ($ScriptVal->"comment") ];
:if (!($ScriptInfo->"ignore" = true)) do={
:do {
:local BaseUrl $ScriptUpdatesBaseUrl;
@@ -919,7 +912,6 @@
}
}
}
- }
:if ([ :len $SourceNew ] > 0) do={
:if ($SourceNew != $ScriptVal->"source") do={