123456789101112131415161718192021222324252627282930313233343536 |
- [location]
- # Space-separated list of source directories to backup.
- source_directories: /home /etc
- # Path to local or remote repository.
- repository: user@backupserver:sourcehostname.attic
- [storage]
- # Passphrase to unlock the encryption key with. Only use on repositories that
- # were initialized with passphrase/repokey encryption.
- #encryption_passphrase: foo
- # For Borg only, you can specify the type of compression to use when creating
- # archives. See https://borgbackup.github.io/borgbackup/usage.html#borg-create
- # for details. Defaults to no compression.
- #compression: lz4
- [retention]
- # Retention policy for how many backups to keep in each category. See
- # https://attic-backup.org/usage.html#attic-prune or
- # https://borgbackup.github.io/borgbackup/usage.html#borg-prune for details.
- #keep_within: 3H
- #keep_hourly: 24
- keep_daily: 7
- keep_weekly: 4
- keep_monthly: 6
- keep_yearly: 1
- #prefix: sourcehostname
- [consistency]
- # Space-separated list of consistency checks to run: "repository", "archives",
- # or both. Defaults to both. Set to "disabled" to disable all consistency
- # checks. See https://attic-backup.org/usage.html#attic-check or
- # https://borgbackup.github.io/borgbackup/usage.html#borg-check for details.
- checks: repository archives
- # For Borg only, you can restrict the number of checked archives to the last n.
- #check_last: 3
|