summaryrefslogtreecommitdiff
path: root/src/Propellor/Property/Rsync.hs
diff options
context:
space:
mode:
authorJoey Hess2017-07-29 20:02:49 -0400
committerJoey Hess2017-07-29 20:02:49 -0400
commit7c82cb564358f8623ea584f5bea1c17b8ac29e38 (patch)
treeedd9042cc8efffdfd771bddb24e31ea8d9980084 /src/Propellor/Property/Rsync.hs
parent4654d93aea404afe312318468be89ae6d3198555 (diff)
Rsync: Make rsync display less verbose.
Diffstat (limited to 'src/Propellor/Property/Rsync.hs')
-rw-r--r--src/Propellor/Property/Rsync.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Property/Rsync.hs b/src/Propellor/Property/Rsync.hs
index c7ff3287..d922e79f 100644
--- a/src/Propellor/Property/Rsync.hs
+++ b/src/Propellor/Property/Rsync.hs
@@ -46,7 +46,7 @@ newtype Pattern = Pattern String
-- is found, the file is processed.
syncDirFiltered :: [Filter] -> Src -> Dest -> Property (DebianLike + ArchLinux)
syncDirFiltered filters src dest = rsync $
- [ "-av"
+ [ "-a"
-- Add trailing '/' to get rsync to sync the Dest directory,
-- rather than a subdir inside it, which it will do without a
-- trailing '/'.