1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-27 07:42:04 +03:00

samba-tool: Added dns command for DNS management

Signed-off-by: Andrew Tridgell <tridge@samba.org>
This commit is contained in:
Amitay Isaacs
2011-10-17 13:15:40 +11:00
committed by Andrew Tridgell
parent 8df2ed42cc
commit b619705c22
2 changed files with 861 additions and 0 deletions

View File

@ -22,6 +22,7 @@
from samba.netcmd import SuperCommand
from samba.netcmd.dbcheck import cmd_dbcheck
from samba.netcmd.delegation import cmd_delegation
from samba.netcmd.dns import cmd_dns
from samba.netcmd.domain import cmd_domain
from samba.netcmd.drs import cmd_drs
from samba.netcmd.dsacl import cmd_dsacl
@ -44,6 +45,7 @@ class cmd_sambatool(SuperCommand):
subcommands = {}
subcommands["dbcheck"] = cmd_dbcheck()
subcommands["delegation"] = cmd_delegation()
subcommands["dns"] = cmd_dns()
subcommands["domain"] = cmd_domain()
subcommands["drs"] = cmd_drs()
subcommands["dsacl"] = cmd_dsacl()