mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-27 09:21:59 -06:00
c81849712f
Provides a pluggable framework for generating configuration scriptlets and instructions for various machine setups and use cases. Creates a new ipa-advise command, available to root user on the IPA server. Also provides an example configuration plugin, config-fedora-authconfig. https://fedorahosted.org/freeipa/ticket/3670
37 lines
585 B
Makefile
37 lines
585 B
Makefile
NULL =
|
|
|
|
SUBDIRS = \
|
|
man \
|
|
$(NULL)
|
|
|
|
sbin_SCRIPTS = \
|
|
ipa-ca-install \
|
|
ipa-dns-install \
|
|
ipa-server-install \
|
|
ipa-adtrust-install \
|
|
ipa-replica-conncheck \
|
|
ipa-replica-install \
|
|
ipa-replica-prepare \
|
|
ipa-replica-manage \
|
|
ipa-csreplica-manage \
|
|
ipa-server-certinstall \
|
|
ipactl \
|
|
ipa-compat-manage \
|
|
ipa-nis-manage \
|
|
ipa-managed-entries \
|
|
ipa-ldap-updater \
|
|
ipa-upgradeconfig \
|
|
ipa-backup \
|
|
ipa-restore \
|
|
ipa-advise \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
README \
|
|
$(sbin_SCRIPTS) \
|
|
$(NULL)
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
*~ \
|
|
Makefile.in
|