Coverage for ipalib/plugins/sudocmdgroup : 100%
        
        
Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
| 
 # Authors: # Jr Aquino <jr.aquino@citrixonline.com> # # Copyright (C) 2010 Red Hat # see file 'COPYING' for use and warranty information # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # 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 
 Manage groups of Sudo Commands. 
 EXAMPLES: 
 Add a new Sudo Command Group: ipa sudocmdgroup-add --desc='administrators commands' admincmds 
 Remove a Sudo Command Group: ipa sudocmdgroup-del admincmds 
 Manage Sudo Command Group membership, commands: ipa sudocmdgroup-add-member --sudocmds=/usr/bin/less,/usr/bin/vim admincmds 
 Manage Sudo Command Group membership, commands: ipa group-remove-member --sudocmds=/usr/bin/less admincmds 
 Show a Sudo Command Group: ipa group-show localadmins """) 
 
 """ Sudo Command Group object. """ 'cn', 'description', 'member', ] 'member': ['sudocmd'], } 
 
 Str('cn', cli_name='sudocmdgroup_name', label=_('Sudo Command Group'), primary_key=True, normalizer=lambda value: value.lower(), ), Str('description', cli_name='desc', label=_('Description'), doc=_('Group description'), ), Str('membercmd_sudocmd?', label=_('Commands'), flags=['no_create', 'no_update', 'no_search'], ), Str('membercmd_sudocmdgroup?', label=_('Sudo Command Groups'), flags=['no_create', 'no_update', 'no_search'], ), ) 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 '%(count)d Sudo Command Group matched', '%(count)d Sudo Command Groups matched', 0 ) 
 
 
 
 
 
 
 
 
 
  |