Skip to content

Commit 865f034

Browse files
committed
Disable adding syncprov module to database while there exists replicating config.
1 parent 635034a commit 865f034

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

image/service/slapd/startup.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,8 @@ EOF
456456
function disableReplication() {
457457
sed -i "s|{{ LDAP_BACKEND }}|${LDAP_BACKEND}|g" ${CONTAINER_SERVICE_DIR}/slapd/assets/config/replication/replication-disable.ldif
458458
ldapmodify -c -Y EXTERNAL -Q -H ldapi:/// -f ${CONTAINER_SERVICE_DIR}/slapd/assets/config/replication/replication-disable.ldif 2>&1 | log-helper debug || true
459-
[[ -f "$WAS_STARTED_WITH_REPLICATION" ]] && rm -f "$WAS_STARTED_WITH_REPLICATION"
459+
[[ -f "$WAS_STARTED_WITH_REPLICATION" ]] && rm -f "$WAS_STARTED_WITH_REPLICATION" && \
460+
sed -i '/^# Add syncprov/,/^$/d' ${CONTAINER_SERVICE_DIR}/slapd/assets/config/replication/replication-enable.ldif
460461
}
461462

462463
if [ "${LDAP_REPLICATION,,}" == "true" ]; then

0 commit comments

Comments
 (0)