From e07f8fb86329d9370edb47d5c057def16108892e Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 27 Dec 2021 17:44:32 -0800 Subject: Add a default single-access lock. --- packaging/cull_options | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'packaging') 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') -- cgit v1.2.1