From: Douglas Bagnall Date: Wed, 28 Feb 2024 04:29:40 +0000 (+1300) Subject: samba-tool domain kds: add root key sub-command X-Git-Tag: tdb-1.4.11~1637 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=327f5dc4e58a250049d993a25e076c2563311aea;p=thirdparty%2Fsamba.git samba-tool domain kds: add root key sub-command Signed-off-by: Douglas Bagnall Reviewed-by: Andrew Bartlett --- diff --git a/python/samba/netcmd/domain/kds/__init__.py b/python/samba/netcmd/domain/kds/__init__.py index 990de25a9db..3725725b2ba 100644 --- a/python/samba/netcmd/domain/kds/__init__.py +++ b/python/samba/netcmd/domain/kds/__init__.py @@ -20,10 +20,12 @@ from samba.netcmd import SuperCommand +from .root_key import cmd_domain_kds_root_key + class cmd_domain_kds(SuperCommand): """Key Distribution Service management.""" subcommands = { - + "root-key": cmd_domain_kds_root_key(), }