From 679d77a2267bfdee99c57665b530580807f83f80 Mon Sep 17 00:00:00 2001 From: Marc Muehlfeld Date: Wed, 6 Aug 2014 19:52:21 +0200 Subject: Redescribe --userou usage Signed-off-by: Marc Muehlfeld Reviewed-by: David Disseldorp --- python/samba/netcmd/user.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/samba/netcmd/user.py') diff --git a/python/samba/netcmd/user.py b/python/samba/netcmd/user.py index b98ec344b2..24dd77df56 100644 --- a/python/samba/netcmd/user.py +++ b/python/samba/netcmd/user.py @@ -62,7 +62,7 @@ sudo samba-tool user add User2 passw2rd --given-name=Jane --surname=Doe --must-c Example2 shows how to create a new user in the domain against the local server. sudo is used so a user may run the command as root. In this example, after User2 is created, he/she will be forced to change their password when they logon. Example3: -samba-tool user add User3 passw3rd --userou=OrgUnit +samba-tool user add User3 passw3rd --userou='OU=OrgUnit' Example3 shows how to create a new user in the OrgUnit organizational unit. @@ -87,7 +87,7 @@ Example4 shows how to create a new user with Unix UID, GID and login-shell set f help="Force use of username as user's CN", action="store_true"), Option("--userou", - help="Alternative location (without domainDN counterpart) to default CN=Users in which new user object will be created", + help="DN of alternative location (without domainDN counterpart) to default CN=Users in which new user object will be created. E. g. 'OU='", type=str), Option("--surname", help="User's surname", type=str), Option("--given-name", help="User's given name", type=str), -- cgit