mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-16 03:11:57 -06:00
c373ed5c5c
This add replication setup through two new commands: ipa-replica-prepare and ipa-replica-install. The procedure is to run ipa-replica-prepare on an existing master. This will collect information about the realm and the current master and create a file storing all of the information. After copying that file to the new replica, ipa-replica-install is run (with -r to create a read-only replica). This version of the patch also includes fixes for the sasl mappings on the replicas. Remaining features: - ssl for replication. - automatic configuration of mesh topology for master (or a simpler way to replicate multiple masters. - tool for view / configuring current replication.
27 lines
341 B
Makefile
27 lines
341 B
Makefile
NULL =
|
|
|
|
SUBDIRS = \
|
|
share \
|
|
$(NULL)
|
|
|
|
sbin_SCRIPTS = \
|
|
ipa-server-install \
|
|
ipa-replica-install \
|
|
ipa-replica-prepare \
|
|
$(NULL)
|
|
|
|
appdir = $(IPA_DATA_DIR)
|
|
app_SCRIPTS = \
|
|
ipa-server-setupssl \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
README \
|
|
$(app_SCRIPTS) \
|
|
$(sbin_SCRIPTS) \
|
|
$(NULL)
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
*~ \
|
|
Makefile.in
|