aboutsummaryrefslogtreecommitdiffstats
path: root/backup-cloud.rsc
diff options
context:
space:
mode:
Diffstat (limited to 'backup-cloud.rsc')
-rw-r--r--backup-cloud.rsc11
1 files changed, 5 insertions, 6 deletions
diff --git a/backup-cloud.rsc b/backup-cloud.rsc
index 859ddc7..003c702 100644
--- a/backup-cloud.rsc
+++ b/backup-cloud.rsc
@@ -49,14 +49,13 @@
:execute {
:global BackupPassword;
- # we are not interested in output, but print is
- # required to fetch information from cloud
- /system/backup/cloud/print as-value;
+
+ :local Backup ([ /system/backup/cloud/find ]->0);
/file/add name="tmpfs/backup-cloud/status";
- :delay 20ms;
- :if ([ :len [ /system/backup/cloud/find ] ] > 0) do={
+
+ :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;