From 4d0e739345fe3039db16e0ee613431e1aa92cf02 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Fri, 4 Mar 2011 11:08:54 -0500 Subject: Fix style and grammatical issues in built-in command help. There is a rather large API.txt change but it is only due to changes in the doc string in parameters. ticket 729 --- ipalib/plugins/group.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ipalib/plugins/group.py') diff --git a/ipalib/plugins/group.py b/ipalib/plugins/group.py index 1c0161a9d..d4d0715c5 100644 --- a/ipalib/plugins/group.py +++ b/ipalib/plugins/group.py @@ -21,15 +21,15 @@ Groups of users Manage groups of users. By default, new groups are POSIX groups. You -can add the --nonposix to the group-add command to mark a new group +can add the --nonposix option to the group-add command to mark a new group as non-POSIX, and you can use the same argument to the group-mod command to convert a non-POSIX group to a POSIX group. POSIX groups cannot be converted to non-POSIX groups. Every group must have a description. -POSIX groups must have a Group ID number (GID). Changing a GID is -supported but can have impact on your file permissions. It is not necessary +POSIX groups must have a Group ID (GID) number. Changing a GID is +supported but can have an impact on your file permissions. It is not necessary to supply a GID when creating a group. IPA will generate one automatically if it is not provided. @@ -133,7 +133,7 @@ class group_add(LDAPCreate): takes_options = LDAPCreate.takes_options + ( Flag('nonposix', cli_name='nonposix', - doc=_('Create as a non-POSIX group?'), + doc=_('Create as a non-POSIX group'), default=False, ), ) -- cgit