dda-backup/infrastructure/docker/image/resources/file-functions.sh

59 lines
2.3 KiB
Bash
Raw Normal View History

2021-11-12 08:54:17 +00:00
#! /bin/bash
2020-12-31 14:05:56 +00:00
function init-file-repo() {
2021-11-12 08:54:17 +00:00
if [ -z ${CERTIFICATE_FILE} ];
then
restic -r ${RESTIC_REPOSITORY}/files -v init
2021-11-12 08:54:17 +00:00
else
restic -r ${RESTIC_REPOSITORY}/files -v init --cacert ${CERTIFICATE_FILE}
2021-11-12 08:54:17 +00:00
fi
}
2020-12-31 14:05:56 +00:00
2021-11-12 08:54:17 +00:00
# First arg is the directory, second is optional for the path to a certificate file
2020-12-31 14:05:56 +00:00
function backup-directory() {
local directory="$1"; shift
2021-11-12 08:54:17 +00:00
if [ -z ${CERTIFICATE_FILE} ];
then
restic -v -r ${RESTIC_REPOSITORY}/files unlock --cleanup-cache
cd ${directory} && restic -v -r ${RESTIC_REPOSITORY}/files backup .
restic -v -r ${RESTIC_REPOSITORY}/files forget --keep-last 1 --keep-within ${RESTIC_DAYS_TO_KEEP}d --prune
2021-11-12 08:54:17 +00:00
else
restic -v -r ${RESTIC_REPOSITORY}/files unlock --cleanup-cache --cacert ${CERTIFICATE_FILE}
cd ${directory} && restic -v -r ${RESTIC_REPOSITORY}/files backup . --cacert ${CERTIFICATE_FILE}
restic -v -r ${RESTIC_REPOSITORY}/files forget --keep-last 1 --keep-within ${RESTIC_DAYS_TO_KEEP}d --prune --cacert ${CERTIFICATE_FILE}
2021-11-12 08:54:17 +00:00
fi
2020-12-31 14:05:56 +00:00
}
# First arg is the directory, the remaining args are the sub-directories (relative to the first directory) to backup.
function backup-fs-from-directory() {
local directory="$1"; shift
2021-11-12 08:54:17 +00:00
if [ -z ${CERTIFICATE_FILE} ];
then
restic -v -r ${RESTIC_REPOSITORY}/files unlock --cleanup-cache
cd ${directory} && restic -v -r ${RESTIC_REPOSITORY}/files backup $@
restic -v -r ${RESTIC_REPOSITORY}/files forget --keep-last 1 --keep-within ${RESTIC_DAYS_TO_KEEP}d --prune
2021-11-12 08:54:17 +00:00
else
restic -v -r ${RESTIC_REPOSITORY}/files unlock --cleanup-cache --cacert ${CERTIFICATE_FILE}
cd ${directory} && restic -v -r ${RESTIC_REPOSITORY}/files backup $@ --cacert ${CERTIFICATE_FILE}
restic -v -r ${RESTIC_REPOSITORY}/files forget --keep-last 1 --keep-within ${RESTIC_DAYS_TO_KEEP}d --prune --cacert ${CERTIFICATE_FILE}
2021-11-12 08:54:17 +00:00
fi
}
2020-12-31 14:05:56 +00:00
function restore-directory() {
local directory="$1"; shift
2021-11-12 08:54:17 +00:00
if [ -z ${CERTIFICATE_FILE} ];
then
restic -v -r ${RESTIC_REPOSITORY}/files unlock --cleanup-cache
2021-11-12 08:54:17 +00:00
rm -rf ${directory}*
restic -v -r $RESTIC_REPOSITORY/files restore latest --target ${directory}
2021-11-12 08:54:17 +00:00
else
restic -v -r ${RESTIC_REPOSITORY}/files unlock --cleanup-cache --cacert ${CERTIFICATE_FILE}
2021-11-12 08:54:17 +00:00
rm -rf ${directory}*
restic -v -r $RESTIC_REPOSITORY/files restore latest --target ${directory} --cacert ${CERTIFICATE_FILE}
2021-11-12 08:54:17 +00:00
fi
2020-12-31 14:05:56 +00:00
}