mirror of
https://github.com/ViViDboarder/docker-duplicity-cron.git
synced 2024-11-14 17:56:31 +00:00
12 lines
187 B
Bash
Executable File
12 lines
187 B
Bash
Executable File
#! /bin/bash
|
|
set -e
|
|
|
|
duplicity restore \
|
|
--force \
|
|
--log-file /root/duplicity.log \
|
|
--name $BACKUP_NAME \
|
|
$OPT_ARGUMENTS \
|
|
$@ \
|
|
$BACKUP_DEST \
|
|
$PATH_TO_BACKUP
|