Thomas Waldmann 8 anni fa
parent
commit
5de31f57e5
2 ha cambiato i file con 7 aggiunte e 3 eliminazioni
  1. 5 3
      docs/usage/create.rst.inc
  2. 2 0
      docs/usage/prune.rst.inc

+ 5 - 3
docs/usage/create.rst.inc

@@ -12,7 +12,7 @@ borg create
                        [--filter STATUSCHARS] [-e PATTERN]
                        [--filter STATUSCHARS] [-e PATTERN]
                        [--exclude-from EXCLUDEFILE] [--exclude-caches]
                        [--exclude-from EXCLUDEFILE] [--exclude-caches]
                        [--exclude-if-present FILENAME] [--keep-tag-files]
                        [--exclude-if-present FILENAME] [--keep-tag-files]
-                       [-c SECONDS] [-x] [--numeric-owner]
+                       [-c SECONDS] [-x] [--numeric-owner] [--noatime] [--noctime]
                        [--timestamp yyyy-mm-ddThh:mm:ss]
                        [--timestamp yyyy-mm-ddThh:mm:ss]
                        [--chunker-params CHUNK_MIN_EXP,CHUNK_MAX_EXP,HASH_MASK_BITS,HASH_WINDOW_SIZE]
                        [--chunker-params CHUNK_MIN_EXP,CHUNK_MAX_EXP,HASH_MASK_BITS,HASH_WINDOW_SIZE]
                        [--ignore-inode] [-C COMPRESSION] [--read-special] [-n]
                        [--ignore-inode] [-C COMPRESSION] [--read-special] [-n]
@@ -60,6 +60,8 @@ borg create
       -x, --one-file-system
       -x, --one-file-system
                             stay in same file system, do not cross mount points
                             stay in same file system, do not cross mount points
       --numeric-owner       only store numeric user and group identifiers
       --numeric-owner       only store numeric user and group identifiers
+      --noatime             do not store atime into archive
+      --noctime             do not store ctime into archive
       --timestamp yyyy-mm-ddThh:mm:ss
       --timestamp yyyy-mm-ddThh:mm:ss
                             manually specify the archive creation date/time (UTC).
                             manually specify the archive creation date/time (UTC).
                             alternatively, give a reference file/directory.
                             alternatively, give a reference file/directory.
@@ -89,8 +91,8 @@ The archive name needs to be unique. It must not end in '.checkpoint' or
 '.checkpoint.N' (with N being a number), because these names are used for
 '.checkpoint.N' (with N being a number), because these names are used for
 checkpoints and treated in special ways.
 checkpoints and treated in special ways.
 
 
-In the archive name, you may use the following format tags:
-{now}, {utcnow}, {fqdn}, {hostname}, {user}, {pid}, {borgversion}
+In the archive name, you may use the following placeholders:
+{now}, {utcnow}, {fqdn}, {hostname}, {user} and some others.
 
 
 To speed up pulling backups over sshfs and similar network file systems which do
 To speed up pulling backups over sshfs and similar network file systems which do
 not provide correct inode information the --ignore-inode flag can be used. This
 not provide correct inode information the --ignore-inode flag can be used. This

+ 2 - 0
docs/usage/prune.rst.inc

@@ -76,3 +76,5 @@ If a prefix is set with -P, then only archives that start with the prefix are
 considered for deletion and only those archives count towards the totals
 considered for deletion and only those archives count towards the totals
 specified by the rules.
 specified by the rules.
 Otherwise, *all* archives in the repository are candidates for deletion!
 Otherwise, *all* archives in the repository are candidates for deletion!
+There is no automatic distinction between archives representing different
+contents. These need to be distinguished by specifying matching prefixes.