]> git.sur5r.net Git - bacula/bacula/commitdiff
Update ReleaseNotes
authorKern Sibbald <kern@sibbald.com>
Wed, 27 Nov 2002 15:11:10 +0000 (15:11 +0000)
committerKern Sibbald <kern@sibbald.com>
Wed, 27 Nov 2002 15:11:10 +0000 (15:11 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@216 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/ChangeLog
bacula/ReleaseNotes
bacula/src/dird/query.sql
bacula/src/version.h

index 8cf74cb19a43ee95de6df31f33a66e68434257ae..ecdbe1a66afdb279fc1c6781b9fa7e233ee41473 100644 (file)
@@ -1,5 +1,5 @@
 
-2002-mm-dd Version 1.27 (25Nov02) not yet released
+2002-mm-dd Version 1.27 (26Nov02) released 28 November 2002
 
 General: from kes25Nov02
 - Mostly Cygwin changes
index bc636c04f72130eb34c269d28d5f8f10e2631137..1d5fa9e2ee7b78a703ff93a48be4535eb35af389 100644 (file)
@@ -1,6 +1,6 @@
           Release Notes for Bacula 1.27
 
-  Bacula code: Total files = 222 Total lines = 60,396 (*.h *.c *.in)
+  Bacula code: Total files = 222 Total lines = 60,486 (*.h *.c *.in)
 
 Major Changes this Release:
 - Implemented support for Sparse files.
@@ -15,9 +15,8 @@ Major Changes this Release:
   the Pool documentation for the Director for more details.
 - Rework of the Web site.
 - New format for the User's Guide (manual).
-- New bcopy tool.
-- All bxxx tool programs MUST read a Storage daemon configuration
-  file.
+- New bcopy tool (works but not totally complete).
+- All bxxx tool programs MUST read a Storage daemon configuration file.
 - Mount Anonymous Volumes is now dropped from the Storage
   daemon configuration files.
 - Accept Any Volume is by default "Yes" and permits Bacula
@@ -38,12 +37,25 @@ Minor Changes this Release:
   to the director.
 - Fixed mount loop when the autochanger slot is incorrect in 
   the catalog.
-- Updated the bacula script to work on more systems.
+- Updated the bacula start/stop script to work on more systems.
 - Fixed many places prone to buffer overflows.
+- Scripts are now found in <bacula-src>/scripts
+- A mtx-changer script was contributed for the Sony
+  TLS-11000 autochanger.  It is in <bacula-src>/examples
 
 Items to note:
-- The Dir-SD protocol has changed since 1.26, so you must
-  update the Director and Storage daemons.
-- The Dir-FD protocol has changed since 1.26 (and earlier versions
-  of 1.27).
 - You must re-initialize or alter your databases.
+- The inter-daemon protocol has changed so you must
+  upgrade all your daemons (and all Clients).
+
+Altering your database:
+- First make a backup.
+- Configure and build Bacula
+
+- For MySQL
+   cd <bacula-src>/src/cats
+   ./alter_mysql_tables
+
+- For SQLite
+   cd <bacula-src>/src/cats
+   ./alter_sqlite_tables
index 1e9db805fa9988e9ef62b1da2a1c6f067884c72d..11b09a2ad7bc15a50f746a3aa9583ed7d4a987d4 100644 (file)
@@ -140,3 +140,11 @@ SELECT count(*) AS Jobs, sum(JobFiles) AS Files,
  WHERE JobMedia.JobId=Job.JobId
  AND JobMedia.MediaId=Media.MediaId
  GROUP by VolumeName;  
+#
+:List Files for a selected JobId:
+*Enter JobId:
+SELECT Path.Path,Filename.Name FROM File,
+ Filename,Path WHERE File.JobId=%1 
+ AND Filename.FilenameId=File.FilenameId 
+ AND Path.PathId=File.PathId ORDER BY
+ Path.Path,Filename.Name;
index c401accee0d337eda8046551d1d3ddcaa2613956..0564b69feea7a4aa13b50897c50b9590c21ca316 100644 (file)
@@ -1,8 +1,8 @@
 /* */
 #define VERSION "1.27"
 #define VSTRING "1"
-#define DATE    "25 November 2002"
-#define LSMDATE "25Nov02"
+#define DATE    "26 November 2002"
+#define LSMDATE "26Nov02"
 
 /* Debug flags */
 #define DEBUG 1