diff options
author | Joey Hess <joey@kitenet.net> | 2013-04-02 23:40:13 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-04-02 23:40:13 -0400 |
commit | c72aae3c2d4b8583ceffc4cb0f35ce21f4d2aa08 (patch) | |
tree | ba50951f110604a7351bc3286bb9e6b2b8ceb427 /doc | |
parent | 6915e1f9087aa19e99552af5304c6ef86f996c0f (diff) |
fix preferred content check for 1 semitrusted or better copy
Let's make semitrusted+:1 mean that, since it cannot be expressed easily
with the current syntax (could use (semitrusted:1 or trusted:1), but that
does not scale to higher values than 2 copy, and also fails if I add more
trust levels).
Thanks to Andy for spotting this bug by just reading my blog.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/git-annex.mdwn | 3 | ||||
-rw-r--r-- | doc/preferred_content.mdwn | 12 |
2 files changed, 9 insertions, 6 deletions
diff --git a/doc/git-annex.mdwn b/doc/git-annex.mdwn index 2e8efa95d..2f4bb5cdb 100644 --- a/doc/git-annex.mdwn +++ b/doc/git-annex.mdwn @@ -688,6 +688,9 @@ file contents are present at either of two repositories. copies, on remotes with the specified trust level. For example, "--copies=trusted:2" + To match any trust level at or higher than a given level, use + 'trustlevel+'. For example, "--copies=semitrusted+:2" + * --copies=groupname:number Matches only files that git-annex believes have the specified number of diff --git a/doc/preferred_content.mdwn b/doc/preferred_content.mdwn index f8f937e4a..f8fd29c9d 100644 --- a/doc/preferred_content.mdwn +++ b/doc/preferred_content.mdwn @@ -88,7 +88,7 @@ any repository that can will back it up.) All content is preferred, unless it's in a "archive" directory. -`(exclude=*/archive/* and exclude=archive/*) or (not copies=semitrusted:1)` +`(exclude=*/archive/* and exclude=archive/*) or (not copies=semitrusted+:1)` ### transfer @@ -100,7 +100,7 @@ USB drive used in a sneakernet. The preferred content expression for these causes them to get and retain data until all clients have a copy. -`(not (inallgroup=client and copies=client:2) and exclude=*/archive/* and exclude=archive/*) or (not copies=semitrusted:1)` +`(not (inallgroup=client and copies=client:2) and exclude=*/archive/* and exclude=archive/*) or (not copies=semitrusted+:1)` The "copies=client:2" part of the above handles the case where there is only one client repository. It makes a transfer repository @@ -119,20 +119,20 @@ All content is preferred. Only prefers content that's not already backed up to another backup or incremental backup repository. -`(include=* and (not copies=backup:1) and (not copies=incrementalbackup:1)) or (not copies=semitrusted:1)` +`(include=* and (not copies=backup:1) and (not copies=incrementalbackup:1)) or (not copies=semitrusted+:1)` ### small archive Only prefers content that's located in an "archive" directory, and only if it's not already been archived somewhere else. -`((include=*/archive/* or include=archive/*) and not (copies=archive:1 or copies=smallarchive:1)) or (not copies=semitrusted:1)` +`((include=*/archive/* or include=archive/*) and not (copies=archive:1 or copies=smallarchive:1)) or (not copies=semitrusted+:1)` ### full archive All content is preferred, unless it's already been archived somewhere else. -`(not (copies=archive:1 or copies=smallarchive:1)) or (not copies=semitrusted:1)` +`(not (copies=archive:1 or copies=smallarchive:1)) or (not copies=semitrusted+:1)` Note that if you want to archive multiple copies (not a bad idea!), you should instead configure all your archive repositories with a @@ -160,7 +160,7 @@ local copy of every file. Instead, you can manually run `git annex get`, Only content that is present is preferred. Content in "archive" directories is never preferred. -`(present and exclude=*/archive/* and exclude=archive/*) or (not copies=semitrusted:1)` +`(present and exclude=*/archive/* and exclude=archive/*) or (not copies=semitrusted+:1)` ### unwanted |