aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2024-04-23 13:53:04 +0200
committerGravatar Christian Hesse <mail@eworm.de>2024-04-29 18:03:40 +0200
commit5f1656b7ce439e6567803299eaddca215e8cb7cf (patch)
treeeaec5e86526d5fa54350ca5e9fafe7c6d8bd53be
parent505074e6d333f9696eb1b2e6afc90a59a5e1e1d6 (diff)
backup-cloud: clean up and simplify code
-rw-r--r--backup-cloud.rsc10
1 files changed, 4 insertions, 6 deletions
diff --git a/backup-cloud.rsc b/backup-cloud.rsc
index 1085f05..bdc6c34 100644
--- a/backup-cloud.rsc
+++ b/backup-cloud.rsc
@@ -49,13 +49,11 @@
:execute {
:global BackupPassword;
- # we are not interested in output, but print is
- # required to fetch information from cloud
- /system/backup/cloud/print as-value;
- :delay 20ms;
- :if ([ :len [ /system/backup/cloud/find ] ] > 0) do={
+
+ :local Backup ([ /system/backup/cloud/find ]->0);
+ :if ([ :typeof $Backup ] = "id") do={
/system/backup/cloud/upload-file action=create-and-upload \
- password=$BackupPassword replace=[ get ([ find ]->0) name ];
+ password=$BackupPassword replace=$Backup;
} else={
/system/backup/cloud/upload-file action=create-and-upload \
password=$BackupPassword;