1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-14 12:59:07 +03:00

Simplify handling of user add command.

Autobuild-User: Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date: Tue Nov  1 14:25:39 CET 2011 on sn-devel-104
This commit is contained in:
Jelmer Vernooij
2011-11-01 12:29:16 +01:00
parent b26a4f6232
commit 4b67a10ed0

View File

@ -41,12 +41,6 @@ class cmd_user_create(Command):
synopsis = "%prog <username> [<password>] [options]"
# take this print out after the add subcommand is removed.
# the add subcommand is deprecated but left in for now to allow people to migrate to create
if (len(sys.argv) > 2):
if ((sys.argv[2]) == 'add'):
print "\nNote: samba-tool user add is deprecated. Please use samba-tool user create for the same function.\n"
takes_options = [
Option("-H", "--URL", help="LDB URL for database or target server", type=str,
metavar="URL", dest="H"),
@ -109,6 +103,16 @@ class cmd_user_create(Command):
self.outf.write("User '%s' created successfully\n" % username)
class cmd_user_add(cmd_user_create):
__doc__ = cmd_user_create.__doc__
# take this print out after the add subcommand is removed.
# the add subcommand is deprecated but left in for now to allow people to migrate to create
def run(self, *args, **kwargs):
self.err.write("\nNote: samba-tool user add is deprecated. Please use samba-tool user create for the same function.\n")
return super(self, cmd_user_add).run(*args, **kwargs)
class cmd_user_delete(Command):
"""Delete a user"""