Fixed links to Borg documentation.
This commit is contained in:
parent
a938a2ad61
commit
5bffa35741
3 changed files with 5 additions and 4 deletions
1
NEWS
1
NEWS
|
@ -4,6 +4,7 @@
|
||||||
* Added support for --one-file-system for Borg.
|
* Added support for --one-file-system for Borg.
|
||||||
* Support borg create --umask.
|
* Support borg create --umask.
|
||||||
* Added support for file globs in source_directories.
|
* Added support for file globs in source_directories.
|
||||||
|
* Fixed links to Borg documentation.
|
||||||
|
|
||||||
0.1.7
|
0.1.7
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ title: Atticmatic
|
||||||
|
|
||||||
atticmatic is a simple Python wrapper script for the
|
atticmatic is a simple Python wrapper script for the
|
||||||
[Attic](https://attic-backup.org/) and
|
[Attic](https://attic-backup.org/) and
|
||||||
[Borg](https://borgbackup.github.io/borgbackup/) backup software that
|
[Borg](https://borgbackup.readthedocs.org/en/stable/) backup software that
|
||||||
initiates a backup, prunes any old backups according to a retention policy,
|
initiates a backup, prunes any old backups according to a retention policy,
|
||||||
and validates backups for consistency. The script supports specifying your
|
and validates backups for consistency. The script supports specifying your
|
||||||
settings in a declarative configuration file rather than having to put them
|
settings in a declarative configuration file rather than having to put them
|
||||||
|
|
|
@ -15,7 +15,7 @@ repository: user@backupserver:sourcehostname.attic
|
||||||
# were initialized with passphrase/repokey encryption.
|
# were initialized with passphrase/repokey encryption.
|
||||||
#encryption_passphrase: foo
|
#encryption_passphrase: foo
|
||||||
# For Borg only, you can specify the type of compression to use when creating
|
# 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
|
# archives. See https://borgbackup.readthedocs.org/en/stable/usage.html#borg-create
|
||||||
# for details. Defaults to no compression.
|
# for details. Defaults to no compression.
|
||||||
#compression: lz4
|
#compression: lz4
|
||||||
# For Borg only, you can specify the umask to be used for borg create.
|
# For Borg only, you can specify the umask to be used for borg create.
|
||||||
|
@ -24,7 +24,7 @@ repository: user@backupserver:sourcehostname.attic
|
||||||
[retention]
|
[retention]
|
||||||
# Retention policy for how many backups to keep in each category. See
|
# Retention policy for how many backups to keep in each category. See
|
||||||
# https://attic-backup.org/usage.html#attic-prune or
|
# https://attic-backup.org/usage.html#attic-prune or
|
||||||
# https://borgbackup.github.io/borgbackup/usage.html#borg-prune for details.
|
# https://borgbackup.readthedocs.org/en/stable/usage.html#borg-prune for details.
|
||||||
#keep_within: 3H
|
#keep_within: 3H
|
||||||
#keep_hourly: 24
|
#keep_hourly: 24
|
||||||
keep_daily: 7
|
keep_daily: 7
|
||||||
|
@ -37,7 +37,7 @@ keep_yearly: 1
|
||||||
# Space-separated list of consistency checks to run: "repository", "archives",
|
# Space-separated list of consistency checks to run: "repository", "archives",
|
||||||
# or both. Defaults to both. Set to "disabled" to disable all consistency
|
# or both. Defaults to both. Set to "disabled" to disable all consistency
|
||||||
# checks. See https://attic-backup.org/usage.html#attic-check or
|
# checks. See https://attic-backup.org/usage.html#attic-check or
|
||||||
# https://borgbackup.github.io/borgbackup/usage.html#borg-check for details.
|
# https://borgbackup.readthedocs.org/en/stable/usage.html#borg-check for details.
|
||||||
checks: repository archives
|
checks: repository archives
|
||||||
# For Borg only, you can restrict the number of checked archives to the last n.
|
# For Borg only, you can restrict the number of checked archives to the last n.
|
||||||
#check_last: 3
|
#check_last: 3
|
||||||
|
|
Loading…
Reference in a new issue