aboutsummaryrefslogtreecommitdiffstats
path: root/email-backup
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2019-09-12 13:45:44 +0200
committerGravatar Christian Hesse <mail@eworm.de>2019-09-12 21:29:41 +0200
commit94581741f42d809a1364accda57cdf1d57519ffa (patch)
treef9b003f5622f5c2871e65cbba7c2f4424403e942 /email-backup
parent23b38fa15ab7c0b39dfeabbf2f45c69f94115ec6 (diff)
global-functions: introduce and use $DeviceInfo
Diffstat (limited to 'email-backup')
-rw-r--r--email-backup17
1 files changed, 4 insertions, 13 deletions
diff --git a/email-backup b/email-backup
index f1a2f9a..d5acb44 100644
--- a/email-backup
+++ b/email-backup
@@ -13,6 +13,7 @@
:global BackupPassword;
:global CharacterReplace;
+:global DeviceInfo;
:if ($BackupSendBinary != true && \
$BackupSendExport != true) do={
@@ -26,11 +27,6 @@
:local ConfigFile "none";
:local Attach [ :toarray "" ];
-# get some system information
-:local BoardName [ / system resource get board-name ];
-:local RouterBoard [ / system routerboard get ];
-:local Update [ / system package update get ];
-
# binary backup
:if ($BackupSendBinary = true) do={
/ system backup save encryption=aes-sha256 name=$FileName password=$BackupPassword;
@@ -49,13 +45,8 @@
/ tool e-mail send to=$EmailBackupTo cc=$EmailBackupCc \
subject=("[" . $Identity . "] Backup & Config") \
body=("Backup and config export for " . $Identity . ".\n\n" . \
- "Board name: " . $BoardName . "\n" . \
- "Model: " . $RouterBoard->"model" . "\n" . \
- "Serial number: " . $RouterBoard->"serial-number" . "\n" . \
- "Hostname: " . $Identity . "\n" . \
- "Channel: " . $Update->"channel" . "\n" . \
- "RouterOS: " . $Update->"installed-version" . "\n\n" . \
- "Backup file: " . $BackupFile . "\n" . \
- "Config file: " . $ConfigFile) \
+ [ $DeviceInfo ] . "\n\n" . \
+ "Backup file: " . $BackupFile . "\n" . \
+ "Config file: " . $ConfigFile) \
file=$Attach;
}