mirror of
https://github.com/ViViDboarder/docker-duplicity-cron.git
synced 2024-11-23 18:26:31 +00:00
13 lines
263 B
Bash
Executable File
13 lines
263 B
Bash
Executable File
#! /bin/bash
|
|
set -euf
|
|
|
|
# Intentionally not wrapping OPT_ARGUMENTS
|
|
# shellcheck disable=SC2086
|
|
duplicity verify \
|
|
--compare-data \
|
|
--log-file /root/duplicity.log \
|
|
--name "$BACKUP_NAME" \
|
|
$OPT_ARGUMENTS \
|
|
"$BACKUP_DEST" \
|
|
"$PATH_TO_BACKUP"
|