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

samba-tool: add subcommand for sites manipulation

Autobuild-User: Matthieu Patou <mat@samba.org>
Autobuild-Date: Wed Nov  2 15:14:32 CET 2011 on sn-devel-104
This commit is contained in:
Matthieu Patou
2011-11-02 13:32:33 +01:00
committed by Matthieu Patou
parent 37703892bd
commit dfd341a2fd
2 changed files with 98 additions and 0 deletions

View File

@ -32,6 +32,7 @@ from samba.netcmd.group import cmd_group
from samba.netcmd.ldapcmp import cmd_ldapcmp
from samba.netcmd.ntacl import cmd_ntacl
from samba.netcmd.rodc import cmd_rodc
from samba.netcmd.sites import cmd_sites
from samba.netcmd.spn import cmd_spn
from samba.netcmd.testparm import cmd_testparm
from samba.netcmd.time import cmd_time
@ -55,6 +56,7 @@ class cmd_sambatool(SuperCommand):
subcommands["ldapcmp"] = cmd_ldapcmp()
subcommands["ntacl"] = cmd_ntacl()
subcommands["rodc"] = cmd_rodc()
subcommands["sites"] = cmd_sites()
subcommands["spn"] = cmd_spn()
subcommands["testparm"] = cmd_testparm()
subcommands["time"] = cmd_time()