mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-28 01:41:14 -06:00
f4d2f2a65b
This script edits nsswitch.conf to use either ldap (autofs) or sss (sssd) to find automount maps. NFSv4 services are started so Kerberos encryption and/or integrity can be used on the maps. https://fedorahosted.org/freeipa/ticket/1233 https://fedorahosted.org/freeipa/ticket/2193
24 lines
481 B
Makefile
24 lines
481 B
Makefile
# This file will be processed with automake-1.7 to create Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS = 1.7
|
|
|
|
NULL =
|
|
|
|
man1_MANS = \
|
|
ipa-getkeytab.1 \
|
|
ipa-rmkeytab.1 \
|
|
ipa-client-install.1 \
|
|
ipa-client-automount.1 \
|
|
ipa-join.1
|
|
|
|
man5_MANS = \
|
|
default.conf.5
|
|
|
|
install-data-hook:
|
|
@for i in $(man1_MANS) ; do gzip -f $(DESTDIR)$(man1dir)/$$i ; done
|
|
@for i in $(man5_MANS) ; do gzip -f $(DESTDIR)$(man5dir)/$$i ; done
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
Makefile.in \
|
|
$(NULL)
|