mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Issue 8456 - Add new aci's for the new replication changelog entries
Description: We need a read and a write aci for the new changelog location, which was moved from cn=changelog5,cn=config to cn=changelog,cn=BACKEND,cn=ldbm database,cn=plguins,cn=config The read aci allows the replica hostgroup entry to find and read the changelog confguration, and the write allows the replica to update the changelog with a proper trimming settings. Fixes: https://pagure.io/freeipa/issue/8456 Signed-off-by: Mark Reynolds <mreynolds@redhat.com> Reviewed-By: Rob Crittenden <rcritten@redhat.com> Reviewed-By: Florence Blanc-Renaud <flo@redhat.com> Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
This commit is contained in:
parent
777147e051
commit
b9ae7c45b8
@ -212,6 +212,28 @@ default:ipapermissiontype: SYSTEM
|
||||
dn: cn=config
|
||||
add:aci: (targetattr = "cn || createtimestamp || entryusn || modifytimestamp || objectclass || passsyncmanagersdns*")(target = "ldap:///cn=ipa_pwd_extop,cn=plugins,cn=config")(version 3.0;acl "permission:Read PassSync Managers Configuration";allow (compare,read,search) groupdn = "ldap:///cn=Read PassSync Managers Configuration,cn=permissions,cn=pbac,$SUFFIX";)
|
||||
|
||||
dn: cn=Read Replication Changelog Configuration,cn=permissions,cn=pbac,$SUFFIX
|
||||
default:objectClass: groupofnames
|
||||
default:objectClass: ipapermission
|
||||
default:objectClass: top
|
||||
default:cn: Read Replication Changelog Configuration
|
||||
default:member: cn=Replication Administrators,cn=privileges,cn=pbac,$SUFFIX
|
||||
default:ipapermissiontype: SYSTEM
|
||||
|
||||
dn: cn=config
|
||||
add:aci: (targetattr = "cn || objectclass || nsslapd-changelogmaxentries || nsslapd-changelogmaxage || nsslapd-changelogtrim-interval || nsslapd-encryptionalgorithm || nsSymmetricKey")(targetfilter = "cn=changelog")(target = "ldap:///cn=ldbm database,cn=plugins,cn=config")(version 3.0; acl "permission:Read Replication Changelog Configuration"; allow (read,search) groupdn = "ldap:///cn=Read Replication Changelog Configuration,cn=permissions,cn=pbac,$SUFFIX";)
|
||||
|
||||
dn: cn=Write Replication Changelog Configuration,cn=permissions,cn=pbac,$SUFFIX
|
||||
default:objectClass: groupofnames
|
||||
default:objectClass: ipapermission
|
||||
default:objectClass: top
|
||||
default:cn: Write Replication Changelog Configuration
|
||||
default:member: cn=Replication Administrators,cn=privileges,cn=pbac,$SUFFIX
|
||||
default:ipapermissiontype: SYSTEM
|
||||
|
||||
dn: cn=config
|
||||
add:aci: (targetattr = "nsslapd-changelogmaxentries || nsslapd-changelogmaxage || nsslapd-changelogtrim-interval || nsslapd-encryptionalgorithm || nsSymmetricKey")(targetfilter = "cn=changelog")(target = "ldap:///cn=ldbm database,cn=plugins,cn=config")(version 3.0; acl "permission:Write Replication Changelog Configuration"; allow (write) groupdn = "ldap:///cn=Write Replication Changelog Configuration,cn=permissions,cn=pbac,$SUFFIX";)
|
||||
|
||||
dn: cn=Modify PassSync Managers Configuration,cn=permissions,cn=pbac,$SUFFIX
|
||||
default:objectClass: groupofnames
|
||||
default:objectClass: ipapermission
|
||||
|
@ -45,7 +45,7 @@ class update_changelog_maxage(Updater):
|
||||
cl_entry = ldap.get_entry(dn, ['nsslapd-changelogmaxage'])
|
||||
self.update_entry(cl_entry, ldap)
|
||||
except errors.NotFound:
|
||||
logger.warning('Error retrieving: %s', str(dn))
|
||||
logger.debug('Error retrieving: %s', str(dn))
|
||||
return False, []
|
||||
|
||||
return False, []
|
||||
|
@ -619,7 +619,11 @@ class ReplicationManager:
|
||||
else:
|
||||
# Set the changelog trimming
|
||||
cl_entry['nsslapd-changelogmaxage'] = '7d'
|
||||
conn.update_entry(cl_entry)
|
||||
try:
|
||||
conn.update_entry(cl_entry)
|
||||
except errors.EmptyModlist:
|
||||
# not a problem since the trimming is already set
|
||||
pass
|
||||
|
||||
def _finalize_replica_settings(self, conn):
|
||||
"""Change replica settings to final values
|
||||
|
Loading…
Reference in New Issue
Block a user