4
0
Fork 0
ldap-admin/bin/show-ldif

11 lines
186 B
Bash
Executable File

#!/bin/bash
#% show-ldif
#% Show operations not yet commited in ldif form
if [ $LDAP_SHELL -ne 1 ]; then
echo "Not running in LDAP shell mode" >&2
return 1
else
cat $LDIF_BASE
fi