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
This commit is contained in:
Rob Crittenden
2011-03-04 11:08:54 -05:00
parent c0ecdd1395
commit 4d0e739345
22 changed files with 222 additions and 195 deletions

View File

@@ -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,
),
)