added copy_dirlinks

This commit is contained in:
Axel Kittenberger 2016-12-01 12:35:02 +01:00
parent dc93af01aa
commit 319681e7eb
2 changed files with 6 additions and 3 deletions

View File

@ -1,10 +1,11 @@
??-??-????: ??-??-????:
enhancement: add rsync options: enhancement: add rsync options:
"chown", "chown",
"copy_dirlinks",
"existing", "existing",
"omit-dir-times", "omit_dir_times",
"omit-dir-times" "omit_dir_times"
"omit-link-times" "omit_link_times"
change: compatible with Lua5.3 (along with 5.1 and 5.2) change: compatible with Lua5.3 (along with 5.1 and 5.2)
change: _verbatim forced for 'exitcodes' entry. change: _verbatim forced for 'exitcodes' entry.
change: manpage is not rebuild by default. change: manpage is not rebuild by default.

View File

@ -59,6 +59,7 @@ rsync.checkgauge = {
checksum = true, checksum = true,
chown = true, chown = true,
compress = true, compress = true,
copy_dirlinks = true,
copy_links = true, copy_links = true,
cvs_exclude = true, cvs_exclude = true,
dry_run = true, dry_run = true,
@ -416,6 +417,7 @@ rsync.prepare =
acls = 'A', acls = 'A',
checksum = 'c', checksum = 'c',
compress = 'z', compress = 'z',
copy_dirlinks = 'k',
copy_links = 'L', copy_links = 'L',
cvs_exclude = 'C', cvs_exclude = 'C',
dry_run = 'n', dry_run = 'n',