mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-24 13:24:56 +08:00
1990cad7c3
Need to hide cn=Monitor from namingContext
9 lines
167 B
Bash
Executable File
9 lines
167 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#//"
|