mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Remove outstanding 2's from plugins.
This commit is contained in:
parent
72e4816140
commit
3c5988d078
@ -39,11 +39,11 @@ _valid_permissions_values = [
|
|||||||
|
|
||||||
def _make_aci(current, aciname, kw):
|
def _make_aci(current, aciname, kw):
|
||||||
try:
|
try:
|
||||||
(dn, entry_attrs) = api.Command['taskgroup2_show'](kw['taskgroup'])
|
(dn, entry_attrs) = api.Command['taskgroup_show'](kw['taskgroup'])
|
||||||
except errors.NotFound:
|
except errors.NotFound:
|
||||||
# The task group doesn't exist, let's be helpful and add it
|
# The task group doesn't exist, let's be helpful and add it
|
||||||
tgkw = {'description': aciname}
|
tgkw = {'description': aciname}
|
||||||
(dn, entry_attrs) = api.Command['taskgroup2_add'](
|
(dn, entry_attrs) = api.Command['taskgroup_add'](
|
||||||
kw['taskgroup'], **tgkw
|
kw['taskgroup'], **tgkw
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -54,7 +54,7 @@ def _make_aci(current, aciname, kw):
|
|||||||
if 'attrs' in kw:
|
if 'attrs' in kw:
|
||||||
a.set_target_attr(kw['attrs'])
|
a.set_target_attr(kw['attrs'])
|
||||||
if 'memberof' in kw:
|
if 'memberof' in kw:
|
||||||
(dn, entry_attrs) = api.Command['group2_show'](kw['memberof'])
|
(dn, entry_attrs) = api.Command['group_show'](kw['memberof'])
|
||||||
a.set_target_filter('memberOf=%s' % dn)
|
a.set_target_filter('memberOf=%s' % dn)
|
||||||
if 'filter' in kw:
|
if 'filter' in kw:
|
||||||
a.set_target_filter(kw['filter'])
|
a.set_target_filter(kw['filter'])
|
||||||
@ -63,7 +63,7 @@ def _make_aci(current, aciname, kw):
|
|||||||
a.set_target(target)
|
a.set_target(target)
|
||||||
if 'targetgroup' in kw:
|
if 'targetgroup' in kw:
|
||||||
# Purposely no try here so we'll raise a NotFound
|
# Purposely no try here so we'll raise a NotFound
|
||||||
(dn, entry_attrs) = api.Command['group2_show'](kw['targetgroup'])
|
(dn, entry_attrs) = api.Command['group_show'](kw['targetgroup'])
|
||||||
target = 'ldap:///%s' % dn
|
target = 'ldap:///%s' % dn
|
||||||
a.set_target(target)
|
a.set_target(target)
|
||||||
if 'subtree' in kw:
|
if 'subtree' in kw:
|
||||||
@ -303,7 +303,7 @@ class aci_find(crud.Search):
|
|||||||
|
|
||||||
if 'taskgroup' in kw:
|
if 'taskgroup' in kw:
|
||||||
try:
|
try:
|
||||||
(dn, entry_attrs) = self.api.Command['taskgroup2_show'](
|
(dn, entry_attrs) = self.api.Command['taskgroup_show'](
|
||||||
kw['taskgroup']
|
kw['taskgroup']
|
||||||
)
|
)
|
||||||
except errors.NotFound:
|
except errors.NotFound:
|
||||||
@ -324,7 +324,7 @@ class aci_find(crud.Search):
|
|||||||
|
|
||||||
if 'memberof' in kw:
|
if 'memberof' in kw:
|
||||||
try:
|
try:
|
||||||
(dn, entry_attrs) = self.api.Command['group2_show'](
|
(dn, entry_attrs) = self.api.Command['group_show'](
|
||||||
kw['memberof']
|
kw['memberof']
|
||||||
)
|
)
|
||||||
except errors.NotFound:
|
except errors.NotFound:
|
||||||
|
@ -47,7 +47,7 @@ _options = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
class config2_mod(Command):
|
class config_mod(Command):
|
||||||
"""
|
"""
|
||||||
Modify IPA configuration options.
|
Modify IPA configuration options.
|
||||||
"""
|
"""
|
||||||
@ -142,7 +142,7 @@ class config2_mod(Command):
|
|||||||
textui.print_plain('')
|
textui.print_plain('')
|
||||||
textui.print_dashed('Modified IPA configuration options.')
|
textui.print_dashed('Modified IPA configuration options.')
|
||||||
|
|
||||||
api.register(config2_mod)
|
api.register(config_mod)
|
||||||
|
|
||||||
|
|
||||||
class config2_show(Command):
|
class config2_show(Command):
|
||||||
|
Loading…
Reference in New Issue
Block a user