mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-22 23:59:34 -05:00
16 lines
370 B
Bash
Executable file
16 lines
370 B
Bash
Executable file
#! /bin/sh
|
|
# $OpenLDAP$
|
|
if [ x"$MONITORDB" = x"yes" ] ; then
|
|
MON=monitor
|
|
else
|
|
MON=nomonitor
|
|
fi
|
|
if [ x"$BACKENDTYPE" = x"mod" ]; then
|
|
MODULELOAD="moduleload back_${BACKEND}.la"
|
|
fi
|
|
sed -e "s/@BACKEND@/${BACKEND}/" \
|
|
-e "s/@MODULELOAD@/${MODULELOAD}/" \
|
|
-e "s/^#${BACKEND}#//" \
|
|
-e "s/^#${MON}#//" \
|
|
-e "s/@PORT@/${PORT}/" \
|
|
-e "s/@SLAVEPORT@/${SLAVEPORT}/"
|