Lines Matching refs:ret
23 ret=0
24 $CHECKCONF $f > /dev/null || ret=1
25 if [ $ret != 0 ]; then echo "I:failed"; fi
26 status=`expr $status + $ret`
32 ret=0
33 $CHECKCONF $f > /dev/null && ret=1
34 if [ $ret != 0 ]; then echo "I:failed"; fi
35 status=`expr $status + $ret`
39 ret=0
40 grep "out of range" ns2/signer.err > /dev/null || ret=1
41 if [ $ret != 0 ]; then echo "I:failed"; fi
42 status=`expr $status + $ret`
45 ret=0
46 $DIG $DIGOPTS a.example @10.53.0.2 > dig.out.ns2 || ret=1
47 $DIG $DIGOPTS a.example @10.53.0.3 > dig.out.ns3 || ret=1
48 grep "status: NOERROR" dig.out.ns2 > /dev/null || ret=1
49 grep "status: SERVFAIL" dig.out.ns3 > /dev/null || ret=1
50 if [ $ret != 0 ]; then echo "I:failed"; fi
51 status=`expr $status + $ret`