mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
13 lines
247 B
Bash
Executable File
13 lines
247 B
Bash
Executable File
#! /bin/sh
|
|
# $OpenLDAP$
|
|
if [ x"$MONITORDB" = x"yes" ] ; then
|
|
MON=monitor
|
|
else
|
|
MON=nomonitor
|
|
fi
|
|
sed -e "s/@BACKEND@/${BACKEND}/" \
|
|
-e "s/^#${BACKEND}#//" \
|
|
-e "s/^#${MON}#//" \
|
|
-e "s/@PORT@/${PORT}/" \
|
|
-e "s/@SLAVEPORT@/${SLAVEPORT}/"
|