LibrePortal/scripts/backup/engine/kopia_restore.sh
librelad 875a60f90f LibrePortal v0.1.0 — initial release
A free, open, self-hosted app platform (GNU AGPLv3): one-click app deploys,
Traefik reverse proxy with automatic SSL, rootless Docker support, gluetun
VPN routing, and a web dashboard to manage it all.

Free & open forever to self-host; optional paid hosted services fund it.
See PROMISE.md.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

Signed-off-by: librelad <librelad@digitalangels.vip>
2026-05-21 20:37:54 +01:00

51 lines
1.6 KiB
Bash

#!/bin/bash
kopiaRestoreSnapshot()
{
local idx="$1"
local snapshot_id="$2"
local target_dir="$3"
local include_path="$4" # ignored — kopia restores by snapshot id directly
if [[ -z "$snapshot_id" || -z "$target_dir" ]]; then
isError "kopiaRestoreSnapshot requires snapshot_id and target_dir"
return 1
fi
kopiaEnvExport "$idx" || return 1
sudo mkdir -p "$target_dir"
isNotice "Restoring ${snapshot_id:0:12} from $(resticLocationName "$idx")$target_dir"
# Kopia's restore lays down the snapshot's source tree relative to target.
# If include_path was given (we always pass /docker/containers/<app>), we
# nest into that subpath under target so it matches restic's behaviour.
local final_target="$target_dir"
if [[ -n "$include_path" ]]; then
final_target="$target_dir/${include_path#/}"
sudo mkdir -p "$final_target"
fi
sudo -E -u "$docker_install_user" kopia snapshot restore "$snapshot_id" "$final_target"
local rc=$?
kopiaEnvUnset
return $rc
}
kopiaDumpFile()
{
local idx="$1"
local snapshot_id="$2"
local file_path="$3"
local target_file="$4"
kopiaEnvExport "$idx" || return 1
# `kopia show` writes the file contents from a snapshot to stdout.
if [[ -n "$target_file" ]]; then
sudo -E -u "$docker_install_user" kopia show "${snapshot_id}:${file_path}" | sudo tee "$target_file" >/dev/null
else
sudo -E -u "$docker_install_user" kopia show "${snapshot_id}:${file_path}"
fi
local rc=$?
kopiaEnvUnset
return $rc
}