You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
310 B
13 lines
310 B
#!/bin/bash
|
|
|
|
set -Eeuo pipefail
|
|
|
|
export PATH="/opt/restic/bin:$PATH"
|
|
. /opt/restic/etc/restic.conf
|
|
|
|
if [ -f /opt/restic/etc/excludes.txt ]; then
|
|
RESTIC_OPTIONS+=("--exclude-file=/opt/restic/etc/excludes.txt")
|
|
fi
|
|
|
|
echo "Starting a backup..."
|
|
restic backup "${RESTIC_OPTIONS[@]}" "${RESTIC_TARGETS[@]}" "$@"
|
|
|