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.
7 lines
174 B
Bash
7 lines
174 B
Bash
8 months ago
|
#!/bin/bash
|
||
|
|
||
|
restic backup --verbose \
|
||
|
--tag "${RESTIC_TAG_01}" --tag "${RESTIC_TAG_02}" \
|
||
|
--exclude-caches \
|
||
|
--exclude-file="${RESTIC_EXCLUDES}" \
|
||
|
"${RESTIC_SOURCE}"
|