mirror of
https://github.com/ViViDboarder/docker-restic-cron.git
synced 2024-11-15 01:36:37 +00:00
7e57f2ed0b
Switch to restic
12 lines
141 B
Bash
Executable File
12 lines
141 B
Bash
Executable File
#! /bin/bash
|
|
set -e
|
|
|
|
restore_snapshot=$1
|
|
|
|
restic \
|
|
-r $BACKUP_DEST \
|
|
$OPT_ARGUMENTS \
|
|
restore \
|
|
$restore_snapshot \
|
|
-t /
|