mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-15 10:51:56 -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
32 lines
694 B
Makefile
32 lines
694 B
Makefile
# This file will be processed with automake-1.7 to create Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS = 1.7
|
|
|
|
NULL=
|
|
|
|
man1_MANS = \
|
|
ipa-replica-install.1 \
|
|
ipa-replica-manage.1 \
|
|
ipa-replica-prepare.1 \
|
|
ipa-server-certinstall.1 \
|
|
ipa-server-install.1 \
|
|
ipa-dns-install.1 \
|
|
ipa-ldap-updater.1 \
|
|
ipa-compat-manage.1 \
|
|
ipa-nis-manage.1 \
|
|
ipa-host-net-manage.1 \
|
|
ipa-compliance.1
|
|
|
|
man8_MANS = \
|
|
ipactl.8 \
|
|
ipa_kpasswd.8 \
|
|
$(NULL)
|
|
|
|
install-data-hook:
|
|
@for i in $(man1_MANS) ; do gzip -f $(DESTDIR)$(man1dir)/$$i ; done
|
|
@for i in $(man8_MANS) ; do gzip -f $(DESTDIR)$(man8dir)/$$i ; done
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
Makefile.in \
|
|
$(NULL)
|