diff options
Diffstat (limited to 'restic-summary')
-rwxr-xr-x | restic-summary | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/restic-summary b/restic-summary new file mode 100755 index 0000000..f9295ba --- /dev/null +++ b/restic-summary @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +for svc in dovecot consul plume; do + export RESTIC_REPOSITORY=`pass deuxfleurs/backups/$svc/restic_repository` + export RESTIC_PASSWORD=`pass deuxfleurs/backups/$svc/restic_password` + export AWS_ACCESS_KEY_ID=`pass deuxfleurs/backups/$svc/aws_s3_access_key` + export AWS_SECRET_ACCESS_KEY=`pass deuxfleurs/backups/$svc/aws_s3_secret_key` + restic unlock + restic snapshots +done |