mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-13 09:41:55 -06:00
12f4584f57
Currently the framework is used to add the group but we want to avoid that users are added explicitly to the group by removing the objectclasses groupofnames, ipausergroup and nestedgroup and we want to use a name with spaces in it. Both it not easy possible with the framework, a LDIF file is used instead to create the group. Fixes https://fedorahosted.org/freeipa/ticket/3147
71 lines
1.4 KiB
Makefile
71 lines
1.4 KiB
Makefile
NULL =
|
|
|
|
appdir = $(IPA_DATA_DIR)
|
|
app_DATA = \
|
|
05rfc2247.ldif \
|
|
60kerberos.ldif \
|
|
60samba.ldif \
|
|
60ipaconfig.ldif \
|
|
60basev2.ldif \
|
|
60basev3.ldif \
|
|
60ipadns.ldif \
|
|
61kerberos-ipav3.ldif \
|
|
65ipasudo.ldif \
|
|
anonymous-vlv.ldif \
|
|
bootstrap-template.ldif \
|
|
caJarSigningCert.cfg.template \
|
|
default-aci.ldif \
|
|
default-hbac.ldif \
|
|
default-smb-group.ldif \
|
|
delegation.ldif \
|
|
replica-acis.ldif \
|
|
ds-nfiles.ldif \
|
|
dns.ldif \
|
|
kerberos.ldif \
|
|
indices.ldif \
|
|
bind.named.conf.template \
|
|
bind.zone.db.template \
|
|
certmap.conf.template \
|
|
kdc.conf.template \
|
|
kdc_extensions.template \
|
|
kdc_req.conf.template \
|
|
krb5.conf.template \
|
|
krb5.ini.template \
|
|
krb.con.template \
|
|
krb.js.template \
|
|
krbrealm.con.template \
|
|
preferences.html.template \
|
|
smb.conf.template \
|
|
smb.conf.empty \
|
|
referint-conf.ldif \
|
|
dna.ldif \
|
|
master-entry.ldif \
|
|
memberof-task.ldif \
|
|
memberof-conf.ldif \
|
|
nis.uldif \
|
|
unique-attributes.ldif \
|
|
schema_compat.uldif \
|
|
ldapi.ldif \
|
|
wsgi.py \
|
|
repoint-managed-entries.ldif \
|
|
managed-entries.ldif \
|
|
user_private_groups.ldif \
|
|
host_nis_groups.ldif \
|
|
uuid-ipauniqueid.ldif \
|
|
modrdn-krbprinc.ldif \
|
|
entryusn.ldif \
|
|
root-autobind.ldif \
|
|
sudobind.ldif \
|
|
automember.ldif \
|
|
replica-automember.ldif \
|
|
replica-s4u2proxy.ldif \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
$(app_DATA) \
|
|
$(NULL)
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
*~ \
|
|
Makefile.in
|