mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
ipa-uuid: DNA-like plugin that generates uuids
This commit is contained in:
parent
f6a50c49ad
commit
3a05149201
@ -280,6 +280,7 @@ AC_CONFIG_FILES([
|
||||
ipa-slapi-plugins/ipa-pwd-extop/Makefile
|
||||
ipa-slapi-plugins/ipa-winsync/Makefile
|
||||
ipa-slapi-plugins/ipa-version/Makefile
|
||||
ipa-slapi-plugins/ipa-uuid/Makefile
|
||||
])
|
||||
|
||||
AC_OUTPUT
|
||||
|
@ -3,6 +3,7 @@ NULL =
|
||||
SUBDIRS = \
|
||||
ipa-enrollment \
|
||||
ipa-pwd-extop \
|
||||
ipa-uuid \
|
||||
ipa-version \
|
||||
ipa-winsync \
|
||||
$(NULL)
|
||||
|
42
daemons/ipa-slapi-plugins/ipa-uuid/Makefile.am
Normal file
42
daemons/ipa-slapi-plugins/ipa-uuid/Makefile.am
Normal file
@ -0,0 +1,42 @@
|
||||
NULL =
|
||||
|
||||
INCLUDES = \
|
||||
-I. \
|
||||
-I$(srcdir) \
|
||||
-I/usr/include/dirsrv \
|
||||
-DPREFIX=\""$(prefix)"\" \
|
||||
-DBINDIR=\""$(bindir)"\" \
|
||||
-DLIBDIR=\""$(libdir)"\" \
|
||||
-DLIBEXECDIR=\""$(libexecdir)"\" \
|
||||
-DDATADIR=\""$(datadir)"\" \
|
||||
$(MOZLDAP_CFLAGS) \
|
||||
$(WARN_CFLAGS) \
|
||||
$(NULL)
|
||||
|
||||
plugindir = $(libdir)/dirsrv/plugins
|
||||
plugin_LTLIBRARIES = \
|
||||
libipa_uuid.la \
|
||||
$(NULL)
|
||||
|
||||
libipa_uuid_la_SOURCES = \
|
||||
ipa_uuid.c \
|
||||
$(NULL)
|
||||
|
||||
libipa_uuid_la_LDFLAGS = -avoid-version
|
||||
|
||||
libipa_uuid_la_LIBADD = \
|
||||
$(MOZLDAP_LIBS) \
|
||||
$(NULL)
|
||||
|
||||
appdir = $(IPA_DATA_DIR)
|
||||
app_DATA = \
|
||||
uuid-conf.ldif \
|
||||
$(NULL)
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(app_DATA) \
|
||||
$(NULL)
|
||||
|
||||
MAINTAINERCLEANFILES = \
|
||||
*~ \
|
||||
Makefile.in
|
1250
daemons/ipa-slapi-plugins/ipa-uuid/ipa_uuid.c
Normal file
1250
daemons/ipa-slapi-plugins/ipa-uuid/ipa_uuid.c
Normal file
File diff suppressed because it is too large
Load Diff
15
daemons/ipa-slapi-plugins/ipa-uuid/uuid-conf.ldif
Normal file
15
daemons/ipa-slapi-plugins/ipa-uuid/uuid-conf.ldif
Normal file
@ -0,0 +1,15 @@
|
||||
dn: cn=IPA UUID,cn=plugins,cn=config
|
||||
changetype: add
|
||||
objectclass: top
|
||||
objectclass: nsSlapdPlugin
|
||||
objectclass: extensibleObject
|
||||
cn: IPA UUID
|
||||
nsslapd-pluginpath: libipa_uuid
|
||||
nsslapd-plugininitfunc: ipauuid_init
|
||||
nsslapd-plugintype: preoperation
|
||||
nsslapd-pluginenabled: on
|
||||
nsslapd-pluginid: ipauuid_version
|
||||
nsslapd-pluginversion: 1.0
|
||||
nsslapd-pluginvendor: Red Hat, Inc.
|
||||
nsslapd-plugindescription: IPA UUID plugin
|
||||
nsslapd-plugin-depends-on-type: database
|
@ -260,6 +260,7 @@ rm %{buildroot}/%{plugin_dir}/libipa_pwd_extop.la
|
||||
rm %{buildroot}/%{plugin_dir}/libipa_enrollment_extop.la
|
||||
rm %{buildroot}/%{plugin_dir}/libipa_winsync.la
|
||||
rm %{buildroot}/%{plugin_dir}/libipa_repl_version.la
|
||||
rm %{buildroot}/%{plugin_dir}/libipa_uuid.la
|
||||
|
||||
# Some user-modifiable HTML files are provided. Move these to /etc
|
||||
# and link back.
|
||||
@ -408,6 +409,7 @@ fi
|
||||
%attr(755,root,root) %{plugin_dir}/libipa_enrollment_extop.so
|
||||
%attr(755,root,root) %{plugin_dir}/libipa_winsync.so
|
||||
%attr(755,root,root) %{plugin_dir}/libipa_repl_version.so
|
||||
%attr(755,root,root) %{plugin_dir}/libipa_uuid.so
|
||||
%dir %{_localstatedir}/lib/ipa
|
||||
%attr(700,root,root) %dir %{_localstatedir}/lib/ipa/sysrestore
|
||||
%dir %{_localstatedir}/cache/ipa
|
||||
|
Loading…
Reference in New Issue
Block a user