mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-25 16:31:08 -06:00
275998f6bd
Adds a plugin, entitle, to register to the entitlement server, consume entitlements and to count and track them. It is also possible to import an entitlement certificate (if for example the remote entitlement server is unaviailable). This uses the candlepin server from https://fedorahosted.org/candlepin/wiki for entitlements. Add a cron job to validate the entitlement status and syslog the results. tickets 28, 79, 278
31 lines
468 B
Makefile
31 lines
468 B
Makefile
NULL =
|
|
|
|
SUBDIRS = \
|
|
man \
|
|
$(NULL)
|
|
|
|
sbin_SCRIPTS = \
|
|
ipa-dns-install \
|
|
ipa-server-install \
|
|
ipa-replica-install \
|
|
ipa-replica-prepare \
|
|
ipa-replica-manage \
|
|
ipa-server-certinstall \
|
|
ipactl \
|
|
ipa-compat-manage \
|
|
ipa-nis-manage \
|
|
ipa-host-net-manage \
|
|
ipa-ldap-updater \
|
|
ipa-upgradeconfig \
|
|
ipa-compliance \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
README \
|
|
$(sbin_SCRIPTS) \
|
|
$(NULL)
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
*~ \
|
|
Makefile.in
|