Browse Source

Fixed links to Borg documentation.

Dan Helfman 9 years ago
parent
commit
5bffa35741
3 changed files with 5 additions and 4 deletions
  1. 1 0
      NEWS
  2. 1 1
      README.md
  3. 3 3
      sample/config

+ 1 - 0
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
 

+ 1 - 1
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

+ 3 - 3
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