mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-25 16:31:08 -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>
32 lines
728 B
Makefile
32 lines
728 B
Makefile
# This file will be processed with automake-1.7 to create Makefile.in
|
|
#
|
|
AUTOMAKE_OPTIONS = 1.7
|
|
|
|
NULL =
|
|
|
|
dist_noinst_DATA = \
|
|
ipa-custodia.service.in \
|
|
ipa.service.in \
|
|
ipa-ccache-sweep.service.in \
|
|
ipa-ccache-sweep.timer.in \
|
|
$(NULL)
|
|
|
|
systemdsystemunit_DATA = \
|
|
ipa-custodia.service \
|
|
ipa.service \
|
|
ipa-ccache-sweep.service \
|
|
ipa-ccache-sweep.timer \
|
|
$(NULL)
|
|
|
|
CLEANFILES = $(systemdsystemunit_DATA)
|
|
|
|
%: %.in Makefile
|
|
sed \
|
|
-e 's|@bindir[@]|$(bindir)|g' \
|
|
-e 's|@IPA_SYSCONF_DIR[@]|$(IPA_SYSCONF_DIR)|g' \
|
|
-e 's|@localstatedir[@]|$(localstatedir)|g' \
|
|
-e 's|@sbindir[@]|$(sbindir)|g' \
|
|
-e 's|@libexecdir[@]|$(libexecdir)|g' \
|
|
-e 's|@sysconfenvdir[@]|$(sysconfenvdir)|g' \
|
|
'$(srcdir)/$@.in' >$@
|