c4k-forgejo/infrastructure/backup/image/resources/restic-snapshots.sh

17 lines
309 B
Bash
Raw Normal View History

2022-08-19 09:59:04 +00:00
#!/bin/bash
2023-11-03 10:13:23 +00:00
set -eux pipefail
2022-08-19 09:59:04 +00:00
function main() {
file_env AWS_ACCESS_KEY_ID
file_env AWS_SECRET_ACCESS_KEY
restic -r ${RESTIC_REPOSITORY}/files snapshots
2022-09-16 13:23:25 +00:00
restic -r ${RESTIC_REPOSITORY}/pg-database snapshots
2022-08-19 09:59:04 +00:00
}
source /usr/local/lib/functions.sh
source /usr/local/lib/file-functions.sh
main