1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-18 08:23:51 +03:00

samba-tool: be consistent in accepting -q for --quiet

Not all commands accept --quiet, and not all of those that do use it.
Some already accept -q, and it is not used anywhere for anything else.

Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Douglas Bagnall
2018-04-19 17:17:28 +12:00
committed by Andrew Bartlett
parent 432719c6e5
commit 78fbe1ff32
4 changed files with 10 additions and 10 deletions

View File

@@ -51,7 +51,7 @@ class cmd_ntacl_set(Command):
}
takes_options = [
Option("--quiet", help="Be quiet", action="store_true"),
Option("-q", "--quiet", help="Be quiet", 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"),