mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Prevent to rename certprofile profile id
https://fedorahosted.org/freeipa/ticket/5074 Reviewed-By: Jan Cholasta <jcholast@redhat.com>
This commit is contained in:
committed by
Jan Cholasta
parent
0569910fea
commit
67b2b34085
@@ -291,6 +291,9 @@ class certprofile_mod(LDAPUpdate):
|
||||
|
||||
def pre_callback(self, ldap, dn, entry_attrs, attrs_list, *keys, **options):
|
||||
ca_enabled_check()
|
||||
# Once a profile id is set it cannot be changed
|
||||
if 'cn' in entry_attrs:
|
||||
raise errors.ACIError(info=_('cn is immutable'))
|
||||
if 'file' in options:
|
||||
with self.api.Backend.ra_certprofile as profile_api:
|
||||
profile_api.disable_profile(keys[0])
|
||||
|
||||
Reference in New Issue
Block a user