blob: af0751c527e9d45a6c9309e0025dbbb22a3c2979 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#
# resticctl configuration
#
# BACKUP_LOCATIONS, an array of locations you want to include in the backup
BACKUP_LOCATIONS=("/boot"
"/etc"
"/home"
"/opt"
"/root"
"/srv"
"/var")
# FORGET_FLAGS, an array of options you want to use with restic forget
FORGET_FLAGS=("--keep-tag important"
"--keep-tag keep"
"--keep-tag reinstall"
"--keep-hourly 72"
"--keep-daily 60"
"--keep-weekly 52"
"--keep-monthly 60"
"--keep-yearly 100")
#
# restic environment variables (any variable can be defined)
#
#AWS_ACCESS_KEY_ID= 1abd7178-a347-4b92-9021-ac5a41cb872f
#AWS_SECRET_ACCESS_KEY=a2b13a75-8065-4b20-887b-4f6d6f5d494e
#RESTIC_CACHE_DIR=/var/cache/restic
RESTIC_REPOSITORY=
RESTIC_PASSWORD=
#
# other environment variables, for example rclone variables to use it as
# restic helper, see:
# https://restic.readthedocs.io/en/stable/030_preparing_a_new_repo.html#other-services-via-rclone
#
#RCLONE_CACHE_DIR=/var/cache/rclone
#RCLONE_CONFIG=/etc/resticctl/rclone.conf
|