diff options
| author | Rob Crittenden <rcritten@redhat.com> | 2013-12-03 09:14:00 -0700 |
|---|---|---|
| committer | Petr Viktorin <pviktori@redhat.com> | 2014-04-30 21:57:27 +0200 |
| commit | 64dcb1ec76fa706320746720431ef815eb3e9ecd (patch) | |
| tree | fe2884e42b5dcc11cdd640e7d2b790d20d86e63b /smartproxy/Makefile.am | |
| parent | 923c7ab7bc0eb361dae6e6fb3f05854499625368 (diff) | |
| download | freeipa-64dcb1ec76fa706320746720431ef815eb3e9ecd.tar.gz freeipa-64dcb1ec76fa706320746720431ef815eb3e9ecd.tar.xz freeipa-64dcb1ec76fa706320746720431ef815eb3e9ecd.zip | |
Implement an IPA Foreman smartproxy server
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>
Diffstat (limited to 'smartproxy/Makefile.am')
| -rw-r--r-- | smartproxy/Makefile.am | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/smartproxy/Makefile.am b/smartproxy/Makefile.am new file mode 100644 index 000000000..f79aecfc3 --- /dev/null +++ b/smartproxy/Makefile.am @@ -0,0 +1,45 @@ +# 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 |
