export rstat
J=JobA
-if grep -q "Restore OK" tmp/RUN_$J &&
- grep -q "${cwd}/build/po/fr.old.po" tmp/RUN_$J
+grep "Restore OK" tmp/RUN_$J > /dev/null && \
+grep "${cwd}/build/po/fr.old.po" tmp/RUN_$J > /dev/null
+
+if [ $? = 0 ]
then
[ "$debug" = 1 ] && echo $J ok
else
fi
J=JobB
+grep "Restore OK" tmp/RUN_$J > /dev/null && \
+grep "tmp/bacula-restore${cwd}/po/fr.po.old" tmp/RUN_$J > /dev/null
# $cwd begins with /
-if grep -q "Restore OK" tmp/RUN_$J &&
- grep -q "tmp/bacula-restore${cwd}/po/fr.po.old" tmp/RUN_$J
+if [ $? = 0 ]
then
[ "$debug" = 1 ] && echo $J ok
else
fi
J=JobC
-if grep -q "Restore OK" tmp/RUN_$J &&
- grep -q "tmp/bacula-restore${cwd}/build/po/fr.po" tmp/RUN_$J
+grep "Restore OK" tmp/RUN_$J > /dev/null && \
+grep "tmp/bacula-restore${cwd}/build/po/fr.po" tmp/RUN_$J > /dev/null
+if [ $? = 0 ]
then
[ "$debug" = 1 ] && echo $J ok
else
fi
J=JobD
-if grep -q "Restore Error" tmp/RUN_$J
+grep "Restore Error" tmp/RUN_$J > /dev/null
+if [ $? = 0 ]
then
[ "$debug" = 1 ] && echo $J ok
else
fi
J=JobE
-if grep -q "Restore OK" tmp/RUN_$J &&
- grep -q "${cwd}/tmp/fr.po" tmp/RUN_$J
+grep "Restore OK" tmp/RUN_$J > /dev/null && \
+grep "${cwd}/tmp/fr.po" tmp/RUN_$J > /dev/null
+if [ $? = 0 ]
then
[ "$debug" = 1 ] && echo $J ok
else
fi
J=JobF
-if grep -q "Restore OK" tmp/RUN_$J &&
- grep -q "${cwd}/build/po/fr.po" tmp/RUN_$J
+grep "Restore OK" tmp/RUN_$J > /dev/null && \
+grep "${cwd}/build/po/fr.po" tmp/RUN_$J > /dev/null
+if [ $? = 0 ]
then
[ "$debug" = 1 ] && echo $J ok
else
fi
J=JobG
-if grep -q "Restore OK" tmp/RUN_$J &&
- grep -q "tmp/bacula-restore/build/po/fr.po" tmp/RUN_$J
+grep "Restore OK" tmp/RUN_$J > /dev/null && \
+grep "tmp/bacula-restore/build/po/fr.po" tmp/RUN_$J > /dev/null
+if [ $? = 0 ]
then
[ "$debug" = 1 ] && echo $J ok
else
fi
J=JobH
-if grep -q "Restore OK" tmp/RUN_$J &&
- grep -q "${cwd}/build/po/fr.po.old" tmp/RUN_$J
+grep -q "Restore OK" tmp/RUN_$J > /dev/null && \
+grep -q "${cwd}/build/po/fr.po.old" tmp/RUN_$J > /dev/null
+if [ $? = 0 ]
then
[ "$debug" = 1 ] && echo $J ok
else
fi
J=JobI
-if grep -q "Restore OK" tmp/RUN_$J &&
- grep -q "${cwd}/build/po/fr.po.old" tmp/RUN_$J
+grep "Restore OK" tmp/RUN_$J > /dev/null && \
+grep "${cwd}/build/po/fr.po.old" tmp/RUN_$J > /dev/null
+if [ $? = 0 ]
then
[ "$debug" = 1 ] && echo $J ok
else
J=JobJ
-if grep -q "Restore OK" tmp/RUN_$J &&
- grep -q "/etc/passwd.old" tmp/RUN_$J &&
- grep -q -e "Where: *tmp/bacula-restore-it" tmp/RUN_$J &&
- grep -q "${cwd}/build/po/fr.po.old" tmp/RUN_$J
+grep "Restore OK" tmp/RUN_$J > /dev/null && \
+grep "/etc/passwd.old" tmp/RUN_$J > /dev/null && \
+grep "Where: *tmp/bacula-restore-it" tmp/RUN_$J > /dev/null && \
+grep "${cwd}/build/po/fr.po.old" tmp/RUN_$J > /dev/null
+if [ $? = 0 ]
then
[ "$debug" = 1 ] && echo $J ok
else
sed -e 's/[Rr][Ee][Aa][Dd][Mm][Ee]/readme/' -e 's/\([ch]\)$/.old.\1/' tmp/list > tmp/list.sed
./build/src/tools/bregtest -s -f tmp/list -e '/readme/readme/i,/([ch])$/.old.$1/' > tmp/list.bsed
-if diff tmp/list.bsed tmp/list.sed >/dev/null 2>&1
+diff tmp/list.bsed tmp/list.sed >/dev/null 2>&1
+if [ $? = 0 ]
then
[ "$debug" = 1 ] && echo bregtest ok
else