global-functions: $ScriptInstallUpdate: warn when script exists...

... but is requested to be added.
This commit is contained in:
Christian Hesse 2026-03-10 16:20:26 +01:00
parent 76ae9686cf
commit 538071631d

View file

@ -1290,7 +1290,9 @@
}
:foreach Script in=$Scripts do={
:if ([ :len [ /system/script/find where name=$Script ] ] = 0) do={
:if ([ :len [ /system/script/find where name=$Script ] ] > 0) do={
$LogPrint warning $0 ("Requested to add script '" . $Script . "', but that exists already!");
} else={
$LogPrint info $0 ("Adding new script: " . $Script);
/system/script/add name=$Script owner=$Script source="#!rsc by RouterOS\n" comment=$NewComment;
}