version 1.22.2.5, 2006/01/03 22:16:28
|
version 1.29.2.2, 2007/08/31 23:14:09
|
Line 1
|
Line 1
|
#! /bin/sh |
#! /bin/sh |
# $OpenLDAP: pkg/ldap/tests/scripts/test000-rootdse,v 1.22.2.4 2005/10/05 17:41:31 kurt Exp $ |
# $OpenLDAP: pkg/ldap/tests/scripts/test000-rootdse,v 1.31 2007/01/02 19:01:19 kurt Exp $ |
## This work is part of OpenLDAP Software <http://www.openldap.org/>. |
## This work is part of OpenLDAP Software <http://www.openldap.org/>. |
## |
## |
## Copyright 1998-2006 The OpenLDAP Foundation. |
## Copyright 1998-2007 The OpenLDAP Foundation. |
## All rights reserved. |
## All rights reserved. |
## |
## |
## Redistribution and use in source and binary forms, with or without |
## Redistribution and use in source and binary forms, with or without |
Line 33 sleep 1
|
Line 33 sleep 1
|
echo "Using ldapsearch to retrieve the root DSE..." |
echo "Using ldapsearch to retrieve the root DSE..." |
for i in 0 1 2 3 4 5; do |
for i in 0 1 2 3 4 5; do |
$LDAPSEARCH -b "" -s base -h $LOCALHOST -p $PORT1 \ |
$LDAPSEARCH -b "" -s base -h $LOCALHOST -p $PORT1 \ |
'+extensibleObject' > $SEARCHOUT 2>&1 |
'@extensibleObject' > $SEARCHOUT 2>&1 |
RC=$? |
RC=$? |
if test $RC = 0 ; then |
if test $RC = 0 ; then |
break |
break |
Line 57 if test $RC = 0 ; then
|
Line 57 if test $RC = 0 ; then
|
count=3 |
count=3 |
echo "Using ldapsearch to retrieve the cn=Monitor..." |
echo "Using ldapsearch to retrieve the cn=Monitor..." |
$LDAPSEARCH -b "cn=Monitor" -s base -h $LOCALHOST -p $PORT1 \ |
$LDAPSEARCH -b "cn=Monitor" -s base -h $LOCALHOST -p $PORT1 \ |
'+extensibleObject' >> $SEARCHOUT 2>&1 |
'@monitor' >> $SEARCHOUT 2>&1 |
RC=$? |
RC=$? |
;; |
;; |
esac |
esac |
Line 81 else
|
Line 81 else
|
fi |
fi |
fi |
fi |
|
|
|
test $KILLSERVERS != no && wait |
|
|
exit $RC |
exit $RC |