Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions image/service/slapd/startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -305,11 +305,11 @@ EOF

# start OpenLDAP
log-helper info "Start OpenLDAP..."
# At this stage, we can just listen to ldap:// and ldap:// without naming any names
# At this stage, we can just listen to ldapi:// for localhost bootstrapping
if log-helper level ge debug; then
slapd -h "ldap:/// ldapi:///" -u openldap -g openldap -d "$LDAP_LOG_LEVEL" 2>&1 &
slapd -h "ldapi:///" -u openldap -g openldap -d "$LDAP_LOG_LEVEL" 2>&1 &
else
slapd -h "ldap:/// ldapi:///" -u openldap -g openldap
slapd -h "ldapi:///" -u openldap -g openldap
fi


Expand Down