From 22628ba5d470f221d95a952d339fb010514061c4 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Fri, 19 Aug 2022 12:00:40 -0700 Subject: [PATCH] Update ssh:// examples in documentation to use relative paths on the remote machine (#557). --- README.md | 4 ++-- .../backup-to-a-removable-drive-or-an-intermittent-server.md | 2 +- docs/how-to/make-backups-redundant.md | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c8ffd7e44..05d4d9bf4 100644 --- a/README.md +++ b/README.md @@ -24,8 +24,8 @@ location: # Paths of local or remote repositories to backup to. repositories: - - ssh://1234@usw-s001.rsync.net/backups.borg - - ssh://k8pDxu32@k8pDxu32.repo.borgbase.com/repo + - ssh://1234@usw-s001.rsync.net/./backups.borg + - ssh://k8pDxu32@k8pDxu32.repo.borgbase.com/./repo - /var/lib/backups/local.borg retention: diff --git a/docs/how-to/backup-to-a-removable-drive-or-an-intermittent-server.md b/docs/how-to/backup-to-a-removable-drive-or-an-intermittent-server.md index f84fcf49e..689284baa 100644 --- a/docs/how-to/backup-to-a-removable-drive-or-an-intermittent-server.md +++ b/docs/how-to/backup-to-a-removable-drive-or-an-intermittent-server.md @@ -76,7 +76,7 @@ location: - /home repositories: - - ssh://me@buddys-server.org/backup.borg + - ssh://me@buddys-server.org/./backup.borg hooks: before_backup: diff --git a/docs/how-to/make-backups-redundant.md b/docs/how-to/make-backups-redundant.md index 650270b8f..5ad13ee0c 100644 --- a/docs/how-to/make-backups-redundant.md +++ b/docs/how-to/make-backups-redundant.md @@ -20,8 +20,8 @@ location: # Paths of local or remote repositories to backup to. repositories: - - ssh://1234@usw-s001.rsync.net/backups.borg - - ssh://k8pDxu32@k8pDxu32.repo.borgbase.com/repo + - ssh://1234@usw-s001.rsync.net/./backups.borg + - ssh://k8pDxu32@k8pDxu32.repo.borgbase.com/./repo - /var/lib/backups/local.borg ```