summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorGiampaolo Lauria <lauria2@yahoo.com>2011-06-27 12:59:41 -0400
committerAndrew Tridgell <tridge@samba.org>2011-07-21 10:32:22 +1000
commitff7f3239039e340c39968cb13dda4de85d3f34bb (patch)
tree990fc2a32aa8116cccf21ad50cadf72a5defab44 /source4
parent30ba5d049091e9ebc76e28c13a8654d4307a7faa (diff)
downloadsamba-ff7f3239039e340c39968cb13dda4de85d3f34bb.tar.gz
samba-ff7f3239039e340c39968cb13dda4de85d3f34bb.tar.bz2
samba-ff7f3239039e340c39968cb13dda4de85d3f34bb.zip
samba-tool: added setpassword to user
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')
-rw-r--r--source4/scripting/python/samba/netcmd/user.py60
1 files changed, 58 insertions, 2 deletions
diff --git a/source4/scripting/python/samba/netcmd/user.py b/source4/scripting/python/samba/netcmd/user.py
index 6acf52d790..237f1b60a0 100644
--- a/source4/scripting/python/samba/netcmd/user.py
+++ b/source4/scripting/python/samba/netcmd/user.py
@@ -21,10 +21,10 @@
import samba.getopt as options
import sys
+from getpass import getpass
from samba.auth import system_session
from samba.samdb import SamDB
-
-
+from samba import gensec
from samba.net import Net
from samba.netcmd import (
@@ -34,6 +34,7 @@ from samba.netcmd import (
Option,
)
+
class cmd_user_add(Command):
"""Create a new user."""
synopsis = "%prog user add <name> [<password>]"
@@ -76,6 +77,7 @@ class cmd_user_delete(Command):
except RuntimeError, msg:
raise CommandError("Failed to delete user %s: %s" % (name, msg))
+
class cmd_user_enable(Command):
"""Enables a user"""
@@ -157,6 +159,59 @@ class cmd_user_setexpiry(Command):
raise CommandError("Failed to set expiry for user %s: %s" % (username or filter, msg))
print("Set expiry for user %s to %u days" % (username or filter, days))
+
+class cmd_user_setpassword(Command):
+ """(Re)sets the password of a user account"""
+
+ synopsis = "%prog user setpassword [username] [options]"
+
+ takes_optiongroups = {
+ "sambaopts": options.SambaOptions,
+ "versionopts": options.VersionOptions,
+ "credopts": options.CredentialsOptions,
+ }
+
+ takes_options = [
+ Option("-H", help="LDB URL for database or target server", type=str),
+ Option("--filter", help="LDAP Filter to set password on", type=str),
+ Option("--newpassword", help="Set password", type=str),
+ Option("--must-change-at-next-login",
+ help="Force password to be changed on next login",
+ action="store_true"),
+ ]
+
+ takes_args = ["username?"]
+
+ def run(self, username=None, filter=None, credopts=None, sambaopts=None,
+ versionopts=None, H=None, newpassword=None,
+ must_change_at_next_login=None):
+ if filter is None and username is None:
+ raise CommandError("Either the username or '--filter' must be specified!")
+
+ password = newpassword
+ if password is None:
+ password = getpass("New Password: ")
+
+ if filter is None:
+ filter = "(&(objectClass=user)(sAMAccountName=%s))" % (username)
+
+ lp = sambaopts.get_loadparm()
+ creds = credopts.get_credentials(lp)
+
+ creds.set_gensec_features(creds.get_gensec_features() | gensec.FEATURE_SEAL)
+
+ samdb = SamDB(url=H, session_info=system_session(),
+ credentials=creds, lp=lp)
+
+ try:
+ samdb.setpassword(filter, password,
+ force_change_at_next_login=must_change_at_next_login,
+ username=username)
+ except Exception, e:
+ raise CommandError('Failed to set password for user "%s"' % username, e)
+ print "Changed password OK"
+
+
class cmd_user(SuperCommand):
"""User management [server connection needed]"""
@@ -165,3 +220,4 @@ class cmd_user(SuperCommand):
subcommands["delete"] = cmd_user_delete()
subcommands["enable"] = cmd_user_enable()
subcommands["setexpiry"] = cmd_user_setexpiry()
+ subcommands["setpassword"] = cmd_user_setpassword()