diff options
author | Rob Crittenden <rcritten@redhat.com> | 2011-03-04 11:08:54 -0500 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2011-03-04 11:09:43 -0500 |
commit | 4d0e739345fe3039db16e0ee613431e1aa92cf02 (patch) | |
tree | 87fe8f94e7b7265cd12b8a78eca89cedb87ad160 /ipalib/plugins/sudocmdgroup.py | |
parent | c0ecdd1395e457592407c2d4d622a2758896d8ca (diff) | |
download | freeipa-4d0e739345fe3039db16e0ee613431e1aa92cf02.tar.gz freeipa-4d0e739345fe3039db16e0ee613431e1aa92cf02.tar.xz freeipa-4d0e739345fe3039db16e0ee613431e1aa92cf02.zip |
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
Diffstat (limited to 'ipalib/plugins/sudocmdgroup.py')
-rw-r--r-- | ipalib/plugins/sudocmdgroup.py | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/ipalib/plugins/sudocmdgroup.py b/ipalib/plugins/sudocmdgroup.py index e628a176..3931111f 100644 --- a/ipalib/plugins/sudocmdgroup.py +++ b/ipalib/plugins/sudocmdgroup.py @@ -17,26 +17,25 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. """ -Groups of sudo commands +Groups of Sudo commands -Manage groups of sudo commands. -Every group must have a description. +Manage groups of Sudo commands. EXAMPLES: - Add a new sudo command group: + Add a new Sudo command group: ipa sudocmdgroup-add --desc='administrators commands' admincmds - Remove a sudo command group: + Remove a Sudo command group: ipa sudocmdgroup-del admincmds - Manage sudo command group membership, commands: + Manage Sudo command group membership, commands: ipa sudocmdgroup-add-member --sudocmds=/usr/bin/less,/usr/bin/vim admincmds - Manage sudo command group membership, commands: + Manage Sudo command group membership, commands: ipa group-remove-member --sudocmds=/usr/bin/less admincmds - Show a sudo command group: + Show a Sudo command group: ipa group-show localadmins """ |