Added ability to limit AWS upload speed and connections
parent
d56eae2e3b
commit
815d878c03
@ -1,9 +1,23 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
restic backup --verbose \
|
if [ AWS_RESTIC_BACKUP = 'no' ]; then
|
||||||
--tag "${RESTIC_TAG_01}" --tag "${RESTIC_TAG_02}" \
|
restic backup --verbose \
|
||||||
--exclude-caches \
|
--tag "${RESTIC_TAG_01}" --tag "${RESTIC_TAG_02}" \
|
||||||
--exclude-file="${RESTIC_EXCLUDES}" \
|
--exclude-caches \
|
||||||
--exclude "${SCRIPT_DIR}"/variables.sh \
|
--exclude-file="${RESTIC_EXCLUDES}" \
|
||||||
--exclude "${SCRIPT_DIR}"/variablesAWS.sh \
|
--exclude "${SCRIPT_DIR}"/variables.sh \
|
||||||
"${RESTIC_SOURCE}"
|
--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
|
Loading…
Reference in New Issue