mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 07:33:27 -06:00
1c4ae37293
New LDAP object class "ipaUserSubordinate" with four new fields: - ipasubuidnumber / ipasubuidcount - ipasubgidnumber / ipasgbuidcount New self-service permission to add subids. New command user-auto-subid to auto-assign subid The code hard-codes counts to 65536, sets subgid equal to subuid, and does not allow removal of subids. There is also a hack that emulates a DNA plugin with step interval 65536 for testing. Work around problem with older SSSD clients that fail with unknown idrange type "ipa-local-subid", see: https://github.com/SSSD/sssd/issues/5571 Related: https://pagure.io/freeipa/issue/8361 Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Francois Cami <fcami@redhat.com> Reviewed-By: Rob Crittenden <rcritten@redhat.com>
93 lines
1.8 KiB
Makefile
93 lines
1.8 KiB
Makefile
NULL =
|
|
|
|
SUBDIRS = \
|
|
man \
|
|
$(NULL)
|
|
|
|
dist_noinst_DATA = \
|
|
ipa-ca-install.in \
|
|
ipa-ccache-sweeper.in \
|
|
ipa-dns-install.in \
|
|
ipa-kra-install.in \
|
|
ipa-server-install.in \
|
|
ipa-adtrust-install.in \
|
|
ipa-replica-conncheck.in \
|
|
ipa-replica-install.in \
|
|
ipa-replica-manage.in \
|
|
ipa-csreplica-manage.in \
|
|
ipa-server-certinstall.in \
|
|
ipa-server-upgrade.in \
|
|
ipactl.in \
|
|
ipa-compat-manage.in \
|
|
ipa-nis-manage.in \
|
|
ipa-managed-entries.in \
|
|
ipa-ldap-updater.in \
|
|
ipa-otptoken-import.in \
|
|
ipa-backup.in \
|
|
ipa-restore.in \
|
|
ipa-advise.in \
|
|
ipa-cacert-manage.in \
|
|
ipa-winsync-migrate.in \
|
|
ipa-pkinit-manage.in \
|
|
ipa-crlgen-manage.in \
|
|
ipa-cert-fix.in \
|
|
ipa-custodia.in \
|
|
ipa-custodia-check.in \
|
|
ipa-httpd-kdcproxy.in \
|
|
ipa-httpd-pwdreader.in \
|
|
ipa-pki-retrieve-key.in \
|
|
ipa-pki-wait-running.in \
|
|
ipa-acme-manage.in \
|
|
ipa-subids.in \
|
|
$(NULL)
|
|
|
|
nodist_sbin_SCRIPTS = \
|
|
ipa-ca-install \
|
|
ipa-dns-install \
|
|
ipa-kra-install \
|
|
ipa-server-install \
|
|
ipa-adtrust-install \
|
|
ipa-replica-conncheck \
|
|
ipa-replica-install \
|
|
ipa-replica-manage \
|
|
ipa-csreplica-manage \
|
|
ipa-server-certinstall \
|
|
ipa-server-upgrade \
|
|
ipactl \
|
|
ipa-compat-manage \
|
|
ipa-nis-manage \
|
|
ipa-managed-entries \
|
|
ipa-ldap-updater \
|
|
ipa-otptoken-import \
|
|
ipa-backup \
|
|
ipa-restore \
|
|
ipa-advise \
|
|
ipa-cacert-manage \
|
|
ipa-winsync-migrate \
|
|
ipa-pkinit-manage \
|
|
ipa-crlgen-manage \
|
|
ipa-cert-fix \
|
|
ipa-acme-manage \
|
|
$(NULL)
|
|
|
|
appdir = $(libexecdir)/ipa/
|
|
nodist_app_SCRIPTS = \
|
|
ipa-ccache-sweeper \
|
|
ipa-custodia \
|
|
ipa-custodia-check \
|
|
ipa-httpd-kdcproxy \
|
|
ipa-httpd-pwdreader \
|
|
ipa-pki-retrieve-key \
|
|
ipa-pki-wait-running \
|
|
ipa-subids \
|
|
$(NULL)
|
|
|
|
PYTHON_SHEBANG = \
|
|
$(nodist_sbin_SCRIPTS) \
|
|
$(nodist_app_SCRIPTS) \
|
|
$(NULL)
|
|
|
|
CLEANFILES = $(PYTHON_SHEBANG)
|
|
|
|
include $(top_srcdir)/Makefile.pythonscripts.am
|