]> git.sur5r.net Git - openldap/commitdiff
Just catch error, don't explain it
authorKurt Zeilenga <kurt@openldap.org>
Wed, 13 Sep 2000 01:16:10 +0000 (01:16 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Wed, 13 Sep 2000 01:16:10 +0000 (01:16 +0000)
tests/scripts/test000-rootdse

index d11c5c44ca45be00d24a9de901d56126478bcf51..3f7a0e89fa3dfa952661be1133dbb3a95c01c2eb 100755 (executable)
@@ -41,15 +41,8 @@ cat $SEARCHOUT
 if test $RC != 0 ; then
        echo ">>>>> Test failed"
 else
-       if grep PRNG $SEARCHOUT; then
-           cat << EOF
-
-You need a pseudo random number generator, such as a /dev/urandom,
-/dev/urandom, or an entropy gathering daemon.  Alternatively, you
-can use openssl to generate a $HOME/.rnd file.
-See www.openssl.org for more details on how to do this.
-EOF
-       RC=-1
+       if grep "TLS:" $SEARCHOUT; then
+               RC=-1
        else
            echo ">>>>> Test succeeded"
        fi