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..38e9433 --- /dev/null +++ b/restic_summary @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +for svc in dovecot consul plume cryptpad; 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 |