changed env.sample.sh
This commit is contained in:
parent
1a6bdac9ee
commit
10893e1d5f
1 changed files with 13 additions and 6 deletions
|
@ -1,10 +1,17 @@
|
||||||
NAME=Backup Name
|
# Name your backup (only really for logging purposes)
|
||||||
BACKUP_DIR=/dir/to/back/up
|
NAME="Backup Name"
|
||||||
|
# The directory to back up
|
||||||
|
BACKUP_DIR="/dir/to/back/up"
|
||||||
|
# any additional params you want with restic
|
||||||
BACKUP_PARAMS=""
|
BACKUP_PARAMS=""
|
||||||
BACKUP_EXCLUDE_FILE="exclusions.txt"
|
# an exclude file, generally I use "exclusions.txt" that's ignored by git
|
||||||
HEALTHCHECK_UUID="healthchecks.io uuid"
|
BACKUP_EXCLUDE_FILE=""
|
||||||
PRE_RUN_SCRIPT="pre/"
|
# https://healthchecks.io uuid
|
||||||
POST_RUN_SCRIPT="post/"
|
HEALTHCHECK_UUID=""
|
||||||
|
# name of a script to run before (ideally in the "pre/" dir)
|
||||||
|
PRE_RUN_SCRIPT=""
|
||||||
|
# name of a script to run after (ideally in the "post/" dir)
|
||||||
|
POST_RUN_SCRIPT=""
|
||||||
|
|
||||||
|
|
||||||
export AWS_ACCESS_KEY_ID=
|
export AWS_ACCESS_KEY_ID=
|
||||||
|
|
Loading…
Reference in a new issue