on Solaris, /bin/sh is not bash; grep doesn't like ^auditcontext: without quotes

This commit is contained in:
Pierangelo Masarati 2007-02-24 18:30:40 +00:00
parent 5ed0fc3749
commit d9f63b082e

View File

@ -339,9 +339,9 @@ fi
test $KILLSERVERS != no && kill -HUP $KILLPIDS
echo "Filtering producer results..."
. $LDIFFILTER < $MASTEROUT | grep -iv ^auditcontext: > $MASTERFLT
. $LDIFFILTER < $MASTEROUT | grep -iv "^auditcontext:" > $MASTERFLT
echo "Filtering consumer results..."
. $LDIFFILTER < $SLAVEOUT | grep -iv ^auditcontext: > $SLAVEFLT
. $LDIFFILTER < $SLAVEOUT | grep -iv "^auditcontext:" > $SLAVEFLT
echo "Comparing retrieved entries from producer and consumer..."
$CMP $MASTERFLT $SLAVEFLT > $CMPOUT