diff options
Diffstat (limited to 'source4/scripting')
-rw-r--r-- | source4/scripting/python/samba/netcmd/user.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/scripting/python/samba/netcmd/user.py b/source4/scripting/python/samba/netcmd/user.py index 319e8b0215..7597f462b6 100644 --- a/source4/scripting/python/samba/netcmd/user.py +++ b/source4/scripting/python/samba/netcmd/user.py @@ -27,9 +27,9 @@ from samba.netcmd import ( SuperCommand, ) -class cmd_user_create(Command): +class cmd_user_add(Command): """Create a new user.""" - synopsis = "%prog user create <name>" + synopsis = "%prog user add <name>" takes_optiongroups = { "sambaopts": options.SambaOptions, @@ -69,6 +69,6 @@ class cmd_user(SuperCommand): """User management.""" subcommands = {} - subcommands["create"] = cmd_user_create() + subcommands["add"] = cmd_user_add() subcommands["delete"] = cmd_user_delete() |