Fix forget command in example
This commit is contained in:
parent
6072a1298a
commit
7423cdd0a8
1 changed files with 3 additions and 3 deletions
|
@ -3,10 +3,10 @@
|
||||||
# pre action or use ExecStartPre
|
# pre action or use ExecStartPre
|
||||||
|
|
||||||
/usr/bin/restic backup \
|
/usr/bin/restic backup \
|
||||||
"${RESTIC_ADDITIONAL_CREATE_PARAMS}" \
|
$(echo $RESTIC_ADDITIONAL_CREATE_PARAMS) \
|
||||||
--exclude-file "${RESTIC_FILE_EXCLUDE}" \
|
--exclude-file "${RESTIC_FILE_EXCLUDE}" \
|
||||||
--files-from "${RESTIC_FILE_INCLUDE}"
|
--files-from "${RESTIC_FILE_INCLUDE}"
|
||||||
|
|
||||||
/usr/bin/restic forget "${RESTIC_KEEP}"
|
/usr/bin/restic forget $(echo $RESTIC_KEEP)
|
||||||
|
|
||||||
# post action or adapt ExecStartPost
|
# post action or adapt ExecStartPost
|
Loading…
Reference in a new issue