1#! /bin/sh
2# OpenLDAP: pkg/ldap/tests/scripts/conf.sh,v 1.49.2.12 2010/04/19 19:14:31 quanah Exp
3## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4##
5## Copyright 1998-2010 The OpenLDAP Foundation.
6## All rights reserved.
7##
8## Redistribution and use in source and binary forms, with or without
9## modification, are permitted only as authorized by the OpenLDAP
10## Public License.
11##
12## A copy of this license is available in the file LICENSE in the
13## top-level directory of the distribution or, alternatively, at
14## <http://www.OpenLDAP.org/license.html>.
15MONMOD=nomod
16if [ x"$MONITORDB" = xyes -o x"$MONITORDB" = xmod ] ; then
17	MON=monitor
18	if [ $MONITORDB = mod ] ; then
19		MONMOD=monitormod
20	fi
21else
22	MON=nomonitor
23fi
24if [ x"$WITH_SASL" = x"yes" -a x"$USE_SASL" != x"no" ] ; then
25	SASL="sasl"
26	if [ x"$USE_SASL" = x"yes" ] ; then
27		USE_SASL=DIGEST-MD5
28	fi
29	SASL_MECH="\"saslmech=$USE_SASL\""
30else
31	SASL="nosasl"
32	SASL_MECH=
33fi
34sed -e "s/@BACKEND@/${BACKEND}/"			\
35	-e "s/^#${BACKEND}#//"				\
36	-e "/^#~/s/^#[^#]*~${BACKEND}~[^#]*#/#omit: /"	\
37		-e "s/^#~[^#]*~#//"			\
38	-e "s/@RELAY@/${RELAY}/"			\
39	-e "s/^#relay-${RELAY}#//"			\
40	-e "s/^#${BACKENDTYPE}#//"			\
41	-e "s/^#${AC_ldap}#//"				\
42	-e "s/^#${AC_meta}#//"				\
43	-e "s/^#${AC_relay}#//"				\
44	-e "s/^#${AC_sql}#//"				\
45		-e "s/^#${RDBMS}#//"			\
46	-e "s/^#${AC_accesslog}#//"			\
47	-e "s/^#${AC_dds}#//"				\
48	-e "s/^#${AC_dynlist}#//"			\
49	-e "s/^#${AC_memberof}#//"			\
50	-e "s/^#${AC_pcache}#//"			\
51	-e "s/^#${AC_ppolicy}#//"			\
52	-e "s/^#${AC_refint}#//"			\
53	-e "s/^#${AC_retcode}#//"			\
54	-e "s/^#${AC_rwm}#//"				\
55	-e "s/^#${AC_syncprov}#//"			\
56	-e "s/^#${AC_translucent}#//"			\
57	-e "s/^#${AC_unique}#//"			\
58	-e "s/^#${AC_valsort}#//"			\
59	-e "s/^#${MON}#//"				\
60	-e "s/^#${MONMOD}#//"				\
61	-e "s/^#${SASL}#//"				\
62	-e "s/^#${ACI}#//"				\
63	-e "s;@URI1@;${URI1};"				\
64	-e "s;@URI2@;${URI2};"				\
65	-e "s;@URI3@;${URI3};"				\
66	-e "s;@URI4@;${URI4};"				\
67	-e "s;@URI5@;${URI5};"				\
68	-e "s;@URI6@;${URI6};"				\
69	-e "s;@PORT1@;${PORT1};"			\
70	-e "s;@PORT2@;${PORT2};"			\
71	-e "s;@PORT3@;${PORT3};"			\
72	-e "s;@PORT4@;${PORT4};"			\
73	-e "s;@PORT5@;${PORT5};"			\
74	-e "s;@PORT6@;${PORT6};"			\
75	-e "s/@SASL_MECH@/${SASL_MECH}/"		\
76	-e "s;@TESTDIR@;${TESTDIR};"			\
77	-e "s;@DATADIR@;${DATADIR};"			\
78	-e "s;@SCHEMADIR@;${SCHEMADIR};"
79