]> git.sur5r.net Git - bacula/bacula/commitdiff
Last bit of 1.26 documentation
authorKern Sibbald <kern@sibbald.com>
Fri, 11 Oct 2002 16:19:17 +0000 (16:19 +0000)
committerKern Sibbald <kern@sibbald.com>
Fri, 11 Oct 2002 16:19:17 +0000 (16:19 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@170 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/ChangeLog
bacula/kernstodo

index 3840e1136b2f37ff7fa8db4a2a01742c157093c0..ef7dfc497f8c838c916774574e805f2d9c5d5cff 100644 (file)
@@ -1,5 +1,36 @@
 
-2002-xx-xx Version 1.26 (08Oct02)
+2002-10-12 Version 1.26 (10Oct02)
+General: from kes10Oct02
+- Changed Job name conventions to avoid : which is an illegal
+  character on Windows.
+
+Changes submitted this submission:
+- Added check for inet_pton to configure.in. If it does not
+  exist (e.g. Windows) use inet_aton
+- Documentation on GZIP.
+- Another restore doc example.
+- Documented btape fill command.
+- Set default restore directory from /tmp to /tmp/bacula-restores
+- Add additional no find error messages to sql_get.c
+- Creating a bootstrap file on Windows failed because the Job name
+  contained colons which are illegal on Windows. Replaced the
+  colons with periods.  This corrects the Windows restore problem.
+- Print number of files to be restored in "restore" command.
+- On Windows systems, if there is a prefix, completely eliminate
+  any drive: at the beginning of a path.
+- Minor corrections to the tree routines to handle Windows
+  files such as c:/ better. Previously it insisted on /c:/, which
+  would then not be found in the catalog for a "dir" command.
+- Modified cd command in restore to try /c: if c: fails.
+- Add a new S_ISWIN32 bit to the st_mode word so that low level
+  routines that create files do not print error messages.
+- More work must be done to restore all Windows files correctly.
+  Currently the following bits are not handled:
+    Archive
+    Hidden
+    System 
+  Also, all the dates are not properly restored.
+
 General: from kes09Oct02
 - More documentation.
 - Implemented new fill command in btape that permits filling
index 96ebaa9e752161d2053608fe22630c94bb96d8a5..bf80aa79e1b7dcfda60704d282db305c5c13eccb 100644 (file)
@@ -29,9 +29,17 @@ From Chuck:
 
 - Figure out why my Catalog size keeps growing.
 
+- Use read_record.c in SD code.
+- Implement Sparce files, change ownership of files, restore
+  all Windows attributes, restore options, FSM for program
+  files.
+- Why don't we get an error message from Win32 FD when bootstrap 
+  file cannot be created for restore command?
+- At line 51 of ua_input.c, why is = 0 necessary. Previously without
+  it, if cancel gnome-console during sql command, DIR crashed.  However,
+  with it, blank line input for Where: is not possible.
 - Make SD disallow writing on Volume with fewer files than in
   the catalog.
-- Check if GZIP1 is working -- check speed.
 - Put MaximumVolumeSize in Director.
 - Document how to cancel a job that is waiting on a Volume. 
   Must "cancel" then "mount".
@@ -554,4 +562,4 @@ Longer term to do:
 Done: (see kernsdone for more)
 - Document bscan.
 - Document Restore.
-
+- Check if GZIP1 is working -- check speed.