]> git.sur5r.net Git - bacula/bacula/commitdiff
Add attempt to recover in catastrophe
authorKern Sibbald <kern@sibbald.com>
Sat, 18 Oct 2008 07:57:36 +0000 (07:57 +0000)
committerKern Sibbald <kern@sibbald.com>
Sat, 18 Oct 2008 07:57:36 +0000 (07:57 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@7836 91ce42f0-d328-0410-95d8-f526ca767f89

regress/scripts/pretest

index b02fb2ba4c83ea104a8f6f6cf84f1f7943de77c7..01d4fb26db845907840582de714ce4159fcbee99 100755 (executable)
@@ -22,25 +22,33 @@ start_test
 run_bacula
 if [ $? -ne 0 ]; then
    echo "Error: bconsole error"
-   error=1
+   make distclean
+   make setup
+   exit 1
 fi
 
 bin/bacula-ctl-dir status >/dev/null
 if [ $? -ne 0 ]; then
    echo "Error: bacula-dir failed to start"
-   error=1
+   make distclean
+   make setup
+   exit 1
 fi
 
 bin/bacula-ctl-fd status >/dev/null
 if [ $? -ne 0 ]; then
    echo "Error: bacula-fd failed to start"
-   error=1
+   make distclean
+   make setup
+   exit 1
 fi
 
 bin/bacula-ctl-sd status >/dev/null
 if [ $? -ne 0 ]; then
    echo "Error: bacula-sd failed to start"
-   error=1
+   make distclean
+   make setup
+   exit 1
 fi
 
 stop_bacula