summaryrefslogtreecommitdiff
path: root/src/Propellor/Property/Rsync.hs
diff options
context:
space:
mode:
authorJoey Hess2017-07-29 14:06:28 -0400
committerJoey Hess2017-07-29 14:06:28 -0400
commit0946286c8afa9ed140b5636f87fdf5d9530fb954 (patch)
tree1d0a14ac1025ed47317f4c15e5f1403fc8f94902 /src/Propellor/Property/Rsync.hs
parenteabcd5d985581c87273337783343928be63ff89c (diff)
Rsync: Make rsync display its progress, in a minimal format to avoid scrolling each file down the screen.
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 5665ab91..c7ff3287 100644
--- a/src/Propellor/Property/Rsync.hs
+++ b/src/Propellor/Property/Rsync.hs
@@ -54,7 +54,7 @@ syncDirFiltered filters src dest = rsync $
, addTrailingPathSeparator dest
, "--delete"
, "--delete-excluded"
- , "--quiet"
+ , "--info=progress2"
] ++ map toRsync filters
rsync :: [String] -> Property (DebianLike + ArchLinux)