From 48bf54644aadf1f289080f83ecfd06ee936ead78 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Tue, 7 Feb 2023 20:24:50 +0100 Subject: global-config: new option to backup global-config-overlay --- global-config | 1 + 1 file changed, 1 insertion(+) diff --git a/global-config b/global-config index 6096f14..c65e2f0 100644 --- a/global-config +++ b/global-config @@ -72,6 +72,7 @@ # This defines what backups to generate and what password to use. :global BackupSendBinary false; :global BackupSendExport true; +:global BackupSendGlobalConfig true; :global BackupPassword "v3ry-s3cr3t"; :global BackupRandomDelay 0; # These credentials are used to upload backup and config export files. -- cgit v1.2.3-54-g00ecf From 0527503c8e357e7cff99231b3cce2c153c9d6132 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Tue, 7 Feb 2023 20:29:13 +0100 Subject: backup-email: support sending global-config-overlay --- backup-email | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/backup-email b/backup-email index 158e746..50c5ce5 100644 --- a/backup-email +++ b/backup-email @@ -16,6 +16,7 @@ :global BackupRandomDelay; :global BackupSendBinary; :global BackupSendExport; +:global BackupSendGlobalConfig; :global Domain; :global Identity; @@ -50,6 +51,7 @@ $WaitFullyConnected; :local FileName [ $CharacterReplace ($Identity . "." . $Domain) "." "_" ]; :local FilePath ($DirName . "/" . $FileName); :local BackupFile "none"; +:local ExportFile "none"; :local ConfigFile "none"; :local Attach ({}); @@ -69,10 +71,19 @@ $WaitFullyConnected; :if ($BackupSendExport = true) do={ /export terse show-sensitive file=$FilePath; $WaitForFile ($FilePath . ".rsc"); - :set ConfigFile ($FileName . ".rsc"); + :set ExportFile ($FileName . ".rsc"); :set Attach ($Attach, ($FilePath . ".rsc")); } +# global-config-overlay +:if ($BackupSendGlobalConfig = true) do={ + :execute script={ / } file=($FilePath . ".conf"); + $WaitForFile ($FilePath . ".conf.txt"); + /file/set ($FilePath . ".conf.txt") contents=[ /system/script/get global-config-overlay source ]; + :set ConfigFile ($FileName . ".conf.txt"); + :set Attach ($Attach, ($FilePath . ".conf.txt")); +} + # send email with status and files $SendEMail2 ({ origin=$0; \ subject=([ $SymbolForNotification "floppy-disk,incoming-envelope" ] . \ @@ -81,6 +92,7 @@ $SendEMail2 ({ origin=$0; \ $Identity . ".\n\n" . \ [ $DeviceInfo ] . "\n\n" . \ "Backup file: " . $BackupFile . "\n" . \ + "Export file: " . $ExportFile . "\n" . \ "Config file: " . $ConfigFile); \ attach=$Attach; remove-attach=true }); -- cgit v1.2.3-54-g00ecf From 5d263ca11eac4305ba9ae8b70742e9bc66fb6bf0 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Tue, 7 Feb 2023 20:34:35 +0100 Subject: backup-upload: support uploading global-config-overlay --- backup-upload | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/backup-upload b/backup-upload index ee7b867..4fe9535 100644 --- a/backup-upload +++ b/backup-upload @@ -16,6 +16,7 @@ :global BackupRandomDelay; :global BackupSendBinary; :global BackupSendExport; +:global BackupSendGlobalConfig; :global BackupUploadPass; :global BackupUploadUrl; :global BackupUploadUser; @@ -50,6 +51,7 @@ $WaitFullyConnected; :local FileName [ $CharacterReplace ($Identity . "." . $Domain) "." "_" ]; :local FilePath ($DirName . "/" . $FileName); :local BackupFile "none"; +:local ExportFile "none"; :local ConfigFile "none"; :local Failed 0; @@ -83,16 +85,35 @@ $WaitFullyConnected; :do { /tool/fetch upload=yes url=($BackupUploadUrl . "/" . $FileName . ".rsc") \ user=$BackupUploadUser password=$BackupUploadPass src-path=($FilePath . ".rsc"); - :set ConfigFile ($FileName . ".rsc"); + :set ExportFile ($FileName . ".rsc"); } on-error={ $LogPrintExit2 error $0 ("Uploading configuration export failed!") false; - :set ConfigFile "failed"; + :set ExportFile "failed"; :set Failed 1; } /file/remove ($FilePath . ".rsc"); } +# global-config-overlay +:if ($BackupSendGlobalConfig = true) do={ + :execute script={ / } file=($FilePath . ".conf"); + $WaitForFile ($FilePath . ".conf.txt"); + /file/set ($FilePath . ".conf.txt") contents=[ /system/script/get global-config-overlay source ]; + + :do { + /tool/fetch upload=yes url=($BackupUploadUrl . "/" . $FileName . ".conf") \ + user=$BackupUploadUser password=$BackupUploadPass src-path=($FilePath . ".conf.txt"); + :set ConfigFile ($FileName . ".conf"); + } on-error={ + $LogPrintExit2 error $0 ("Uploading global-config-overlay failed!") false; + :set ConfigFile "failed"; + :set Failed 1; + } + + /file/remove ($FilePath . ".conf.txt"); +} + $SendNotification2 ({ origin=$0; \ subject=[ $IfThenElse ($Failed > 0) \ ([ $SymbolForNotification "floppy-disk,warning-sign" ] . "Backup & Config upload with failure") \ @@ -100,6 +121,7 @@ $SendNotification2 ({ origin=$0; \ message=("Backup and config export upload for " . $Identity . ".\n\n" . \ [ $DeviceInfo ] . "\n\n" . \ "Backup file: " . $BackupFile . "\n" . \ + "Export file: " . $ExportFile . "\n" . \ "Config file: " . $ConfigFile); silent=true }); :if ($Failed = 1) do={ -- cgit v1.2.3-54-g00ecf From ba730708f57afa5343bd83d048b2b72d23f79ec1 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Tue, 7 Feb 2023 21:00:32 +0100 Subject: notify about backup for global-config-overlay --- global-config.changes | 1 + global-functions | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/global-config.changes b/global-config.changes index 33a340e..dd40f09 100644 --- a/global-config.changes +++ b/global-config.changes @@ -101,6 +101,7 @@ 90="Chat with your router! Introduced 'telegram-chat' to chat via Telegram bot and send commands to your router."; 91="Dropped check for CAP in 'check-routeros-update' to solve issues with wifiwave2 package."; 92="Made qr-code url configurable for 'daily-psk'."; + 93="Added support to backup global-config-overlay in 'backup-email' and 'backup-upload'."; }; # Migration steps to be applied on script updates diff --git a/global-functions b/global-functions index d2f911e..63ec636 100644 --- a/global-functions +++ b/global-functions @@ -12,7 +12,7 @@ :local 0 "global-functions"; # expected configuration version -:global ExpectedConfigVersion 92; +:global ExpectedConfigVersion 93; # global variables not to be changed by user :global GlobalFunctionsReady false; -- cgit v1.2.3-54-g00ecf