From d45949b028e1f62fe8c746f0b79e66c3cbd0b8b5 Mon Sep 17 00:00:00 2001 From: Jeremy Seitz Date: Sun, 6 Jun 2021 14:27:26 +0200 Subject: [PATCH] correction to B2 config in the example This example was missing the `env:` block in YAML, which if missing, caused `autorestic check` to compain: ``` * 'Backends[remote]' has invalid keys: b2_account_id, b2_account_key``` --- docs/markdown/config.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/markdown/config.md b/docs/markdown/config.md index 1e8f0b3..61a50ac 100644 --- a/docs/markdown/config.md +++ b/docs/markdown/config.md @@ -31,8 +31,9 @@ backends: remote: type: b2 path: 'myBucket:backup/home' - B2_ACCOUNT_ID: account_id - B2_ACCOUNT_KEY: account_key + env: + B2_ACCOUNT_ID: account_id + B2_ACCOUNT_KEY: account_key hdd: type: local