diff options
| author | Giampaolo Lauria <lauria2@yahoo.com> | 2011-06-27 16:32:22 -0400 |
|---|---|---|
| committer | Andrew Tridgell <tridge@samba.org> | 2011-07-21 10:32:22 +1000 |
| commit | e5255f0920d064a43d8d261889079f068159dba5 (patch) | |
| tree | f2288cc4542b3759898f98a21150550c2614b114 /source4/scripting/python/samba/netcmd/__init__.py | |
| parent | c4a92292c127244596795675902176e6483895c7 (diff) | |
| download | samba-e5255f0920d064a43d8d261889079f068159dba5.tar.gz samba-e5255f0920d064a43d8d261889079f068159dba5.tar.bz2 samba-e5255f0920d064a43d8d261889079f068159dba5.zip | |
samba-tool: created domain object, moved pwsettings to user passwordsettings
This is part of the samba-tool work to fit the object-action model
Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'source4/scripting/python/samba/netcmd/__init__.py')
| -rw-r--r-- | source4/scripting/python/samba/netcmd/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/scripting/python/samba/netcmd/__init__.py b/source4/scripting/python/samba/netcmd/__init__.py index 7857cbf065d..cbb3c5a857f 100644 --- a/source4/scripting/python/samba/netcmd/__init__.py +++ b/source4/scripting/python/samba/netcmd/__init__.py @@ -174,8 +174,6 @@ class CommandError(Exception): commands = {} -from samba.netcmd.pwsettings import cmd_pwsettings -commands["pwsettings"] = cmd_pwsettings() from samba.netcmd.domainlevel import cmd_domainlevel commands["domainlevel"] = cmd_domainlevel() from samba.netcmd.newuser import cmd_newuser @@ -214,3 +212,5 @@ from samba.netcmd.dbcheck import cmd_dbcheck commands["dbcheck"] = cmd_dbcheck() from samba.netcmd.delegation import cmd_delegation commands["delegation"] = cmd_delegation() +from samba.netcmd.domain import cmd_domain +commands["domain"] = cmd_domain() |
