diff options
| -rw-r--r-- | debian/changelog | 6 | ||||
| -rw-r--r-- | src/Propellor/Property/Rsync.hs | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 26d2e515..43abea1c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +propellor (4.7.4) UNRELEASED; urgency=medium + + * Rsync: Make rsync display less verbose. + + -- Joey Hess <id@joeyh.name> Sat, 29 Jul 2017 20:02:32 -0400 + propellor (4.7.3) unstable; urgency=medium * Expand the Trace data type. 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 '/'. |
