summaryrefslogtreecommitdiff
path: root/python/samba/netcmd/dbcheck.py
diff options
context:
space:
mode:
authorDouglas Bagnall <douglas.bagnall@catalyst.net.nz>2018-04-19 17:17:28 +1200
committerAndrew Bartlett <abartlet@samba.org>2018-05-31 01:57:17 +0200
commit78fbe1ff3206261063e64fed524fd4cef8b52b90 (patch)
tree0fe3cd2d945a106c14126fc241cb7442f4b3ef51 /python/samba/netcmd/dbcheck.py
parent432719c6e5bc75557b305d481bb784e792dc807f (diff)
downloadsamba-78fbe1ff3206261063e64fed524fd4cef8b52b90.tar.gz
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>
Diffstat (limited to 'python/samba/netcmd/dbcheck.py')
-rw-r--r--python/samba/netcmd/dbcheck.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/samba/netcmd/dbcheck.py b/python/samba/netcmd/dbcheck.py
index aec45d26824..210d4a26a1d 100644
--- a/python/samba/netcmd/dbcheck.py
+++ b/python/samba/netcmd/dbcheck.py
@@ -66,7 +66,7 @@ class cmd_dbcheck(Command):
help="cross naming context boundaries"),
Option("-v", "--verbose", dest="verbose", action="store_true", default=False,
help="Print more details of checking"),
- Option("--quiet", dest="quiet", action="store_true", default=False,
+ Option("-q", "--quiet", action="store_true", default=False,
help="don't print details of checking"),
Option("--attrs", dest="attrs", default=None, help="list of attributes to check (space separated)"),
Option("--reindex", dest="reindex", default=False, action="store_true", help="force database re-index"),