18 lines
511 B
Text
Executable file
18 lines
511 B
Text
Executable file
# where to mount the LVM snapshots
|
|
SNAPSHOTDIR="/tmp/snapshot"
|
|
|
|
# default number of backups that are kept, per path per host.
|
|
# will be overwritten by -k
|
|
KEEPLAST=7
|
|
|
|
# location of backup repository, hostname may be defined
|
|
# in .ssh/config
|
|
# at this location an initialized repository must exist
|
|
# (this can be done with `restic init`)
|
|
URI="sftp:backup:/backup"
|
|
|
|
# Password that was supplied to `restic init`
|
|
BACKUP_PASSWORD="Password"
|
|
|
|
# location of the static restic executable
|
|
RESTIC="/usr/local/bin/restic"
|