1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-17 04:23:50 +03:00

samba-tool/ntacl: don't announce -q,--quiet in --help as it's not used at all

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Stefan Metzmacher
2023-05-02 16:18:26 +02:00
committed by Andrew Bartlett
parent 4ca5b78f5b
commit 6327fd9cdb

View File

@@ -79,7 +79,8 @@ class cmd_ntacl_set(Command):
}
takes_options = [
Option("-q", "--quiet", help="Be quiet", action="store_true"),
# --quiet is not used at all...
Option("-q", "--quiet", help=Option.SUPPRESS_HELP, action="store_true"),
Option("--xattr-backend", type="choice", help="xattr backend type (native fs or tdb)",
choices=["native", "tdb"]),
Option("--eadb-file", help="Name of the tdb file where attributes are stored", type="string"),