mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-16 11:21:56 -06:00
62d40286ac
When we un-enroll a client we'll do a bit of cleanup including removing any principals for the IPA realm from /etc/krb5.keytab. This removes principals in 2 ways: - By principal, only entries matching the full principal are removed - By realm. Any principal for that realm is removed This does not change the KDC at all, just removes entries from a file on the client machine.
19 lines
348 B
Makefile
19 lines
348 B
Makefile
# This file will be processed with automake-1.7 to create Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS = 1.7
|
|
|
|
NULL =
|
|
|
|
man_MANS = \
|
|
ipa-getkeytab.1 \
|
|
ipa-rmkeytab.1 \
|
|
ipa-client-install.1 \
|
|
ipa-join.1
|
|
|
|
install-data-hook:
|
|
@for i in $(man_MANS) ; do gzip -f $(DESTDIR)$(man1dir)/$$i ; done
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
Makefile.in \
|
|
$(NULL)
|