-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmacros.openldap
44 lines (43 loc) · 1.17 KB
/
macros.openldap
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Register OpenLDAP schema.
# Author: Elan Ruusamäe <[email protected]>
#
# Usage:
# %%openldap_schema_register [-d core,nis] %{schemadir}/horde.schema
#
# -d specify dependant schemas, separated by comma
#
%openldap_schema_register(d:) \
for schema in %*; do \
if ! grep -q "$schema" /etc/openldap/slapd.conf; then \
%{__sed} -i -e " \
/^include.*local.schema/{ \
iinclude\\t $schema\
} \
" /etc/openldap/slapd.conf \
fi \
done \
# enable dependant schemas \
if [ "%{-d*}" ]; then \
%{__sed} -i -e ' \
/^#include.*\\(%(echo '%{-d*}' | %{__sed} -e 's/,/\\\\|/g')\\)\\.schema/{ \
s/^#// \
}' /etc/openldap/slapd.conf \
fi \
%{nil}
# Unregister OpenLDAP schema.
# Author: Elan Ruusamäe <[email protected]>
#
# Usage:
# %%openldap_schema_unregister %{schemadir}/horde.schema
#
%openldap_schema_unregister() \
for schema in %*; do \
if grep -q "$schema" /etc/openldap/slapd.conf; then \
%{__sed} -i -e " \
/^include.*$(echo "$schema" | %{__sed} -e 's,/,\\\\/,g')/d \
# for symmetry it would be nice if we disable enabled schemas in post, \
# but we really can not do that, it would break something else. \
" /etc/openldap/slapd.conf \
fi \
done \
%{nil}