mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
This adds two new commands to ipa-replica-manage: list-ruv & clean-ruv list-ruv can be use to list the update vectors the master has configugured clean-ruv can be used to fire off the CLEANRUV task to remove a replication vector. It should be used with caution. https://fedorahosted.org/freeipa/ticket/2303
51 lines
1.0 KiB
Makefile
51 lines
1.0 KiB
Makefile
NULL =
|
|
|
|
appdir = $(IPA_DATA_DIR)/updates
|
|
app_DATA = \
|
|
10-60basev2.update \
|
|
10-60basev3.update \
|
|
10-RFC2307bis.update \
|
|
10-RFC4876.update \
|
|
10-config.update \
|
|
10-selinuxusermap.update \
|
|
10-sudo.update \
|
|
10-ssh.update \
|
|
10-bind-schema.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 \
|
|
10-schema_compat.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-replication.update \
|
|
40-dns.update \
|
|
40-automember.update \
|
|
45-roles.update \
|
|
50-lockout-policy.update \
|
|
50-groupuuid.update \
|
|
50-hbacservice.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
|