added --existing

This commit is contained in:
Axel Kittenberger 2016-11-28 11:20:12 +01:00
parent aaae8f4083
commit d5957200a2
1 changed files with 7 additions and 0 deletions

View File

@ -63,6 +63,7 @@ rsync.checkgauge = {
cvs_exclude = true,
dry_run = true,
executability = true,
existing = true,
group = true,
hard_links = true,
ignore_times = true,
@ -492,6 +493,12 @@ rsync.prepare =
computed[ computedN ] = '--chown=' .. crsync.chown
computedN = computedN + 1
end
if crsync.existing
then
computed[ computedN ] = '--existing'
computedN = computedN + 1
end
if crsync.inplace
then