mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-28 01:41:14 -06:00
2e8bae590e
We don't use certmonger to get certificates during installation because of the chicken-and-egg problem. This means that the IPA web and ldap certs aren't being tracked for renewal. This requires some manual changes to the certmonger request files once tracking has begun because it doesn't store a subject or principal template when a cert is added via start-tracking. This also required some changes to the cert command plugin to allow a host to execute calls against its own service certs. ticket 67
27 lines
404 B
Makefile
27 lines
404 B
Makefile
NULL =
|
|
|
|
appdir = $(pythondir)/ipaserver
|
|
app_PYTHON = \
|
|
__init__.py \
|
|
bindinstance.py \
|
|
cainstance.py \
|
|
dsinstance.py \
|
|
ipaldap.py \
|
|
krbinstance.py \
|
|
httpinstance.py \
|
|
ntpinstance.py \
|
|
service.py \
|
|
installutils.py \
|
|
replication.py \
|
|
certs.py \
|
|
ldapupdate.py \
|
|
certmonger.py \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
$(NULL)
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
*~ \
|
|
Makefile.in
|