]> git.sur5r.net Git - bacula/bacula/commitdiff
Final??? 2.0.3 changes
authorKern Sibbald <kern@sibbald.com>
Tue, 6 Mar 2007 20:02:31 +0000 (20:02 +0000)
committerKern Sibbald <kern@sibbald.com>
Tue, 6 Mar 2007 20:02:31 +0000 (20:02 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/branches/Branch-2.0@4325 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/ChangeLog
bacula/ReleaseNotes
bacula/projects
bacula/src/dird/migrate.c
bacula/src/version.h

index a6e7a10afad98d03f1a918830ffa7c9d3dad6b56..af3e9f44d3b402046aca059182344a1a316611ff 100644 (file)
@@ -2,7 +2,18 @@
 
 General:
 
-Version 2.0.3 release: xx February 2007
+Version 2.0.3 release: xx March 2007
+5Mar07
+kes  File migrate bug with Pool Occupancy using mediaid instead
+     of jobids.  Fixes bug #795.
+kes  Fix orphaned buffers in filed backup and verify due to
+     crypto buffers not freed during errors.  Fixes bug #789.
+04Mar07
+kes  Add smartctl call to bacula-sd.conf as an example of getting
+     tape alert info.
+02Mar07
+kes  Add Client Connect Wait to Storage daemon to permit users to
+     modify the time the SD waits for a FD connection.
 28Feb07 
 kes  Apply Command ACL filter to JobId list in restore command.
 kes  Correct typeo in var.c patch.
index a19caf184d58c706a563202558d8318804e17697..206261014393098617bac44730f46b41022508e8 100644 (file)
@@ -7,6 +7,17 @@ This is a bug fix release to version 2.0.2.  If you are upgrading from
 a version older than 2.0.0, please be sure to read the important notes
 below.
 
+5Mar07
+kes  File migrate bug with Pool Occupancy using mediaid instead
+     of jobids.  Fixes bug #795.
+kes  Fix orphaned buffers in filed backup and verify due to
+     crypto buffers not freed during errors.  Fixes bug #789.
+04Mar07
+kes  Add smartctl call to bacula-sd.conf as an example of getting
+     tape alert info.
+02Mar07
+kes  Add Client Connect Wait to Storage daemon to permit users to
+     modify the time the SD waits for a FD connection.
 28Feb07 
 kes  Apply Command ACL filter to JobId list in restore command.
 kes  Correct typeo in var.c patch.
index bae68a506b5b444fdd78007ea0a2fe3bbfd0ca6b..53bc0086a86dccf8063435dcf9f50b5839e91323 100644 (file)
@@ -1180,6 +1180,51 @@ Item  n:  Enable to relocate files and directories when restoring
           if user uses something like where=s/([a-z]+)$/old.$1/, files will
           be restored from /prod/xxx.ext to /prod/xxx.old.ext
 
+Item n:   Implement Catalog directive for Pool resource in Director
+configuration 
+  Origin: Alan Davis adavis@ruckus.com
+  Date:   6 March 2007
+  Status: Submitted
+  What:   The current behavior is for the director to create all pools
+          found in the configuration file in all catalogs.  Add a
+          Catalog directive to the Pool resource to specify which
+          catalog to use for each pool definition.
+  Why:    This allows different catalogs to have different pool
+          attributes and eliminates the side-effect of adding
+          pools to catalogs that don't need/use them.
+  Notes:  
+
+
+Item n:   Implement NDMP protocol support
+  Origin: Alan Davis
+  Date:   06 March 2007
+  Status: Submitted
+
+  What:   Network Data Management Protocol is implemented by a number of
+          NAS filer vendors to enable backups using third-party
+          software.
+
+  Why:    This would allow NAS filer backups in Bacula without incurring
+          the overhead of NFS or SBM/CIFS.
+
+  Notes:  Further information is available:
+          http://www.ndmp.org
+          http://www.ndmp.org/wp/wp.shtml
+          http://www.traakan.com/ndmjob/index.html
+
+          There are currently no viable open-source NDMP
+          implementations.  There is a reference SDK and example
+          app available from ndmp.org but it has problems
+          compiling on recent Linux and Solaris OS'.  The ndmjob
+          reference implementation from Traakan is known to
+          compile on Solaris 10.
+
+  Notes (Kern): I am not at all in favor of this until NDMP becomes
+          an Open Standard or until there are Open Source libraries
+          that interface to it.
 ============= Empty Feature Request form ===========
 Item  n:  One line summary ...
   Date:   Date submitted 
index 0165f7153d428c66f67d55baa231dd7366beba29..f6b369d5a47a71932d20a53ef3472fe31630d93b 100644 (file)
@@ -783,8 +783,10 @@ static int get_job_to_migrate(JCR *jcr)
       Jmsg(jcr, M_INFO, 0, _("No JobIds found to migrate.\n"));
       goto ok_out;
    }
-   Jmsg(jcr, M_INFO, 0, _("The following %u JobId%s will be migrated: %s\n"),
+
+   Jmsg(jcr, M_INFO, 0, _("The following %u JobId%s were chosen to be migrated: %s\n"),
       ids.count, ids.count==0?"":"s", ids.list);
+
    Dmsg2(dbglevel, "Before loop count=%d ids=%s\n", ids.count, ids.list);
    for (int i=1; i < (int)ids.count; i++) {
       JobId = 0;
index eabe5ba9a156dc898fec634b052792baf65a88c9..b05ddcc47cd49e246c523328d79d486ad7efe6a7 100644 (file)
@@ -4,8 +4,8 @@
 
 #undef  VERSION
 #define VERSION "2.0.3"
-#define BDATE   "05 March 2007"
-#define LSMDATE "05Mar07"
+#define BDATE   "06 March 2007"
+#define LSMDATE "06Mar07"
 
 #define PROG_COPYRIGHT "Copyright (C) %d-2007 Free Software Foundation Europe e.V.\n"
 #define BYEAR "2007"       /* year for copyright messages in progs */