2019-06-14 12:59:49 +00:00
|
|
|
#!rsc
|
|
|
|
# RouterOS script: cloud-backup
|
2020-01-01 16:00:39 +00:00
|
|
|
# Copyright (c) 2013-2020 Christian Hesse <mail@eworm.de>
|
2019-06-14 12:59:49 +00:00
|
|
|
#
|
|
|
|
# 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
|
2019-06-14 12:59:49 +00:00
|
|
|
|
|
|
|
:global BackupPassword;
|
2020-02-28 14:26:26 +00:00
|
|
|
:global Identity;
|
2019-06-14 12:59:49 +00:00
|
|
|
|
2019-09-12 11:45:44 +00:00
|
|
|
:global DeviceInfo;
|
2020-04-03 15:30:00 +00:00
|
|
|
:global LogPrintExit;
|
2019-06-14 12:59:49 +00:00
|
|
|
:global SendNotification;
|
|
|
|
|
|
|
|
:do {
|
|
|
|
# we are not interested in output, but print without count-only is
|
|
|
|
# required to fetch information from cloud
|
|
|
|
/ system backup cloud print as-value;
|
|
|
|
:if ([ / system backup cloud print count-only ] > 0) do={
|
2019-06-14 13:41:32 +00:00
|
|
|
/ 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;
|
2019-06-14 12:59:49 +00:00
|
|
|
}
|
|
|
|
:local Cloud [ / system backup cloud get ([ find ]->0) ];
|
|
|
|
|
|
|
|
$SendNotification "Cloud backup" \
|
|
|
|
("Uploaded backup for " . $Identity . " to cloud.\n\n" . \
|
2019-09-12 11:45:44 +00:00
|
|
|
[ $DeviceInfo ] . "\n\n" . \
|
2019-06-14 12:59:49 +00:00
|
|
|
"Name: " . $Cloud->"name" . "\n" . \
|
|
|
|
"Size: " . $Cloud->"size" . "\n" . \
|
2019-08-18 17:14:17 +00:00
|
|
|
"Download key: " . $Cloud->"secret-download-key") "" "true";
|
2019-06-14 12:59:49 +00:00
|
|
|
} on-error={
|
2020-04-03 15:30:00 +00:00
|
|
|
$LogPrintExit error ("Failed uploading backup for " . $Identity . " to cloud.") false;
|
2019-06-14 12:59:49 +00:00
|
|
|
}
|