Lines Matching refs:ret
24 ret=0
25 $CHECKCONF good.conf > /dev/null 2>&1 || ret=1
26 if [ $ret != 0 ]; then echo "I:failed"; fi
27 status=`expr $status + $ret`
30 ret=1
31 $CHECKCONF bad.conf > /dev/null 2>&1 || ret=0
32 if [ $ret != 0 ]; then echo "I:failed"; fi
33 status=`expr $status + $ret`
36 ret=0
38 if [ $? != 1 ]; then echo "I:failed"; ret=1; fi
39 status=`expr $status + $ret`
42 ret=0
43 $CHECKCONF -z hint-nofile.conf > /dev/null 2>&1 && ret=1
44 if [ $ret != 0 ]; then echo "I:failed"; fi
45 status=`expr $status + $ret`
48 ret=0
56 [ $? -eq 1 ] || { echo "I: options $field failed" ; ret=1; }
63 [ $? -eq 1 ] || { echo "I: view $field failed" ; ret=1; }
72 [ $? -eq 1 ] || { echo "I: options + view $field failed" ; ret=1; }
81 [ $? -eq 1 ] || { echo "I: zone $field failed" ; ret=1; }
83 if [ $ret != 0 ]; then echo "I:failed"; fi
84 status=`expr $status + $ret`