mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-24 08:00:02 -06:00
7cbd9bd429
This commit adds configuration for HTTPD to encrypt/decrypt its key which we currently store in clear on the disc. A password-reading script is added for mod_ssl. This script is extensible for the future use of directory server with the expectation that key encryption/decription will be handled similarly by its configuration. https://pagure.io/freeipa/issue/7421 Reviewed-By: Rob Crittenden <rcritten@redhat.com> Reviewed-By: Christian Heimes <cheimes@redhat.com>
40 lines
1.2 KiB
Makefile
40 lines
1.2 KiB
Makefile
# This file will be processed with automake-1.7 to create Makefile.in
|
|
#
|
|
AUTOMAKE_OPTIONS = 1.7
|
|
|
|
NULL =
|
|
|
|
SUBDIRS = \
|
|
certmonger \
|
|
html \
|
|
migration \
|
|
share \
|
|
ui \
|
|
tools \
|
|
updates \
|
|
restart_scripts \
|
|
wsgi \
|
|
oddjob \
|
|
$(NULL)
|
|
|
|
install-exec-local:
|
|
$(INSTALL) -d -m 700 $(DESTDIR)$(IPA_SYSCONF_DIR)/custodia
|
|
$(INSTALL) -d -m 700 $(DESTDIR)$(localstatedir)/lib/ipa/backup
|
|
$(INSTALL) -d -m 700 $(DESTDIR)$(localstatedir)/lib/ipa/gssproxy
|
|
$(INSTALL) -d -m 700 $(DESTDIR)$(localstatedir)/lib/ipa/sysrestore
|
|
$(INSTALL) -d -m 700 $(DESTDIR)$(localstatedir)/lib/ipa/sysupgrade
|
|
$(INSTALL) -d -m 755 $(DESTDIR)$(localstatedir)/lib/ipa/pki-ca
|
|
$(INSTALL) -d -m 755 $(DESTDIR)$(localstatedir)/lib/ipa/certs
|
|
$(INSTALL) -d -m 700 $(DESTDIR)$(localstatedir)/lib/ipa/private
|
|
$(INSTALL) -d -m 700 $(DESTDIR)$(localstatedir)/lib/ipa/passwds
|
|
|
|
uninstall-local:
|
|
-rmdir $(DESTDIR)$(localstatedir)/lib/ipa/sysrestore
|
|
-rmdir $(DESTDIR)$(localstatedir)/lib/ipa/sysupgrade
|
|
-rmdir $(DESTDIR)$(localstatedir)/lib/ipa/certs
|
|
-rmdir $(DESTDIR)$(localstatedir)/lib/ipa/private
|
|
-rmdir $(DESTDIR)$(localstatedir)/lib/ipa/passwds
|
|
-rmdir $(DESTDIR)$(localstatedir)/lib/ipa
|
|
|
|
EXTRA_DIST = README.schema
|