mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
This currently server supports only host and hostgroup commands for retrieving, adding and deleting entries. The incoming requests are completely unauthenticated and by default requests must be local. Utilize GSS-Proxy to manage the TGT. Configuration information is in the ipa-smartproxy man page. Design: http://www.freeipa.org/page/V3/Smart_Proxy https://fedorahosted.org/freeipa/ticket/4128 Reviewed-By: Petr Viktorin <pviktori@redhat.com>
46 lines
723 B
Makefile
46 lines
723 B
Makefile
# This file will be processed with automake-1.7 to create Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS = 1.7
|
|
|
|
NULL =
|
|
|
|
etcdir = $(IPA_SYSCONF_DIR)
|
|
etc_DATA = \
|
|
ipa-smartproxy.conf \
|
|
$(NULL)
|
|
|
|
appdir = $(IPA_DATA_DIR)/smartproxy
|
|
app_DATA = \
|
|
ipa-smartproxy.py \
|
|
$(NULL)
|
|
|
|
rotatedir = $(LOGROTATE_DIR)
|
|
rotate_DATA = \
|
|
ipa-smartproxy.logrotate \
|
|
$(NULL)
|
|
|
|
SUBDIRS = \
|
|
man \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
$(app_DATA) \
|
|
$(etc_DATA) \
|
|
$(rotate_DATA) \
|
|
$(NULL)
|
|
|
|
DISTCLEANFILES = \
|
|
$(NULL)
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
*~ \
|
|
aclocal.m4 \
|
|
configure \
|
|
install-sh \
|
|
missing \
|
|
Makefile.in \
|
|
$(NULL)
|
|
|
|
install-data-hook:
|
|
mv $(DESTDIR)/$(LOGROTATE_DIR)/ipa-smartproxy.logrotate $(DESTDIR)/$(LOGROTATE_DIR)/ipa-smartproxy
|