]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
Add a few new opts to rrsync.
authorWayne Davison <wayne@opencoder.net>
Sun, 26 Apr 2020 21:50:40 +0000 (14:50 -0700)
committerWayne Davison <wayne@opencoder.net>
Sun, 26 Apr 2020 21:54:45 +0000 (14:54 -0700)
support/rrsync

index 3bbca2e0f49f0a2579ff56eec8c093694e2cab79..a538fbbad89ff32e8978e092b764c7e35b29792e 100644 (file)
@@ -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. ###