Skip to content
Snippets Groups Projects
Commit d9f63b08 authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

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

parent 5ed0fc37
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment