From 432719c6e5bc75557b305d481bb784e792dc807f Mon Sep 17 00:00:00 2001 From: Douglas Bagnall Date: Thu, 24 May 2018 17:03:22 +1200 Subject: [PATCH] samba-tool: add -v to drs --verbose Sometimes we accept -v for --verbose, sometimes we don't. Let's be a bit more consistent. Signed-off-by: Douglas Bagnall Reviewed-by: Andrew Bartlett --- python/samba/netcmd/drs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/samba/netcmd/drs.py b/python/samba/netcmd/drs.py index a8c096b24bd..21cd1c2ac24 100644 --- a/python/samba/netcmd/drs.py +++ b/python/samba/netcmd/drs.py @@ -649,7 +649,7 @@ class cmd_drs_clone_dc_database(Command): Option("--targetdir", help="where to store provision (required)", type=str), Option("--quiet", help="Be quiet", action="store_true"), Option("--include-secrets", help="Also replicate secret values", action="store_true"), - Option("--verbose", help="Be verbose", action="store_true") + Option("-v", "--verbose", help="Be verbose", action="store_true") ] takes_args = ["domain"] -- 2.34.1