From a0fd06ed42c1dd0c5432768672904c4852b704e5 Mon Sep 17 00:00:00 2001 From: Gilles Mouchet Date: Wed, 1 Jan 2025 17:54:52 +0100 Subject: [PATCH] fixed ldapsearch --- reinit-ldap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reinit-ldap.sh b/reinit-ldap.sh index f78b974..f375df9 100755 --- a/reinit-ldap.sh +++ b/reinit-ldap.sh @@ -11,5 +11,5 @@ if [[ $REPLY =~ ^[Yy]$ ]]; then docker compose up -d sleep 5 ./ldap-init.sh - ldapsearch -H ldaps://$LDAP_SRV -x -D "cn=Access LDAP,ou=people,$LDAP_ROOT" -b "$LDAP_ROOT" -w pa55w0rd + ldapsearch -H $LDAP_SRV -x -D "cn=Access LDAP,ou=people,$LDAP_ROOT" -b "$LDAP_ROOT" -w pa55w0rd fi