diff --git a/NEWS b/NEWS index 77042d95..a2e7afa4 100644 --- a/NEWS +++ b/NEWS @@ -4,6 +4,7 @@ * Added support for --one-file-system for Borg. * Support borg create --umask. * Added support for file globs in source_directories. + * Fixed links to Borg documentation. 0.1.7 diff --git a/README.md b/README.md index febacf0e..aef10786 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ title: Atticmatic atticmatic is a simple Python wrapper script for the [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, and validates backups for consistency. The script supports specifying your settings in a declarative configuration file rather than having to put them diff --git a/sample/config b/sample/config index e6813767..5a4c2e2d 100644 --- a/sample/config +++ b/sample/config @@ -15,7 +15,7 @@ repository: user@backupserver:sourcehostname.attic # 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 +# archives. See https://borgbackup.readthedocs.org/en/stable/usage.html#borg-create # for details. Defaults to no compression. #compression: lz4 # 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 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. +# https://borgbackup.readthedocs.org/en/stable/usage.html#borg-prune for details. #keep_within: 3H #keep_hourly: 24 keep_daily: 7 @@ -37,7 +37,7 @@ keep_yearly: 1 # 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. +# https://borgbackup.readthedocs.org/en/stable/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