]> git.sur5r.net Git - bacula/bacula/commitdiff
kes Change 'Device not configured to autolabel' from INFO
authorKern Sibbald <kern@sibbald.com>
Thu, 25 Jan 2007 11:26:57 +0000 (11:26 +0000)
committerKern Sibbald <kern@sibbald.com>
Thu, 25 Jan 2007 11:26:57 +0000 (11:26 +0000)
     to WARNING.
kes  Fix jobq.c to restart failed jobs when Reschedule Times = 0
     which should restart an indefinite # of times.
kes  Fix configure --help to print --with-mysql[=DIR]. Same for
     other DIR specifications.

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

bacula/src/dird/jobq.c
bacula/src/gnome2-console/test-gnome-console.conf
bacula/src/stored/mount.c
bacula/technotes-2.1

index ca52baba6deb2046916d3a0a2e5c691c54ebc83d..03230dae1021eb77898a66313319905250b3b2c2 100755 (executable)
@@ -495,7 +495,6 @@ void *jobq_server(void *arg)
          if (jcr->job->RescheduleOnError &&
              jcr->JobStatus != JS_Terminated &&
              jcr->JobStatus != JS_Canceled &&
-             jcr->job->RescheduleTimes > 0 &&
              jcr->JobType == JT_BACKUP &&
              (jcr->job->RescheduleTimes == 0 ||
               jcr->reschedule_count < jcr->job->RescheduleTimes)) {
index b2725a1f9f6e727978cddccb2aa54f1f76c0d9aa..fa5f9bcd4e4d6e1ad02dee60391cf08d0feb94c9 100644 (file)
@@ -5,6 +5,6 @@
 Director {
   Name = rufus-dir
   DIRport = 8101
-  address = rufus
+  address = localhost
   Password = UA_password
 }
index 4dac477e2461ab6354f676ef1abb7ebbf072e750..6175d8bc2611a8600de8da755da00ba3568e9a26 100644 (file)
@@ -10,7 +10,7 @@
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2002-2006 Free Software Foundation Europe e.V.
+   Copyright (C) 2002-2007 Free Software Foundation Europe e.V.
 
    The main author of Bacula is Kern Sibbald, with contributions from
    many others, a complete list can be found in the file AUTHORS.
@@ -510,7 +510,7 @@ static int try_autolabel(DCR *dcr, bool opened)
       return try_read_vol;   /* read label we just wrote */
    }
    if (!dev->has_cap(CAP_LABEL) && dcr->VolCatInfo.VolCatBytes == 0) {
-      Jmsg(dcr->jcr, M_INFO, 0, _("Warning device %s not configured to autolabel Volumes.\n"), 
+      Jmsg(dcr->jcr, M_WARNING, 0, _("Device %s not configured to autolabel Volumes.\n"), 
          dev->print_name());
    }
    /* If not removable, Volume is broken */
index fc6e9770967478d45a0da24a89a491b5ff7e4cfb..4a2b16df6b2a81214ea1f81cb0e6b05fec27c3d6 100644 (file)
@@ -1,7 +1,11 @@
               Technical notes on version 2.1
 
 General:
-24Jan07
+25Jan07
+kes  Change 'Device not configured to autolabel' from INFO
+     to WARNING.
+kes  Fix jobq.c to restart failed jobs when Reschedule Times = 0 
+     which should restart an indefinite # of times.
 kes  Fix configure --help to print --with-mysql[=DIR]. Same for
      other DIR specifications.
 23Jan07