From 8b44964a36e5a5eebe70ab94eae6086bfbdbfb36 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Tue, 23 Feb 2021 09:56:12 +0100 Subject: email-backup: add configurable random delay --- email-backup | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'email-backup') diff --git a/email-backup b/email-backup index 129075a..b9e91c2 100644 --- a/email-backup +++ b/email-backup @@ -11,6 +11,7 @@ :while ($GlobalFunctionsReady != true) do={ :delay 500ms; } :global BackupPassword; +:global BackupRandomDelay; :global BackupSendBinary; :global BackupSendExport; :global Domain; @@ -21,11 +22,11 @@ :global CharacterReplace; :global DeviceInfo; :global LogPrintExit2; +:global RandomDelay; +:global ScriptFromTerminal; :global WaitForFile; :global WaitFullyConnected; -$WaitFullyConnected; - :if ($BackupSendBinary != true && \ $BackupSendExport != true) do={ $LogPrintExit2 error $0 ("Configured to send neither backup nor config export.") true; @@ -35,6 +36,12 @@ $WaitFullyConnected; $LogPrintExit2 error $0 ("Configuration is missing recipient for e-mail backup.") true; } +$WaitFullyConnected; + +:if ([ $ScriptFromTerminal $0 ] = false && $BackupRandomDelay > 0) do={ + $RandomDelay $BackupRandomDelay; +} + # filename based on identity :local FileName [ $CharacterReplace ($Identity . "." . $Domain) "." "_" ]; :local BackupFile "none"; -- cgit v1.2.3-54-g00ecf