system-helpers/usr/share/doc/dotfiles-system/restic/mybackup/env

19 lines
526 B
Text
Raw Normal View History

2022-06-04 23:09:23 +00:00
# If you're using sftp with a special key, it's recommended to set an
# alias for the specific host and use it in the repository name
#
# ~/.ssh/config
# Host restic-mybackup
# HostName 192.168.1.2
# Port 22
# User backup
# IdentityFile ~/.ssh/backup
RESTIC_CACHE_DIR="..."
RESTIC_PASSWORD="..."
#RESTIC_REPOSITORY="sftp://restic-mybackup//my/remote/path"
RESTIC_REPOSITORY="..."
RESTIC_KEEP="--keep-daily 7 --keep-weekly 4 --keep-monthly 3"
# advanced parameters
2022-06-13 14:59:55 +00:00
RESTIC_ADDITIONAL_CREATE_PARAMS="--one-file-system"