34 lines
1.6 KiB
Diff
34 lines
1.6 KiB
Diff
From 1df3852cf0e073cfe006d661aecdd909862fc79a Mon Sep 17 00:00:00 2001
|
|
From: Mark Reynolds <mreynolds@redhat.com>
|
|
Date: Thu, 12 Feb 2026 09:58:54 -0500
|
|
Subject: [PATCH] Issue 7248 - CLI - attribute uniqueness - fix usage for
|
|
exclude subtree option
|
|
|
|
Description:
|
|
|
|
Fix typo in usage message for the exclude subtree option
|
|
|
|
relates: https://github.com/389ds/389-ds-base/issues/7248
|
|
|
|
Reviewed by: progier (Thanks!)
|
|
---
|
|
src/lib389/lib389/cli_conf/plugins/attruniq.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/lib389/lib389/cli_conf/plugins/attruniq.py b/src/lib389/lib389/cli_conf/plugins/attruniq.py
|
|
index bc925eb1c..26ca5d819 100644
|
|
--- a/src/lib389/lib389/cli_conf/plugins/attruniq.py
|
|
+++ b/src/lib389/lib389/cli_conf/plugins/attruniq.py
|
|
@@ -127,7 +127,7 @@ def _add_parser_args(parser):
|
|
help='Sets the DN under which the plug-in checks for uniqueness of '
|
|
'the attributes value. This attribute is multi-valued (uniqueness-subtrees)')
|
|
parser.add_argument('--exclude-subtree', nargs='+',
|
|
- help='Sets subtrees that should not excludedfrom attribute uniqueness. '
|
|
+ help='Sets subtrees that should be excluded from attribute uniqueness checks. '
|
|
'This attribute is multi-valued (uniqueness-exclude-subtrees)')
|
|
parser.add_argument('--across-all-subtrees', choices=['on', 'off'], type=str.lower,
|
|
help='If enabled (on), the plug-in checks that the attribute is unique across all subtrees '
|
|
--
|
|
2.52.0
|
|
|