2019-06-14 12:59:49 +00:00
|
|
|
#!rsc
|
|
|
|
# RouterOS script: cloud-backup
|
|
|
|
# Copyright (c) 2013-2019 Christian Hesse <mail@eworm.de>
|
|
|
|
#
|
|
|
|
# upload backup to MikroTik cloud
|
|
|
|
|
|
|
|
:global Identity;
|
|
|
|
:global BackupPassword;
|
|
|
|
|
|
|
|
:global SendNotification;
|
|
|
|
|
|
|
|
# get some system information
|
|
|
|
:local BoardName [ / system resource get board-name ];
|
2019-07-24 09:12:52 +00:00
|
|
|
:local RouterBoard [ / system routerboard get ];
|
2019-07-24 09:05:44 +00:00
|
|
|
:local Update [ / system package update get ];
|
2019-06-14 12:59:49 +00:00
|
|
|
|
|
|
|
: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" . \
|
|
|
|
"Board name: " . $BoardName . "\n" . \
|
2019-07-24 09:12:52 +00:00
|
|
|
"Model: " . $RouterBoard->"model" . "\n" . \
|
|
|
|
"Serial number: " . $RouterBoard->"serial-number" . "\n" . \
|
2019-06-14 12:59:49 +00:00
|
|
|
"Hostname: " . $Identity . "\n" . \
|
2019-07-24 09:05:44 +00:00
|
|
|
"Channel: " . $Update->"channel" . "\n" . \
|
|
|
|
"RouterOS: " . $Update->"installed-version" . "\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={
|
|
|
|
:log error ("Failed uploading backup for " . $Identity . " to cloud.");
|
|
|
|
}
|