git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@7836
91ce42f0-d328-0410-95d8-
f526ca767f89
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