Merge remote-tracking branch 'origin/pr/567'

This commit is contained in:
Daniel Poelzleithner 2021-12-10 12:25:17 +01:00
commit f812cd4cd5
1 changed files with 7 additions and 0 deletions

View File

@ -61,6 +61,7 @@ rsync.checkgauge = {
compress = true,
copy_dirlinks = true,
copy_links = true,
copy_unsafe_links = true,
cvs_exclude = true,
dry_run = true,
executability = true,
@ -588,6 +589,12 @@ rsync.prepare = function
computedN = computedN + 1
end
if crsync.copy_unsafe_links
then
computed[ computedN ] = '--copy-unsafe-links'
computedN = computedN + 1
end
if crsync.groupmap
then
computed[ computedN ] = '--groupmap=' .. crsync.groupmap