]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl Change M_FATAL to M_ERROR, it will use jcr->Errors++ instead of aborting the job
authorEric Bollengier <eric@eb.homelinux.org>
Thu, 2 Nov 2006 21:42:55 +0000 (21:42 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Thu, 2 Nov 2006 21:42:55 +0000 (21:42 +0000)
     and let abort_on_error do the job.

git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3595 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/lib/runscript.c

index 13b6d74e95c6bfeb8853d533b6d4111e111b8f9f..740fbd37a39b3759d4b0ac8713dc42358b54a4c7 100644 (file)
@@ -203,7 +203,7 @@ int RUNSCRIPT::run(JCR *jcr, const char *name)
    free_pool_memory(ecmd);
    if (bpipe == NULL) {
       berrno be;
-      Jmsg(jcr, M_FATAL, 0, _("Runscript: %s could not execute. ERR=%s\n"), name,
+      Jmsg(jcr, M_ERROR, 0, _("Runscript: %s could not execute. ERR=%s\n"), name,
          be.strerror());
       return false;
    }
@@ -217,7 +217,7 @@ int RUNSCRIPT::run(JCR *jcr, const char *name)
    status = close_bpipe(bpipe);
    if (status != 0) {
       berrno be;
-      Jmsg(jcr, M_FATAL, 0, _("Runscript: %s returned non-zero status=%d. ERR=%s\n"), name,
+      Jmsg(jcr, M_ERROR, 0, _("Runscript: %s returned non-zero status=%d. ERR=%s\n"), name,
          be.code(status), be.strerror(status));
       return false;
    }