routeros-scripts/cloud-backup

39 lines
1.3 KiB
Plaintext
Raw Normal View History

#!rsc
# RouterOS script: cloud-backup
2020-01-01 16:00:39 +00:00
# Copyright (c) 2013-2020 Christian Hesse <mail@eworm.de>
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
#
# upload backup to MikroTik cloud
2020-03-27 20:42:33 +00:00
# https://git.eworm.de/cgit/routeros-scripts/about/doc/cloud-backup.md
:global BackupPassword;
2020-02-28 14:26:26 +00:00
:global Identity;
:global DeviceInfo;
2020-04-03 15:30:00 +00:00
:global LogPrintExit;
:global SendNotification;
:global SymbolForNotification;
:do {
# we are not interested in output, but print is
# required to fetch information from cloud
/ system backup cloud print as-value;
:if ([ :len [ / system backup cloud find ] ] > 0) do={
/ system backup cloud upload-file action=create-and-upload \
password=$BackupPassword replace=[ get ([ find ]->0) name ];
} else={
/ system backup cloud upload-file action=create-and-upload \
password=$BackupPassword;
}
:local Cloud [ / system backup cloud get ([ find ]->0) ];
$SendNotification ([ $SymbolForNotification "floppy-disk" ] . "Cloud backup") \
("Uploaded backup for " . $Identity . " to cloud.\n\n" . \
[ $DeviceInfo ] . "\n\n" . \
"Name: " . $Cloud->"name" . "\n" . \
"Size: " . $Cloud->"size" . "\n" . \
2019-08-18 17:14:17 +00:00
"Download key: " . $Cloud->"secret-download-key") "" "true";
} on-error={
2020-04-03 15:30:00 +00:00
$LogPrintExit error ("Failed uploading backup for " . $Identity . " to cloud.") false;
}