From: Wayne Davison Date: Fri, 4 Oct 2013 21:10:44 +0000 (-0700) Subject: Don't forget about --debug and --info for rrsync. X-Git-Tag: v3.1.1pre1~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=64dff88db9d73886000053e76b1e4fe372399105;p=thirdparty%2Frsync.git Don't forget about --debug and --info for rrsync. --- diff --git a/packaging/cull_options b/packaging/cull_options index add2b988..44b48d10 100755 --- a/packaging/cull_options +++ b/packaging/cull_options @@ -8,7 +8,9 @@ our %short_no_arg; our %short_with_num; our %long_opt = ( 'daemon' => -1, + 'debug' => 1, 'fake-super' => 0, + 'info' => 1, 'log-file' => 3, ); our $last_long_opt; diff --git a/support/rrsync b/support/rrsync index 9163f1a8..5886033b 100644 --- a/support/rrsync +++ b/support/rrsync @@ -67,6 +67,7 @@ our %long_opt = ( 'copy-dest' => 2, 'copy-unsafe-links' => 0, 'daemon' => -1, + 'debug' => 1, 'delay-updates' => 0, 'delete' => 0, 'delete-after' => 0, @@ -86,6 +87,7 @@ our %long_opt = ( 'ignore-errors' => 0, 'ignore-existing' => 0, 'ignore-missing-args' => 0, + 'info' => 1, 'inplace' => 0, 'link-dest' => 2, 'list-only' => 0,