From: Kern Sibbald Date: Fri, 11 Oct 2002 16:19:17 +0000 (+0000) Subject: Last bit of 1.26 documentation X-Git-Tag: Release-1.26~1 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=054706ef7ea519f48e50217c0be958283886844e;p=bacula%2Fbacula Last bit of 1.26 documentation git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@170 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/ChangeLog b/bacula/ChangeLog index 3840e1136b..ef7dfc497f 100644 --- a/bacula/ChangeLog +++ b/bacula/ChangeLog @@ -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 diff --git a/bacula/kernstodo b/bacula/kernstodo index 96ebaa9e75..bf80aa79e1 100644 --- a/bacula/kernstodo +++ b/bacula/kernstodo @@ -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.