1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

samba-tool domain kds: add root key sub-command

Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Douglas Bagnall 2024-02-28 17:29:40 +13:00 committed by Andrew Bartlett
parent fbd9740272
commit 327f5dc4e5

View File

@ -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(),
}