Correctly exit if the backend is back-ldap

This commit is contained in:
Quanah Gibson-Mount 2017-02-03 14:30:30 -08:00
parent c01bbc7e3b
commit 5c21726f62
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@
echo "running defines.sh"
. $SRCDIR/scripts/defines.sh
if test $BACKLDAP = "ldapno" ; then
if test $BACKLDAP != "ldapno" ; then
echo "LDAP backend not available, test skipped"
exit 0
fi

View File

@ -16,7 +16,7 @@
echo "running defines.sh"
. $SRCDIR/scripts/defines.sh
if test $BACKLDAP = "ldapno" ; then
if test $BACKLDAP != "ldapno" ; then
echo "LDAP backend not available, test skipped"
exit 0
fi