script-updates: send global-config changes notification just once

This commit is contained in:
Christian Hesse 2019-04-03 08:30:28 +02:00
parent 7b1c275cc2
commit ea73505ecc
2 changed files with 7 additions and 2 deletions

View file

@ -8,6 +8,7 @@
:global ExpectedConfigVersion 4;
# global variables not to be changed by user
:global SentConfigChangesNotification "-";
:global SentRouterosUpdateNotification "-";
:global SentLteFirmwareUpgradeNotification "-";
:global Identity [ / system identity get name ];

View file

@ -4,9 +4,10 @@
#
# update installed scripts from file or url
:global GlobalConfigVersion;
:global ExpectedConfigVersion;
:global GlobalConfigVersion;
:global Identity;
:global SentConfigChangesNotification;
:global ScriptUpdatesFetch;
:global ScriptUpdatesBaseUrl;
:global ScriptUpdatesUrlSuffix;
@ -78,7 +79,9 @@
}
}
:if ($ScriptUpdatesConfigChangesIgnore!=true && $GlobalConfigVersion < $ExpectedConfigVersion) do={
:if ($ScriptUpdatesConfigChangesIgnore!=true && \
$SentConfigChangesNotification!=$ExpectedConfigVersion && \
$GlobalConfigVersion < $ExpectedConfigVersion) do={
:global GlobalConfigChanges;
:local ChangeLogCode;
:local Changes;
@ -105,4 +108,5 @@
"GlobalConfigVersion (currently " . $GlobalConfigVersion . \
") to " . $ExpectedConfigVersion . " and re-run global-config.\n\n" . \
"Changes:" . $Changes);
:set SentConfigChangesNotification $ExpectedConfigVersion;
}