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