--- embedaddon/rsync/support/rrsync 2012/02/17 15:09:30 1.1.1.1 +++ embedaddon/rsync/support/rrsync 2016/11/01 09:54:32 1.1.1.3 @@ -15,11 +15,21 @@ use constant RSYNC => '/usr/bin/rsync'; use constant LOGFILE => 'rrsync.log'; my $Usage = < 0, 'backup-dir' => 2, + 'block-size' => 1, 'bwlimit' => 1, 'checksum-seed' => 1, 'compare-dest' => 2, @@ -67,6 +79,7 @@ our %long_opt = ( 'copy-dest' => 2, 'copy-unsafe-links' => 0, 'daemon' => -1, + 'debug' => 1, 'delay-updates' => 0, 'delete' => 0, 'delete-after' => 0, @@ -74,17 +87,25 @@ our %long_opt = ( 'delete-delay' => 0, 'delete-during' => 0, 'delete-excluded' => 0, + 'delete-missing-args' => 0, 'existing' => 0, 'fake-super' => 0, 'files-from' => 3, 'force' => 0, 'from0' => 0, 'fuzzy' => 0, + 'group' => 0, + 'groupmap' => 1, + 'hard-links' => 0, 'iconv' => 1, 'ignore-errors' => 0, 'ignore-existing' => 0, + 'ignore-missing-args' => 0, + 'ignore-times' => 0, + 'info' => 1, 'inplace' => 0, 'link-dest' => 2, + 'links' => 0, 'list-only' => 0, 'log-file' => 3, 'log-format' => 1, @@ -92,16 +113,22 @@ our %long_opt = ( 'max-size' => 1, 'min-size' => 1, 'modify-window' => 1, + 'new-compress' => 0, 'no-implied-dirs' => 0, 'no-r' => 0, 'no-relative' => 0, 'no-specials' => 0, 'numeric-ids' => 0, + 'one-file-system' => 0, 'only-write-batch' => 1, + 'owner' => 0, 'partial' => 0, 'partial-dir' => 2, - 'remove-sent-files' => $ro ? -1 : 0, - 'remove-source-files' => $ro ? -1 : 0, + 'perms' => 0, + 'preallocate' => 0, + 'recursive' => 0, + 'remove-sent-files' => $only eq 'r' ? -1 : 0, + 'remove-source-files' => $only eq 'r' ? -1 : 0, 'safe-links' => 0, 'sender' => 0, 'server' => 0, @@ -113,7 +140,9 @@ our %long_opt = ( 'super' => 0, 'temp-dir' => 2, 'timeout' => 1, + 'times' => 0, 'use-qsort' => 0, + 'usermap' => 1, ); ### END of options data produced by the cull_options script. ###