4 lines
129 B
Bash
4 lines
129 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
ldapsearch -x -H ldap://${LDAP_HOST}:${LDAP_PORT} -D ${LDAP_USER} -b ${LDAP_BASEDN} -w ${LDAP_PASSWORD}
|
||
|
exit 0
|