mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-28 18:01:23 -06:00
b3c2197b7e
When Dogtag 10 based FreeIPA replica is being installed for a Dogtag 9 based master, the PKI database is not updated and miss several ACLs which prevent some of the PKI functions, e.g. an ability to create other clones. Add an update file to do the database update. Content is based on recommendation from PKI team: * https://bugzilla.redhat.com/show_bug.cgi?id=1075118#c9 This update file can be removed when Dogtag database upgrades are done in PKI component. Upstream tickets: * https://fedorahosted.org/pki/ticket/710 (database upgrade framework) * https://fedorahosted.org/pki/ticket/906 (checking database version) Also make sure that PKI service is restarted in the end of the installation as the other services to make sure it picks changes done during LDAP updates. https://fedorahosted.org/freeipa/ticket/4243 Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com> Reviewed-By: Petr Viktorin <pviktori@redhat.com>
52 lines
1.1 KiB
Makefile
52 lines
1.1 KiB
Makefile
NULL =
|
|
|
|
appdir = $(IPA_DATA_DIR)/updates
|
|
app_DATA = \
|
|
10-config.update \
|
|
10-enable-betxn.update \
|
|
10-selinuxusermap.update \
|
|
10-uniqueness.update \
|
|
10-schema_compat.update \
|
|
19-managed-entries.update \
|
|
20-aci.update \
|
|
20-dna.update \
|
|
20-host_nis_groups.update \
|
|
20-indices.update \
|
|
20-nss_ldap.update \
|
|
20-replication.update \
|
|
20-syncrepl.update \
|
|
20-user_private_groups.update \
|
|
20-winsync_index.update \
|
|
21-replicas_container.update \
|
|
21-ca_renewal_container.update \
|
|
25-referint.update \
|
|
30-s4u2proxy.update \
|
|
40-delegation.update \
|
|
40-realm_domains.update \
|
|
40-replication.update \
|
|
40-dns.update \
|
|
40-automember.update \
|
|
40-otp.update \
|
|
45-roles.update \
|
|
50-7_bit_check.update \
|
|
50-dogtag10-migration.update \
|
|
50-lockout-policy.update \
|
|
50-groupuuid.update \
|
|
50-hbacservice.update \
|
|
50-krbenctypes.update \
|
|
50-nis.update \
|
|
50-ipaconfig.update \
|
|
55-pbacmemberof.update \
|
|
60-trusts.update \
|
|
61-trusts-s4u2proxy.update \
|
|
62-ranges.update \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
$(app_DATA) \
|
|
$(NULL)
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
*~ \
|
|
Makefile.in
|