diff options
author | Karolin Seeger <kseeger@samba.org> | 2013-05-15 18:15:18 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-05-15 21:04:41 -0700 |
commit | 86a58b01e0cd2f05b3767789bedd27d185421d52 (patch) | |
tree | 5dd73de614b53278f75afbaaa48ad5602485bb18 /python | |
parent | 618fd8e4de6c1a7847798c05bf0e82a7e5ac07e0 (diff) | |
download | samba-86a58b01e0cd2f05b3767789bedd27d185421d52.tar.gz samba-86a58b01e0cd2f05b3767789bedd27d185421d52.tar.bz2 samba-86a58b01e0cd2f05b3767789bedd27d185421d52.zip |
netcmd/group.py: Fix typo.
Signed-off-by: Karolin Seeger <kseeger@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'python')
-rw-r--r-- | python/samba/netcmd/group.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/samba/netcmd/group.py b/python/samba/netcmd/group.py index 4004a7d6c3..1a24e5f0fa 100644 --- a/python/samba/netcmd/group.py +++ b/python/samba/netcmd/group.py @@ -173,7 +173,7 @@ Example2 deletes group Group2 from the local server. The command is run under r class cmd_group_add_members(Command): """Add members to an AD group. -This command adds one or more members to an existing Active Directory group. The command accepts one or more group member names seperated by commas. A group member may be a user or computer account or another Active Directory group. +This command adds one or more members to an existing Active Directory group. The command accepts one or more group member names separated by commas. A group member may be a user or computer account or another Active Directory group. When a member is added to a group the member may inherit permissions and rights from the group. Likewise, when permission or rights of a group are changed, the changes may reflect in the members through inheritance. @@ -225,7 +225,7 @@ Example2 shows how to add a single user account, User2, to the supergroup AD gro class cmd_group_remove_members(Command): """Remove members from an AD group. -This command removes one or more members from an existing Active Directory group. The command accepts one or more group member names seperated by commas. A group member may be a user or computer account or another Active Directory group that is a member of the group specified on the command. +This command removes one or more members from an existing Active Directory group. The command accepts one or more group member names separated by commas. A group member may be a user or computer account or another Active Directory group that is a member of the group specified on the command. When a member is removed from a group, inherited permissions and rights will no longer apply to the member. |