aboutsummaryrefslogtreecommitdiffstats
path: root/email-backup
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2021-02-23 09:56:12 +0100
committerGravatar Christian Hesse <mail@eworm.de>2021-02-24 21:51:56 +0100
commit8b44964a36e5a5eebe70ab94eae6086bfbdbfb36 (patch)
tree5b4688ddbf3ed7aadb68fd0c51f87a595ff66b53 /email-backup
parent6770a15a7d1df1ef5f2cc0a6f82e0d4f82b214d6 (diff)
email-backup: add configurable random delay
Diffstat (limited to 'email-backup')
-rw-r--r--email-backup11
1 files changed, 9 insertions, 2 deletions
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";