mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 23:50:03 -06:00
c6644b8566
Rather than having a shared ccache per user, configure mod_auth_gssapi to create a unique one. This requires cleanup to remove expired caches. A new script is added, ipa-ccache-sweeper to do this. It will be invoked by a new service, ipa-ccache-sweep, which will be executed every 12 hours by an equally-named timer. https://pagure.io/freeipa/issue/8589 Signed-off-by: Rob Crittenden <rcritten@redhat.com> Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com> Reviewed-By: Francois Cami <fcami@redhat.com>
91 lines
1.8 KiB
Makefile
91 lines
1.8 KiB
Makefile
NULL =
|
|
|
|
SUBDIRS = \
|
|
man \
|
|
$(NULL)
|
|
|
|
dist_noinst_DATA = \
|
|
ipa-ca-install.in \
|
|
ipa-ccache-sweeper.in \
|
|
ipa-dns-install.in \
|
|
ipa-kra-install.in \
|
|
ipa-server-install.in \
|
|
ipa-adtrust-install.in \
|
|
ipa-replica-conncheck.in \
|
|
ipa-replica-install.in \
|
|
ipa-replica-manage.in \
|
|
ipa-csreplica-manage.in \
|
|
ipa-server-certinstall.in \
|
|
ipa-server-upgrade.in \
|
|
ipactl.in \
|
|
ipa-compat-manage.in \
|
|
ipa-nis-manage.in \
|
|
ipa-managed-entries.in \
|
|
ipa-ldap-updater.in \
|
|
ipa-otptoken-import.in \
|
|
ipa-backup.in \
|
|
ipa-restore.in \
|
|
ipa-advise.in \
|
|
ipa-cacert-manage.in \
|
|
ipa-winsync-migrate.in \
|
|
ipa-pkinit-manage.in \
|
|
ipa-crlgen-manage.in \
|
|
ipa-cert-fix.in \
|
|
ipa-custodia.in \
|
|
ipa-custodia-check.in \
|
|
ipa-httpd-kdcproxy.in \
|
|
ipa-httpd-pwdreader.in \
|
|
ipa-pki-retrieve-key.in \
|
|
ipa-pki-wait-running.in \
|
|
ipa-acme-manage.in \
|
|
$(NULL)
|
|
|
|
nodist_sbin_SCRIPTS = \
|
|
ipa-ca-install \
|
|
ipa-dns-install \
|
|
ipa-kra-install \
|
|
ipa-server-install \
|
|
ipa-adtrust-install \
|
|
ipa-replica-conncheck \
|
|
ipa-replica-install \
|
|
ipa-replica-manage \
|
|
ipa-csreplica-manage \
|
|
ipa-server-certinstall \
|
|
ipa-server-upgrade \
|
|
ipactl \
|
|
ipa-compat-manage \
|
|
ipa-nis-manage \
|
|
ipa-managed-entries \
|
|
ipa-ldap-updater \
|
|
ipa-otptoken-import \
|
|
ipa-backup \
|
|
ipa-restore \
|
|
ipa-advise \
|
|
ipa-cacert-manage \
|
|
ipa-winsync-migrate \
|
|
ipa-pkinit-manage \
|
|
ipa-crlgen-manage \
|
|
ipa-cert-fix \
|
|
ipa-acme-manage \
|
|
$(NULL)
|
|
|
|
appdir = $(libexecdir)/ipa/
|
|
nodist_app_SCRIPTS = \
|
|
ipa-ccache-sweeper \
|
|
ipa-custodia \
|
|
ipa-custodia-check \
|
|
ipa-httpd-kdcproxy \
|
|
ipa-httpd-pwdreader \
|
|
ipa-pki-retrieve-key \
|
|
ipa-pki-wait-running \
|
|
$(NULL)
|
|
|
|
PYTHON_SHEBANG = \
|
|
$(nodist_sbin_SCRIPTS) \
|
|
$(nodist_app_SCRIPTS) \
|
|
$(NULL)
|
|
|
|
CLEANFILES = $(PYTHON_SHEBANG)
|
|
|
|
include $(top_srcdir)/Makefile.pythonscripts.am
|