mirror of
https://github.com/ViViDboarder/docker-restic-cron.git
synced 2024-11-05 12:56:37 +00:00
11 lines
165 B
Bash
11 lines
165 B
Bash
|
#! /bin/bash
|
||
|
set -e
|
||
|
|
||
|
duplicity restore \
|
||
|
--log-file /root/duplicity.log \
|
||
|
--name $BACKUP_NAME \
|
||
|
$OPT_ARGUMENTS \
|
||
|
$BACKUP_DEST \
|
||
|
$PATH_TO_BACKUP
|
||
|
|