diff options
author | Joey Hess <joey@kitenet.net> | 2012-10-14 16:21:18 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-10-14 16:21:18 -0400 |
commit | 93cfaa354cc6acb554332fbd6aec0391e8b9327a (patch) | |
tree | bef6308c3dab27285e1d84257133533edb49a71e /Types/StandardGroups.hs | |
parent | dddad6181f3430f47656ff9e143cf1a0a9baddda (diff) |
logic error
Diffstat (limited to 'Types/StandardGroups.hs')
-rw-r--r-- | Types/StandardGroups.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Types/StandardGroups.hs b/Types/StandardGroups.hs index aeae200c2..1739c2059 100644 --- a/Types/StandardGroups.hs +++ b/Types/StandardGroups.hs @@ -32,6 +32,6 @@ descStandardGroup BackupGroup = "backup: collects all files" {- See doc/preferred_content.mdwn for explanations of these expressions. -} preferredContent :: StandardGroup -> String preferredContent ClientGroup = "exclude=*/archive/*" -preferredContent TransferGroup = "not (inallgroup=client or not copies=client:2) and " ++ preferredContent ClientGroup +preferredContent TransferGroup = "not (inallgroup=client and copies=client:2) and " ++ preferredContent ClientGroup preferredContent ArchiveGroup = "not copies=archive:1" preferredContent BackupGroup = "" -- all content is preferred |