You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
c4k-jira/infrastructure/docker-backup/image/resources/restore.sh

22 lines
442 B
Bash

#!/bin/bash
set -eux pipefail
function main() {
file_env AWS_ACCESS_KEY_ID
file_env AWS_SECRET_ACCESS_KEY
# Restore latest snapshot into /var/backups/restore
rm -rf /var/backups/restore
restore-directory '/var/backups/restore'
cp /var/backups/restore/export/*.zip /var/backups/import/
chown 901:901 /var/backups/import/*.zip
}
source /usr/local/lib/functions.sh
source /usr/local/lib/file-functions.sh
main