summaryrefslogtreecommitdiff
path: root/packaging
diff options
context:
space:
mode:
authorWayne Davison <wayne@opencoder.net>2021-12-27 17:44:32 -0800
committerWayne Davison <wayne@opencoder.net>2021-12-27 17:57:53 -0800
commite07f8fb86329d9370edb47d5c057def16108892e (patch)
tree618e36972fe531987548dd7b6d9f26bb431fc8f9 /packaging
parent8cf9dbb742ce4c89c649cd4f4a14ed9bd254a075 (diff)
downloadrsync-e07f8fb86329d9370edb47d5c057def16108892e.tar.gz
Add a default single-access lock.
Diffstat (limited to 'packaging')
-rwxr-xr-xpackaging/cull_options5
1 files changed, 4 insertions, 1 deletions
diff --git a/packaging/cull_options b/packaging/cull_options
index d4e1c626..ca061121 100755
--- a/packaging/cull_options
+++ b/packaging/cull_options
@@ -86,7 +86,10 @@ def main():
# To disable a short-named option, add its letter to this string:
"""
- txt += str_assign('short_disabled', 'Ls') + "\n"
+ txt += str_assign('short_disabled', 's') + "\n"
+ txt += '# These are also disabled when the restricted dir is not "/":\n'
+ txt += str_assign('short_disabled_subdir', 'KLk') + "\n"
+ txt += '# These are all possible short options that we will accept (when not disabled above):\n'
txt += str_assign('short_no_arg', ''.join(sorted(short_no_arg)), 'DO NOT REMOVE ANY')
txt += str_assign('short_with_num', ''.join(sorted(short_with_num)), 'DO NOT REMOVE ANY')