From: Wayne Davison Date: Sun, 26 Apr 2020 21:50:40 +0000 (-0700) Subject: Add a few new opts to rrsync. X-Git-Tag: v3.2.0pre1~156 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=035a13f7e483efa47847c5d77a8b0dd30ebd8925;p=thirdparty%2Frsync.git Add a few new opts to rrsync. --- diff --git a/support/rrsync b/support/rrsync index 3bbca2e0..a538fbba 100644 --- a/support/rrsync +++ b/support/rrsync @@ -62,7 +62,7 @@ die "$0 reading from write-only server not allowed\n" if $only eq 'w' && $am_sen # To disable a short-named option, add its letter to this string: our $short_disabled = 's'; -our $short_no_arg = 'ACDEHIJKLORSWXbcdgklmnoprstuvxyz'; # DO NOT REMOVE ANY +our $short_no_arg = 'ACDEHIJKLORSUWXbcdgklmnoprstuvxyz'; # DO NOT REMOVE ANY our $short_with_num = '@B'; # DO NOT REMOVE ANY # To disable a long-named option, change its value to a -1. The values mean: @@ -122,6 +122,7 @@ our %long_opt = ( 'numeric-ids' => 0, 'one-file-system' => 0, 'only-write-batch' => 1, + 'open-noatime' => 0, 'owner' => 0, 'partial' => 0, 'partial-dir' => 2, @@ -144,6 +145,7 @@ our %long_opt = ( 'times' => 0, 'use-qsort' => 0, 'usermap' => 1, + 'write-devices' => -1, ); ### END of options data produced by the cull_options script. ###