diff --git a/management/templates/system-backup.html b/management/templates/system-backup.html index 13367f6d..0db9a694 100644 --- a/management/templates/system-backup.html +++ b/management/templates/system-backup.html @@ -109,7 +109,7 @@

Backups are stored in an B2Blaze bucket. You must have an B2Blaze account already.

-

You MUST manually copy the encryption password from to a safe and secure location. You will need this file to decrypt backup files. It is NOT stored in your Amazon S3 bucket.

+

You MUST manually copy the encryption password from to a safe and secure location. You will need this file to decrypt backup files. It is NOT stored in your B2Blaze bucket.

@@ -131,7 +131,7 @@
-
+
@@ -281,6 +281,9 @@ function set_custom_backup() { target = target_type; else if (target_type == "s3") target = "s3://" + $("#backup-target-s3-host").val() + "/" + $("#backup-target-s3-path").val(); + else if (target_type == "b2") + target = "b2://" + $("#backup-target-b2-user").val() + ":" + + $("#backup-target-b2-pass").val() + "@" + $("#backup-target-b2-path"); else if (target_type == "rsync") { target = "rsync://" + $("#backup-target-rsync-user").val() + "@" + $("#backup-target-rsync-host").val() + "/" + $("#backup-target-rsync-path").val();