From 9fa01a10f71b9245e980eb3349f15cb0cfd53d2d Mon Sep 17 00:00:00 2001 From: Patrick Decat Date: Sat, 23 Jul 2022 18:40:31 +0200 Subject: [PATCH] Fix instructions for using multiple profiles (#97) Systemd service sources `$INSTALL_PREFIX/etc/restic/%I.env.sh`: https://github.com/erikw/restic-automatic-backup-scheduler/blob/main/usr/lib/systemd/system/restic-backup%40.service#L16 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9b883b4..ca89418 100644 --- a/README.md +++ b/README.md @@ -434,8 +434,8 @@ To have different backup jobs having e.g. different buckets, backup path of sche To create a different backup and use you can do: ```console # cp /etc/restic/default.env.sh /etc/restic/other.env.sh -# vim /etc/restic/default.other.sh # Set backup path, bucket etc. -# source /etc/restic/default.other.sh +# vim /etc/restic/other.env.sh # Set backup path, bucket etc. +# source /etc/restic/other.env.sh # restic_backup.sh ```