You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
708 B
Bash
23 lines
708 B
Bash
#!/bin/bash
|
|
|
|
if [ AWS_RESTIC_BACKUP = 'no' ]; then
|
|
restic backup --verbose \
|
|
--tag "${RESTIC_TAG_01}" --tag "${RESTIC_TAG_02}" \
|
|
--exclude-caches \
|
|
--exclude-file="${RESTIC_EXCLUDES}" \
|
|
--exclude "${SCRIPT_DIR}"/variables.sh \
|
|
--exclude "${SCRIPT_DIR}"/variablesAWS.sh \
|
|
"${RESTIC_SOURCE}"
|
|
fi
|
|
|
|
if [ AWS_RESTIC_BACKUP = 'yes' ]; then
|
|
restic backup --verbose \
|
|
--tag "${RESTIC_TAG_01}" --tag "${RESTIC_TAG_02}" \
|
|
--exclude-caches \
|
|
--exclude-file="${RESTIC_EXCLUDES}" \
|
|
--exclude "${SCRIPT_DIR}"/variables.sh \
|
|
--exclude "${SCRIPT_DIR}"/variablesAWS.sh \
|
|
-o s3.connections="${AWS_CONNECTIONS}" \
|
|
--limit-upload "${AWS_UPLOAD}" \
|
|
"${RESTIC_SOURCE}"
|
|
fi |