packages-update: use 'provides' to find backup scripts

This commit is contained in:
Christian Hesse 2021-06-23 00:43:42 +02:00
parent 06a0f42039
commit 420986fdfc
4 changed files with 7 additions and 1 deletions

View File

@ -3,6 +3,8 @@
# Copyright (c) 2013-2021 Christian Hesse <mail@eworm.de>
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
#
# provides: backup-script
#
# upload backup to MikroTik cloud
# https://git.eworm.de/cgit/routeros-scripts/about/doc/cloud-backup.md

View File

@ -3,6 +3,8 @@
# Copyright (c) 2013-2021 Christian Hesse <mail@eworm.de>
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
#
# provides: backup-script
#
# create and email backup and config file
# https://git.eworm.de/cgit/routeros-scripts/about/doc/email-backup.md

View File

@ -52,7 +52,7 @@ $ScriptLock $0;
}
}
:foreach Script in=[ / system script find where name~"^(cloud|email|upload)-backup\$" ] do={
:foreach Script in=[ / system script find where source~"\n# provides: backup-script\n" ] do={
:local ScriptName [ / system script get $Script name ];
:do {
$LogPrintExit2 info $0 ("Running backup script " . $ScriptName . " before update.") false;

View File

@ -3,6 +3,8 @@
# Copyright (c) 2013-2021 Christian Hesse <mail@eworm.de>
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
#
# provides: backup-script
#
# create and upload backup and config file
# https://git.eworm.de/cgit/routeros-scripts/about/doc/upload-backup.md