]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
samba-tool domain kds: add root key sub-command
authorDouglas Bagnall <douglas.bagnall@catalyst.net.nz>
Wed, 28 Feb 2024 04:29:40 +0000 (17:29 +1300)
committerAndrew Bartlett <abartlet@samba.org>
Fri, 1 Mar 2024 00:19:45 +0000 (00:19 +0000)
Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
python/samba/netcmd/domain/kds/__init__.py

index 990de25a9dbd97a983b7a6938d7ff7b1a72878fd..3725725b2baebe6f3abf9c06c537fbff1984f87a 100644 (file)
 
 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(),
     }