mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-27 09:21:59 -06:00
327d67fe8d
1) Add sudorule docstring headline 2) Fix naming inconsistency in Sudo plugins help and summaries, especially capitalization of Sudo objects - Sudo Rule, Sudo Command and Sudo Command Group 3) Add missing summaries for sudorule-add-option and sudorule-remove-option. To keep backward compatibility with older clients, just print the missing summary with output_for_cli(), don't expand Output. https://fedorahosted.org/freeipa/ticket/1595 https://fedorahosted.org/freeipa/ticket/1596
145 lines
3.8 KiB
Python
145 lines
3.8 KiB
Python
# 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/>.
|
|
|
|
from ipalib import api
|
|
from ipalib import Str
|
|
from ipalib.plugins.baseldap import *
|
|
from ipalib import _, ngettext
|
|
|
|
__doc__ = _("""
|
|
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
|
|
""")
|
|
|
|
topic = ('sudo', _('commands for controlling sudo configuration'))
|
|
|
|
class sudocmdgroup(LDAPObject):
|
|
"""
|
|
Sudo Command Group object.
|
|
"""
|
|
container_dn = api.env.container_sudocmdgroup
|
|
object_name = _('sudo command group')
|
|
object_name_plural = _('sudo command groups')
|
|
object_class = ['ipaobject', 'ipasudocmdgrp']
|
|
default_attributes = [
|
|
'cn', 'description', 'member',
|
|
]
|
|
uuid_attribute = 'ipauniqueid'
|
|
attribute_members = {
|
|
'member': ['sudocmd'],
|
|
}
|
|
|
|
label = _('Sudo Command Groups')
|
|
label_singular = _('Sudo Command Group')
|
|
|
|
takes_params = (
|
|
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'],
|
|
),
|
|
)
|
|
|
|
api.register(sudocmdgroup)
|
|
|
|
|
|
class sudocmdgroup_add(LDAPCreate):
|
|
__doc__ = _('Create new Sudo Command Group.')
|
|
|
|
msg_summary = _('Added Sudo Command Group "%(value)s"')
|
|
|
|
api.register(sudocmdgroup_add)
|
|
|
|
|
|
class sudocmdgroup_del(LDAPDelete):
|
|
__doc__ = _('Delete Sudo Command Group.')
|
|
|
|
msg_summary = _('Deleted Sudo Command Group "%(value)s"')
|
|
|
|
api.register(sudocmdgroup_del)
|
|
|
|
|
|
class sudocmdgroup_mod(LDAPUpdate):
|
|
__doc__ = _('Modify Sudo Command Group.')
|
|
|
|
msg_summary = _('Modified Sudo Command Group "%(value)s"')
|
|
|
|
api.register(sudocmdgroup_mod)
|
|
|
|
|
|
class sudocmdgroup_find(LDAPSearch):
|
|
__doc__ = _('Search for Sudo Command Groups.')
|
|
|
|
msg_summary = ngettext(
|
|
'%(count)d Sudo Command Group matched',
|
|
'%(count)d Sudo Command Groups matched', 0
|
|
)
|
|
|
|
api.register(sudocmdgroup_find)
|
|
|
|
|
|
class sudocmdgroup_show(LDAPRetrieve):
|
|
__doc__ = _('Display Sudo Command Group.')
|
|
|
|
api.register(sudocmdgroup_show)
|
|
|
|
|
|
class sudocmdgroup_add_member(LDAPAddMember):
|
|
__doc__ = _('Add members to Sudo Command Group.')
|
|
|
|
api.register(sudocmdgroup_add_member)
|
|
|
|
|
|
class sudocmdgroup_remove_member(LDAPRemoveMember):
|
|
__doc__ = _('Remove members from Sudo Command Group.')
|
|
|
|
api.register(sudocmdgroup_remove_member)
|