summaryrefslogtreecommitdiff
path: root/support/rrsync
diff options
context:
space:
mode:
authorWayne Davison <wayne@opencoder.net>2022-01-03 00:37:57 -0800
committerWayne Davison <wayne@opencoder.net>2022-01-03 00:47:19 -0800
commitc98327902086cb6e7f525aa263169344c6306771 (patch)
tree2b9f61aa437bd9fa03f3c86e721efc2949255a04 /support/rrsync
parentee9199b54274aed05776f55806dc18b3e2f20a32 (diff)
downloadrsync-c98327902086cb6e7f525aa263169344c6306771.tar.gz
Improve rrsync usage and some more NEWS tweaks.
Diffstat (limited to 'support/rrsync')
-rwxr-xr-xsupport/rrsync2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/rrsync b/support/rrsync
index fe1bc250..8ea76e05 100755
--- a/support/rrsync
+++ b/support/rrsync
@@ -360,9 +360,9 @@ if __name__ == '__main__':
only_group = arg_parser.add_mutually_exclusive_group()
only_group.add_argument('-ro', action='store_true', help="Allow only reading from the DIR. Implies -no-del and -no-lock.")
only_group.add_argument('-wo', action='store_true', help="Allow only writing to the DIR.")
+ arg_parser.add_argument('-munge', action='store_true', help="Enable rsync's --munge-links on the server side.")
arg_parser.add_argument('-no-del', action='store_true', help="Disable rsync's --delete* and --remove* options.")
arg_parser.add_argument('-no-lock', action='store_true', help="Avoid the single-run (per-user) lock check.")
- arg_parser.add_argument('-munge', action='store_true', help="Enable rsync's --munge-links on the server side.")
arg_parser.add_argument('-help', '-h', action='help', help="Output this help message and exit.")
arg_parser.add_argument('dir', metavar='DIR', help="The restricted directory to use.")
args = arg_parser.parse_args()