18 lines
360 B
Bash
18 lines
360 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -o pipefail
|
||
|
|
||
|
function main() {
|
||
|
file_env AWS_ACCESS_KEY_ID
|
||
|
file_env AWS_SECRET_ACCESS_KEY
|
||
|
|
||
|
restic -r ${RESTIC_REPOSITORY}/pg-role snapshots
|
||
|
restic -r ${RESTIC_REPOSITORY}/pg-database snapshots
|
||
|
restic -r ${RESTIC_REPOSITORY}/files snapshots
|
||
|
}
|
||
|
|
||
|
source /usr/local/lib/functions.sh
|
||
|
source /usr/local/lib/file-functions.sh
|
||
|
|
||
|
main
|