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

72 lines
2.2 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
local command="restic -r ${RESTIC_REPOSITORY}/files -v init"
2020-12-31 14:05:56 +00:00
2021-11-12 08:54:17 +00:00
if [ -z ${CERTIFICATE_FILE} ];
then
${command} --cacert ${CERTIFICATE_FILE}
else
${command}
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
local command-unlock="restic -v -r ${RESTIC_REPOSITORY}/files unlock --cleanup-cache"
local command-backup="cd ${directory} && restic -v -r ${RESTIC_REPOSITORY}/files backup ."
local command-forget="restic -v -r ${RESTIC_REPOSITORY}/files forget --keep-last 1 --keep-within ${RESTIC_DAYS_TO_KEEP}d --prune"
2020-12-31 14:05:56 +00:00
2021-11-12 08:54:17 +00:00
if [ -z ${CERTIFICATE_FILE} ];
then
${command-unlock} --cacert ${CERTIFICATE_FILE}
${command-backup} --cacert ${CERTIFICATE_FILE}
${command-forget} --cacert ${CERTIFICATE_FILE}
else
${command-unlock}
${command-backup}
${command-forget}
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
local command-unlock="restic -v -r ${RESTIC_REPOSITORY}/files unlock --cleanup-cache"
local command-backup="cd ${directory} && restic -v -r ${RESTIC_REPOSITORY}/files backup $@"
local command-forget="restic -v -r ${RESTIC_REPOSITORY}/files forget --keep-last 1 --keep-within ${RESTIC_DAYS_TO_KEEP}d --prune"
if [ -z ${CERTIFICATE_FILE} ];
then
${command-unlock} --cacert ${CERTIFICATE_FILE}
${command-backup} --cacert ${CERTIFICATE_FILE}
${command-forget} --cacert ${CERTIFICATE_FILE}
else
${command-unlock}
${command-backup}
${command-forget}
fi
}
2020-12-31 14:05:56 +00:00
function restore-directory() {
local directory="$1"; shift
2021-11-12 08:54:17 +00:00
local command-unlock="restic -v -r ${RESTIC_REPOSITORY}/files unlock --cleanup-cache"
local command-restore="restic -v -r $RESTIC_REPOSITORY/files restore latest --target ${directory}"
2020-12-31 14:05:56 +00:00
2021-11-12 08:54:17 +00:00
if [ -z ${CERTIFICATE_FILE} ];
then
${command-unlock} --cacert ${CERTIFICATE_FILE}
rm -rf ${directory}*
${command-restore} --cacert ${CERTIFICATE_FILE}
else
${command-unlock}
rm -rf ${directory}*
${command-restore}
fi
2020-12-31 14:05:56 +00:00
}