]> git.sur5r.net Git - bacula/bacula/blob - bacula/kes-1.37
6dee32c40aa2a6363e2b9892618b3d4d31add3ca
[bacula/bacula] / bacula / kes-1.37
1               Technical notes on version 1.37  
2                         Kern Sibbald
3
4 General:
5
6 Changes to 1.37.20:
7 01Jun05
8 - Add more documentation to mtx-changer.in
9 - Correct link to manual in authenticate.c in various
10   directories.
11 - Create a new src/stored/reserve.c file where the 
12   Use Storage command is processed and drives are
13   reserved.
14 - Modify src/stored/autochanger.c to keep track of each
15   Slot that is loaded for each device.
16 - Ensure that changer_command and changer_name are picked
17   up from Autochanger resource if not specified, and if
18   neither is specified, err.
19 30May05
20 - Fix bextract.c compile problem
21 - Create bacula.man 
22 - Make make distclean clean a bit better
23 29May05
24 - Remove old code in jcr.c
25 - Make testls release jcr chain when terminating.
26 27May05
27 - Implement Maximum Job Spool Size (actually DCR based)
28 26May05
29 - Use light weight non-recursive locking on jcr chain.
30 - Make JCR a class and implement inc_use_count() and
31   dec_use_count() methods that ensure that the jcr is
32   locked when inc/dec the use count.
33 - Remove the global jcr lock when traversing the jcr
34   chain.   
35 - Use dlist to implement the jcr chain rather than hand
36   crafted next and prev links.
37 - Lock the jcr chain inside each function that modifies
38   the chain.
39
40 Changes to 1.37.19:
41 26May05
42 - Fix compile problem of ua_restore.c on broken compilers.
43 - Apply patch from bug 326 to permit bacula status by any user.
44 - Fix bug 325 -- conversion of 12:30pm to 24hour time.
45 25May05
46 - Put Dmsg() on inside if() to avoid calling subroutine.
47 - Make restore.bsr have unique name.
48 - Allow user to define bsr filename on restore command line
49   with bootstrap=xxx.bsr
50 - Add limit=nnn to "list jobs" command.
51 - Remove old restore code that did not use .bsr file.
52 - unlink automatically generated bsr file.
53 - Cleanup heartbeat code so that duped fd is almost sure
54   to be released. Previously under certain conditions, the
55   memory was not released due to race conditions.
56 - Shorten copyright.
57 20May05
58 - Unify the reserve_device() for a single device into one subroutine.
59 18May05
60 - Modify wait during use_device to happen only after all devices
61   have been examined rather than in the reserve_device code.  
62 - Correct updating count of number of Volumes in a pool.
63
64 Changes to 1.37.18:
65 16May05
66 - Add more debug to SD for Autochangers + status output.
67 - Add Scratch to PoolType in PostgreSQL make...tables and do not
68   permit NULL PoolTypes. Fix for bug 319 reported by Eric.
69 - Update LICENSE.
70 - Add quotes around filename in parse_config error message. Bug
71   reported by Eric.
72 15May05
73 - Change nested \include to \input so that sections are properly
74   included in the pdf manual -- update the Web site.
75 - Set reconnect flag in MySQL packet to 1 to ensure that connection
76   is re-established.  MySQL 5 changed default to 0. Fixes bug report.
77 - Fix Scratch pool handling as reported in a bug by Eric Bollengier
78   by applying his patch.
79 - Remove delete job in favor of delete jobid.
80 - Add = NULL to configfile definitions as reported by Eric in a bug
81   report.
82 - Update winbacula.nsi.in to reflect new manual file structure.
83 10May05
84 - Correct a minor build problem with wx-console.
85 - Add cancel() to Dir Python scripting.
86 - Re-correct bug in parse-config error handling.
87 - Reorganization of use_command in SD to permit
88   waiting and multiple drive autochanger support.
89 09May05
90 - Correct bug in parse_config error handling.
91 - Where ever possible mark a volume in error or not   
92   InChanger in mount.c
93 - Fix bug in changing tape pools after first backup. Reported
94   by Peter Sjoberg.
95 - Enhance mtx-changer to use Working Directory as temp.
96 - Remove all but initial setup locking of Res in SD.
97 08May05
98 - Add Client OS type to Job report.
99 - Add version to manual 
100 - Update the Web site to have a single page for
101   the documentation links.
102
103 Changes to 1.37.18 release 08May05:
104 08May05
105 - Correct attribute definition compile error in 1.37.17
106 - Correct inverted order of CreateTime and MD5 pointed out
107   by a user in a bug report in FileSet db routine causing
108   the MD5 to print in the output instead of the time/date.
109
110 Changes to 1.37.17:
111 07May05
112 - Implement cstrlen() in sql list routines.
113 - Implement caching of attributes to add the        
114   signature so that only one DB call will be made
115   per file. Not yet turned on.
116 - Fix Win32 build for TLS.
117 - Optimize File pruning to eliminate one database call. 
118 - Fix bug that prevented File pruning from working.
119 - Implement a cstrlen() which returns the character
120   length of a UTF-8 string.
121 06May05
122 - Move test for MaxStartDelay as suggested by Peter.
123 - Implement Python methods (I had to read the Python source
124   code).
125 - Implement run() method in Director.
126 - Add Priority and Scheduled time to Job report.
127 - Add JobInit and JobRun events.
128 - Add Priority as Python read/write attribute to Job.
129 - Correct typo in bsmtp reported by Jo.
130
131 Changes to 1.37.16 released 05May05
132 03May05
133 - Make a few tls ifdef tweaks.
134 - Fix create_file.c Win32 problem pointed out by
135   Peter Sjoberg.
136 - Fix really ugly bstrncpy() but found by Thorsten.
137 - Move winapi.h/c from findlib to lib for inclusion in 
138   multiple places.
139 02May05
140 - Thorsten Engel finished his work on Win32 Unicode. We
141   now have a single executable that runs on all Win32 machines.
142 - Move job initialization code after job scheduling so that
143   Verify jobs check for the prior JobId after they are really
144   started rather than before.
145 - Fix lib/fnmatch.c so that it does proper testing before folding.
146 - More documentation -- at tls and ansi labels chapters.
147 - Fix fileset_convert.pl to handle empty Exclude statements.
148 - Turn regex back off in Win32
149 01May05
150 - Fix sign extension problem in lex.c that reads UTF-8 
151   with Chinese characters incorrectly.
152
153 Changes to 1.37.14:
154 30Apr05
155 - Remove a few HAVE_TLS #ifdefs
156 - Implement final Python style interface. More implemention to
157   be done, but the interface should change little if at all.
158 28Apr05
159 - Make default no tls support. You must add 
160   --with-openssl to get tls support.
161 27Apr05
162 - Update Web header to include google search in the search
163   box -- thanks to input from Michel Meyers.
164 - Fix md5sum so that it builds with the new openssl stuff.
165 - Take some enhancements to the md5sum test program proposed
166   by a user.
167 26Apr05
168 - Make option 2 of restore work better (list last 20
169   locations for a file).
170 - Make SD re-open a device with the right permissions if
171   it was previously opened with something different.  This
172   should allow reading read-only Volumes under all circumstances.
173 - Implement restore of a single directory.
174 - Apply Tru64 patch supplied by Pascal Pederiva <freebsd@paped.com>
175 - Apply Unicode fixes for Win32 from "Thorsten Engel" 
176   <thorsten.engel@matrix-computer.com>
177 - More work on Python read feature in FD.
178 22Apr05
179 - Fix (hopefully) the ftello() overflow reported by Peter.
180 - Landon Fuller committed his TLS patch.
181 - Fixed two minor warnings in console.c with TLS turned off.
182 - Updated the Makefile.in for wx-windows and tray-monitor
183   to handle TLS. I can only build the tray-monitor.
184 - Fix bscan to open tape in read-only mode (actually fix
185   it so that it doesn't use the standard open routine).
186 - Correct what appears to be an error in setting the
187   return value in dvd.c
188 21Apr05
189 - Get FD Python running -- design Python backup interface.
190 - Fix seg fault in SD when referencing Alert Command.
191 - More documentation.
192 - Fix one more thing in Win32 build.
193 20Apr05
194 - Doc updates
195 - Fix Win32 build
196 - Put in production here
197
198 Changes to 1.37.13:
199 19Apr05
200 - Fix SQLite and PostgreSQL table creation script syntax
201   problems.
202 - Fix new Python code to work for Director.
203 - Move lib/python.c to lib/pythonlib.c so that debug output
204   is easier to read (can distinguish lib from dird, ...).
205 - Cleanup Python build so that Python is not dragged
206   into programs that don't use it.
207
208 Changes to 1.37.12:
209 18Apr05
210 - Make Bacula build without Python
211 - Drop Status table in drop_ scripts -- bug 283.
212 17Apr05
213 - First cut of new Python implementation.
214 - Doc updates
215 - Correct SuSE autostart installation directory name --
216   supplied by a user.
217 - Fix director crash if Name directive not supplied
218   in a Job.
219 - More cleanup of changing %u to %s for DB IDs.
220 - Replace dev_can_write(dev) with dev->can_write().
221 11Apr05
222 - Make fsr_dev() a method dev->fsr()
223 - Remove Created new FileSet message as it always comes out in
224   the daemon messages.
225 - eliminate dev_is_tape() in favor of method dev->is_tape()
226 - Turn on disk seeking during restore for Disk Volumes. This
227   required some changes to bscan -- they seem a bit suspect as
228   they are not symmetrical for tape/files.
229 - Remove some of the recursion in stored/parse_bsr.c
230 - Move rescue out to a new Bacula project.
231 08Apr05
232 - Update of web site to replace old released doc with LaTeX 
233   version.
234 - Replace logo in doc with new bat logo.
235 - Make a good number of updates to the manual.
236 - Implement Python scripting using a Python object.
237   This makes interfacing with Bacula cleaner (object
238   oriented).
239 - Add Phil's Status table to the database -- used
240   for getting a text description of the status     
241   codes.
242 - Modify FileSet so that an empty Options (no
243   pattern matching) with an exclude will exclude
244   all files.                       
245 - Modify FileSet so that no top level included File
246   item can be excluded by a matching pattern.
247 - Suppress Created new FileSet record in daemon output.
248 - Implement Python in FD.
249 - Turn off old bfile reader code -- to be replaced
250   by Python.
251 05Apr05
252 - Remove more recursion in src/dird/bsr.c as pointed out
253   by Peter.
254 04Apr05
255 - Increase the index width of Filename and Path entries
256   to 255 chars -- suggestion of Meno Abels.
257 - Change remaining VARCHARS to TINYBLOBs.
258 - Remove recursion from is_volume_selected() following
259   bug report from Peter.
260 - Implement mostly correct handling of use_storage in the
261   SD with full lists, ...
262 02Apr05
263 - Reset NumVols in Pool record from database on every update
264   Pool.
265 - Modify DB to support multiple simultaneous copies and
266   RAIT stiping.
267 - Pass copy and stripe between DIR and SD and put into
268   the JobMedia DB record.
269 - Update and test SQLite and MySQL datebase creation and
270   update scripts.
271 - Implement version 9 of the DB.
272 31Mar05
273 - Convert more atoi to str_to_int64() for DB.
274 - Implement filling in NumVols by querying DB rather
275   than trying to keep track of it.
276 - Add storage name to string passed to in use storage=
277 - Fix newVolume() so that the Python script is always
278   called.
279 - Fix handling of pool,PoolId, and storage in ua_output.
280 - Same fix in ua_status.c
281 - Remove required locking of resources
282 - Replace pthread_cond_signal() by pthread_cond_broadcast()
283   hoping to fix the /lib/tls hang problems (lost signal).
284 - Move resource locking seaching from parse_conf.c to res.c
285   in src/lib.
286 - Modify end of volume handling so that fixup_... does not
287   redo what block.c has already done -- writing Vol info to
288   DIR. This fixes a bug with bad numbers of files on a tape
289   when it filled as reported by Peter.
290 - In release_device() do not update the DIR on the Volume
291   info if the the information was already written at the
292   end of the tape.
293 28Mar05
294 - NOTE!!!! This version has a new DIR <--> SD protocol. Both 
295   must be updated at the same time.
296 - Begin implementation of passing all the Storage and Device
297   possibilities to the SD for examination during the reserve 
298   phase.
299 - Modify the reserve and acquire code in the SD to make a 
300   job wait if the device is not available.
301 - Implement New Volume Each Job in DIR and pass to SD, not yet
302   used.
303 - Remove init/update of the Device resource in DIR
304 - Remove passing PoolId to SD and back.
305 26Mar05
306 - Remove \a and -e from error echos in most Makefiles.
307 - Add more debug code when there are errors on the tape 
308   to try to find Peter's tape problem.
309 - Add wait.c (oops forgot previously).
310 - Move all the reserve/acquire_device_for_read/append to have
311   only a DCR as the argument.
312 - Rework the reserve_device_for_append() in stored to wait
313   if the drive is not available.  Note! This is a short
314   term solution.
315 25Mar05
316 - Comment out Multiple Connections in the document.
317 - Move the P() and V() to subroutines so that they can be accessed
318   from class methods. The reference to strerror() caused problems.
319 - Implement new DEVICE class methods block() and unblock() that
320   do what was previously done in 3 lines of code.
321 - Implement wait_for_device(), which will wait for any device
322   to be released then return. This requires a new global mutex
323   and condition variable, and is implemented in src/stored/wait.c
324 - Change the code in reserve_device_for_read(), which previously
325   failed the job to use the new device wait code.
326 22Mar05
327 - Apply reschedule patch to 1.37 code.
328 - Add copyright to title page of manual so it is clear.
329 - Create patch for rescheduling problem found by Ludovic. Storage
330   pointers were lost during rescheduling.
331 - Attempt to fix 2.6 rescue disk -- failed!
332 - Start working on adding a wait routine in the SD.
333 - Cleanup some old invalid doc in watchdog.
334 - Convert a number of references to dev->dev_name to dev->print_name().
335 - Add new wait.c file to SD.
336 - Add a few more methods to DEVICE in SD to cleanup code a
337   bit -- implement a few of the methods.
338 18Mar05
339 - Fix more print_name()s for printing device name.
340 - Modify open_dev to try 10 times every 6 seconds to
341   open the device if it gets an I/O error (meaning no
342   volume mounted). This gives a bit of settling in time
343   for an autochanger and avoids spurious messages.
344 - Change all yes/no to yes|no in the manual.
345 - Fix win32 create_file.c typo.
346 - Fix a typo in an error message.
347 17Mar05
348 - Detect if fseeko exists with autoconf. If so, use it 
349   and ftello.
350 - Remove old bacula-*.conf from examples directory (out
351   of date).
352 - Remove latex-fr index files from CVS.
353 - Rewrite code that stops reading the tape so that the
354   tape is marked at EOT, then once the work is done,
355   the EOT flag is removed.
356 - Flush output to file after every send in console.
357 - Make setting VolFiles to smaller number fatal.
358 - Disable Multiple Connections code.
359 - Add patch from user for NetBSD statvsfs() fix to
360   fstype.c
361 - Take more care with errors in acquire.c
362 - Don't run through dvd code in append.c if bad status
363   returned.
364 - Modify code so that an autochanger fault is fatal.
365 - Use dev->print_name() in more places.
366 - Implement dev->can_steal_lock() to simplify code.
367 - Make btape re-read first 10000 records on fill command.
368 - Check error return and fail job from fseeko and ftello
369   in spool.c.  Don't let a -1 slip in as size.
370
371 Changes to 1.37.7:
372 15Mar05
373 - Apply NetBSD patch from kardel in bug 258.
374 14Mar05
375 - Add a second job and a second client to the default
376   bacula-dir.conf file.
377 - Remove old style Include/Excludes.
378 - Fix ANSI labels to put EOF1 and EOF2 after each file mark.
379 - Add Python to SD and FD.
380 12Mar05
381 - Implement IBM labels
382 - Implement EOF and EOV labels at the end of a volume.
383 - Fix a rather ugly problem with the PoolId not getting
384   passed correctly. Now the DIR passes the Pool name and
385   Media Type to the SD, who passes them back when requesting
386   the next Volume. The DIR then looks up the correct PoolId.
387   This takes more time, but always works, AND allows wild
388   card Media Types (i.e. the SD can decide).
389 - The DIR <==> SD protocol has changed.
390
391 Changes to 1.37.6:
392 11Mar05
393 - Fix scanf of PoolId in catreq to handle 64 bit Ids.
394 10Mar05
395 - Add new ua_update.c file and move update_cmd there.
396 - Modify "update slots" to obtain actual number of slots.
397 - Tweak autochanger code to handle new slots request.
398 - Modify autochanger code to lock/unlock around slots and
399   update slots code.
400 09Mar05
401 - Patch the FD so that it does not issue an error message if
402   it attempts to restore the permissions on a Win32 drive.
403 - Edit "Resource-name" (physical-name) for the device name
404   everywhere in the SD.
405 - Remove .linked.tex files in preparation for cutover to
406   using .tex in place of .wml.
407 08Mar05
408 - Copy latest config.sub and config.guess from autoconf.
409 - Try new way of identifying drives with:
410    "resource-name" (physical-name)
411   More work need to a complete conversion.
412 07Mar05
413 - Rework some of the autochanger data so that the DIR has   
414   the number of drives.
415 - Modify the way the Device info is returned so that it comes
416   back as a special message type and can be sent anytime the
417   Device status changes.
418 - Copy the change name and changer command into the device
419   record if none is specified.
420 - Require the change command and changer name to be specified in
421   and AutoChanger resource.
422 - Force all the Media Type records of all devices in an Autochanger
423   to be the same.
424 06Mar05
425 - Add new "run" command to Job resource in DIR. This permits
426   cloning a job as many times as you want.
427 - Pass PoolId to SD on Query request. It is now used in the
428   Find_media catalog request.
429 - Reworked the Device resource in the DIR. Eliminated num_waiting
430   and use_count, but added max_writers, reserved, and PoolId.
431 - This DIR is nolonger compatible with previous SDs.
432 - Add since and cloned keywords to the Console run command
433   to support cloning.
434 - Implemented store_alist_str() to allow multiple string items
435   to be specified in a .conf file.
436 - Added %s (since time) to Job code editing.
437 - Reworked reserving drives in the SD. It now does it much simpler
438   and correctly. 
439 05Mar05
440 - Integrate HP-UX patch from  Olivier Mehani <olivier.mehani@linbox.com>
441 - Fix FD job.c to test correctly for no level.
442
443 Changes to 1.37.4:
444 04Mar05
445 - Change Developers to Developer's Guide as requested by Michael.
446 - Fix developers link in manual
447 - Add additional dcr changes in SD to allow multiple dcrs.
448 02Mar05
449 - Fix a few problems with the MySQL table create in 1.37.
450 - Delete the new tables in the table delete files.
451 - Increase the number of items permitted in a conf table.
452 - Make Director loop over alternative Devices specified in the
453   Storage resource until one is reserved by SD.
454 - Fix storing of StorageId in Media records.
455 - Add AutoSelect = yes|no in bacula-sd.conf
456 - Add Autochanger support to Label command.
457 - Do not autoselect devices with autoselect set false 
458 01Mar05
459 - Implement setting DIR Storage device to Autochanger
460   name. 
461 - Select first available device in Autochanger.
462 - Pass back actual device name used.
463 - Allow Query of AutoChanger.
464 - Modify Query to include name of AutoChanger if 
465   Device belongs to one.
466 - Remove old Pool code in jobq.c
467 - Add Autoselect flag to query and DEVICE class (still
468   need Directive).
469 28Feb05
470 - Lock autochanger script when running.
471 - Mark Volume not InChanger if correct volume is not     
472   autoloaded.
473 - Corrected some typos in the make_xxx_tables.in files.
474 - Made preliminary split of pre-run and run code for each
475   job type. This will permit early opening of SD for reserving
476   drives.
477 - Add offline and autochanger fields to Device Query record.
478 - Correct pthread_mutex_init() for autochanger in SD.
479 - Tweak Makefile for LaTeX manual, plus add nav buttons.
480 26Feb05
481 - Clean up drive reservation system. Add more sanity checks.
482 - Implement a few more methods for the DEVICE class in SD.
483 - Add latex directories to make clean
484 - move DEV_BSIZE to B_DEV_BSIZE to avoid conflicts with
485   certain header files (FreeBSD).
486 24Feb05
487 - Fix an ASSERT that was triggering in stored/acquire.c
488   attempt to fix a bug report.
489 23Feb05
490 - Corrected SunOs to SunOS in btraceback (user submitted).
491 - Applied patch from Roger HÃ¥kansson <hson@ludd.luth.se>
492   to warn the user of defective AWKs during ./configure.
493 20Feb05
494 - Add some changes submitted by a user for HP client build.
495   Not all changes accepted.
496 - Rework code in filed/backup.c to ease #ifdefing and make
497   program flow more obvious.
498 - Split DVD code out of dev.c into dvd.c
499 - Tweak #ifdefing to add back all the performance measurement
500   #defines in version.h
501 - Put most of MTIOCGET code in a subroutine to simplify the
502   mainline code.
503 - Make clean remove old CVS files
504 - Remove unnecessary image files from Latex directory
505 - Implement remaining parts of Storage DB record and
506   its use in the Director.
507 - Implement
508   FullMaxWaitTime, Differential Max Wait Time, and               
509   Incremental Max Wait time in Job resource.
510 - Start work on SD Autochanger code.
511 19Feb05
512 - Add back JobId index for MySQL as default -- speeds up 
513   pruning.
514 - Add more database fields and fix the update scripts to
515   include the new items.
516 - Pass actual level to FD so that ClientRun editing can reflect
517   correct level -- ditto for job status. This makes the DIR
518   incompatible with older clients!
519 - Move jobq.c acquire resources to static subroutine so that
520   the code logic becomes clearer. This is in preparation for
521   actually using the new Device resources.
522 - Fix some lower case problems in sql_cmds.c reported by
523   Debian.
524 - Correct a seg fault in the SD reported by a user. Occurred
525   only when a high debug level was set.
526 - Modify init_dev() in dev.c to take JCR as first arg so that
527   proper error messages can be reported in next item.
528 - Modify the query and use device SD commands to attempt to
529   open the device if it could not previously be opened.
530 - Correct error message for Could not reserve device.
531 - Correct some minor details with Autochanger resource in SD.
532 18Feb05
533 - Fix seg fault if debug level 900 set in SD.
534 - Truncate Win32 child return code to 8 bits.
535 - Remove some old lld's.
536
537 Changes to 1.37.3:
538 16Feb05
539 - Make another attempt at fixing the ClientRunXXX return code 
540   bug on Win32 machines.
541 - Apply ua_status patch from Carsten Paeth <calle@calle.in-berlin.de>
542   which enforces console ACLs in the status command for Jobs.
543 15Feb05
544 - Fix Media LabelDate and FirstWritten to be correctly set.
545 - Fix deadlock in multiple simultaneous jobs.
546 - Fix tape "truncation"/"number of files" after restore bug.
547 10Feb05
548 - Ensure that correct error messages are returned when
549   reading an ANSI label.
550 09Feb05
551 - Modified ANSI label code to preserve any ANSI label 
552   already found by skipping over it rather than rewriting
553   it.
554 - Split the ANSI label code into ansi_label.c
555 - Do not let user relabel an ANSI labeled tape.
556 - Applied a patch for the console help command supplied
557   in a bug report. 
558 - Added some new dev methods. Most notably was
559   set_eof(), which handles setting all the dev variables
560   when an EOF is just read. This is now used most everywhere
561   in the code.
562 07Feb05
563 - Added code to detect that no files were inserted into the 
564   tree for a restore. If a specific JobId was specified, the
565   user has the option of restoring everything.
566 - More progress in implementing 64 bit DB Ids.
567 - Modified the daemon start messages for RH.
568 - Implement update scripts for all database types.
569 - First cut at implementing restore directory (it will not
570   recurse).
571 04Feb05
572 - OK, I think ANSI labels work.
573 - Added Label Type = ANSI|IBM|Bacula to Device resource in SD.
574   If this is set, it will force writing of the appropriate
575   label type.
576 - Added Check Labels = yes|no to Device resource in SD. If this
577   is set, Bacula will check for ANSI labels and accept them,      
578   otherwise, ANSI labels will not be accepted when the tape
579   is first mounted.
580 02Feb05
581 - Second cut ANSI labels.
582 01Feb05
583 - Merge Preben's patch for ACLs and for Mac OS X resource forks.
584 - Some doc updates.
585 - Display more informative message when a device was not
586   found or could not be opened.
587 - Add the sqlite3 database scripts. 
588 - Add some patches for 1.36.1 (note, I have now prepared
589   a 1.36.2 with all the patches and some new features --
590   to be documented).
591 - Some minor doc updates.
592 - Add Arno's baculareport.pl script to the examples directory.
593 29Jan05 -- after vacation
594 - Add support for SQLite3 (it seems to run at 1/2 the speed
595   of SQLite2).  Use --with-sqlite3 instead of --with-sqlite
596   to get SQLite3.
597 - Add target for running qemu to boot Rescue CDROM
598 - Add code to support kernel 2.6 in Rescue CDROM -- does NOT yet
599   boot correctly.
600 - Implement ANSI labels -- not yet tested.
601   This required changes to DB format. No upgrade script yet.
602   Note, more work needed to modify "update" command to handle
603   changing label types, also must restrict volume name lengths
604   to 6 characters.
605 - Add new Device, Storage, and MediaType records to DB. No
606   upgrade script yet.
607 - Add MediaType to bsr file record types. Not yet used in SD.
608 - Permit multiple device specifications in Storage resource in 
609   Dir conf file.
610 - Implement Device resources. Director requests Device resource
611   info from SD on startup. 
612 - Note!!!! DIR->SD incompatible with previous versions.
613 - Remove multiple Storage definitions in Job resource.  One can
614   still specify multiple Storage resources, but they all go into
615   a single alist, and imply sending data to each Storage daemon 
616   simultaneously.
617 - Implement Device query command between DIR and SD.
618 - Allow DIR to "reserve" a Device. It will then be acquired
619   when the FD connects to the SD.
620 - Turn all DIR resources into classes, and implement a few class
621   methods -- more to come.
622 - Turn DEVICE in SD into a class, and implement a number of inline
623   class methods -- more to come.
624 - I had serious problems with ACL errors on my Laptop, and so had
625   to add the following patch:
626   @@ -181,7 +181,7 @@
627       }
628       /***** Do we really want to silently ignore errors from acl_get_file
629         and acl_to_text?  *****/
630   -   return -1;
631   +   return 0;
632    }
633 - Added edit_int64()
634 - Reworked and tested a bit the htable routines.
635 - Major changes to SD acquire.c -- DIR can now reserve devices. Needs
636   lots of testing!!!!
637 - Made a special state code for DVD -- this simplifies the logic
638   of the code, but I probably broke it. Testing needed!!!!
639 - Add AutoChanger resource to SD, but not yet used.
640
641 Changes to 1.37.2:
642 12Jan05
643 - Integrate Preben 'Peppe' Guldberg <peppe@wielders.org>'s
644   acl patch. Fix case where configured but no ACL exists.
645   Rework calling arguments to be shorter and positioned
646   more typically in Bacula usage.
647 11Jan05
648 - Fix scripts/bacula.in to have awk on an environment variable
649   and add comments for Solaris users.
650 - Turn off inet_aton in src/lib/address_conf.c for Win32
651 - Add new files to win32 build and eliminate a compiler warning.
652 - Add sample DVD Device resource to bacula-sd.conf
653 08Jan05
654 - Integrate Nicolas' patch for direct DVD support.        
655 07Jan05
656 - Fix fstype error returns.
657 - Apply Preben's cleanup.patch which puts back much of the
658   cleanup code in src/filed/restore.c
659 06Jan05
660 - Apply all of Preben's patches, but revert to old backup.c
661   and old restore.c in filed. Also turn off code in new
662   acl.c because of errors.  The new code, when fully implemented
663   moves platform specific code into acl.c.
664   One of the patches also implements WildFile and WildDir -- thanks.
665 01Jan05
666 - Implement Python in the SD (no events yet though).
667 - Fix some typos in the previous commit.
668 30Dec04
669 - Enhance CDROM boot to include some documentation at boot time.
670 - NOTE!!!!! The CDROM will not boot 2.6 kernels because the
671     boot sequence has changed significantly. Updates to come
672     later.
673 - Add memtest option to CDROM boot.
674 - Include Nicolas' changes to fix llist JobMedia records.
675 - Make sure that ClientRunBefore/After messages from the program
676   are terminated with a newline. Add strerror to output error
677   messages.
678 - Return program exit status code in Win32.
679 29Dec04
680 - Add memtest86 to Bacula Rescue disk
681 - Enhance Rescue disk startup screen
682 24Dec04
683 - Move some variables to eliminate Solaris 2.6 compiler warnings.
684 - Fix the seg fault at the end of a job in the FD when using
685   old style include/excludes.
686 22Dec04
687 - Apply Preben's ACL patch.
688 - Integrate Preben's restore patch.
689 - Integrate Preben's verify teaks.
690 - Fix doc/latex/Makefile to copy/remove .eps files when building
691   html and web outputs.
692 21Dec04
693 - Fix Bacula so that it does not exit if there is a syntax error
694   in its conf file during a reload command. Bug 182.
695 - Apply fixes suggested for old Solaris networking.
696   Fixes bug 190.
697 - Apply Preben 'Peppe' Guldberg <peppe@wielders.org>
698   three patches that clean up white space:
699   ws.patch.02.strings:
700     Breaks strings that span lines into concatenated strings. I am not sure
701     if you like this one. Other code works with concatenated strings, though.
702   ws.patch.03.trailing:
703     This removes trailing whitespace. No changes resulted from this for
704     my setup.
705   ws.patch.04.leading:
706     This replaces space runs at the start of line with tabs. No changes
707     again.
708 - Fix overriding storage specification to be done
709   through a subroutine.
710 - Fix autoconf so it runs with FC3. 
711 - Add Python4.3 to configure search paths.
712 - Always copy and delete storage definitions into jcr.
713 - Check that VolumeName supplied by Python is valid. 
714   Return 0 if not.
715 19Dec04
716 - Fix undefined in non-Python build.
717 - Update rescue disk to include mkinitrd
718 - Fix umount_drives in rescue disk (only one arg to umount)
719 - Ensure that if SD is manually set in Console, it is used.
720 - Put generate_event on pointer and plug it in init. This
721   permits using it in /lib
722 - Correct despooling size reported to be Job specific rather
723   than for the whole drive.
724 18Dec04
725 - Fix bug 207. jcr use count off by one when manually
726   scheduling jobs.
727 - Remove FNMATCH test in configure.in and always use
728   the one in our library to get the FN_CASEFOLD GNU
729   extensions on all platforms.
730 - While using the rescue CDROM after my computer would not
731   boot, I realized that it would be very useful to have
732   a umount_disks. So, it is not implemented, along with
733   updates to the READMEs and some minor tweaks.
734 - Moved mounting the CDROM in the rescue boot from /cdrom
735   to /mnt/cdrom (more standard location).
736 - Reboot in CDROM rescue should now work -- requires -d
737   option (no write) to work.
738 - Hopefully fixed all the IPV6/4 problems and buffer
739   problems with networking in lib. Bugs 190 and 204.
740   Cleaned up a lot of #ifdefing problems by using routines
741   in address_conf.c
742 17Dec04
743 - Apply Preben 'Peppe' Guldberg <peppe@wielders.org>
744   alist fix patch.
745 - Remove duplicate code from chksum.h (mentioned by Preben).
746 13Dec04
747 - Integrate Tim Oberfoell <oberfoell@web.de> patch to ACLs
748   to handle both the "standard" and "default" ACLs.
749 12Dec04
750 - Integrated Preben 'Peppe' Guldberg <peppe@wielders.org>
751   three cleanup patches (btest, verify, find).
752 - Integrated Preben 'Peppe' Guldberg <peppe@wielders.org>
753   three cleanup patches (backup, chksum, and verify)
754 09Dec04
755 - Integrated Preben 'Peppe' Guldberg <peppe@wielders.org>
756   patch to avoid doing MTIOCGET on OSes that do not support
757   it such as OpenBSD.
758 - Integrated Preben 'Peppe' Guldberg <peppe@wielders.org>
759   patch to add filesystem type matching to FileSets in the
760   Options resource.
761 - Integrated Preben 'Peppe' Guldberg <peppe@wielders.org>
762   patch to add Mac OSX resource fork support (save/restore)
763   to Bacula -- HFS Plus support.
764 - Add FileSet to client Job listing query.
765 06Dec04
766 - Integrated Preben 'Peppe' Guldberg <peppe@wielders.org>
767   patch to backup directories skipped (due to no file system
768   changes or no recursion), and to add a slash to the end
769   of the directory name during the match process.
770 - Implement Jamie ffolliott <jamieff@inline.net>
771   patch to dird_conf.c that enables Multiple Connections and
772   fixes a typo in show. The rest of his patch awaits my suggested
773   changes.
774 05Dec04 
775 - Implement run command in Python
776 04Dec04 
777 - Implement conversion of the manual, and some minor
778   tweaks to the script tags.
779 - Apply a patch supplied by Preben 'Peppe' Guldberg that implements
780   ignore case in wild cards and regexes.
781 - Fix a truncated line in the above patch due to my cut and paste.
782 03Dec04
783 - Fix it so that the InChanger flag is only changed for Volumes
784   in the same Pool.
785 - Add PIDOF configuration path and apply to bacula.in
786 - Add user supplied patch to add inet_aton() of old Solaris
787   systems.
788 - Require pools to match before allowing multiple simultaneous
789   accesses to same storage resource.
790 - Add patch supplied by Martin to correct buffer overrun in
791   bsnprintf() with no library snprintf().
792 02Dec04
793 - Apply user supplied patch that implements No Hard Links.
794 - Document Python interface
795 - Add hardlink keyword patch supplied by David R Bosso <dbosso@lsit.ucsb.edu>
796 01Dec04
797 - Fix non-python prototypes in dummy routines.
798 - Add python 2.3 to config search list (user submitted patch)
799 - Add JobStatus to Python variables.
800 28Nov04
801 - Add "python restart" command in Console.
802 - Make built-in variables table driven.
803 - First cut of Python Events for Bacula. Director only.
804   StartJob, EndJob, NewVolume events.
805
806 Version 1.36.1 Released 26Nov04:
807 24Nov04
808 - Take Dan's fix to the fix_postgresql_tables (thanks Dan)
809 - Increase Maximum Concurrent Jobs to 20 in SD and FD!
810 - Fix improper handling of autochanger Volumes that are not
811   marked InChanger. Bug 170.
812 22Nov04
813 - Update authentication failure message to indicate possible
814   problem with Maximum Concurrent Jobs. Add to doc too.
815 - Commit PostgreSQL BIGINT fix -- apparently some people didn't
816   get it.
817 - Do not use a slot unless it is InChanger in the autochanger
818   code, otherwise autochanger gets upset not finding the Volume.
819   Bug 170 (need fix above too).
820 21Nov04
821 - Make authentication timeout compile time configurable.
822   The value is set in src/baconfig.h
823 - Fix removing items from watchdog queue, which apparently
824   screwed up if there was more than one item.
825 - Rework mediaformat part of manual to separate out old
826   tape format for easier reading.
827 - Add a lot of debug code to the authentication code.
828 - Add seconds to the start/end times printed in the job report.
829 19Nov04
830 - Fix mutex deadlock in dequeue of messages.
831 - Add debug code to FD authorization.
832 18Nov04
833 - Increase authentication timeouts to 10 minutes.  
834 15Nov04
835 - Fix cancel bug in FD on /lib/tls with zero pid in 
836   pthread_kill.
837 - Add date/time to all messages.
838 - Make Qmsg use time message was queued rather than time
839   printed.
840 - Indent job output two spaces.
841 13Nov04
842 - Fix web page links for new manual.
843 - Grant postgresql permission to cdimages.
844 - Correct crash after "list nextvol" "list media" bug 160
845 12Nov04
846 - Fix scripts/Makefile.in missing ;\  -- thanks Martin
847 - A bit of work on btape to keep if from going into infinite
848   loops when things do not work well, and to print a bit
849   better info.
850 11Nov04
851 - JobDefs Storage resource completely overrode anything
852   specified in Job resource -- bug 159 -- fixed.
853 - Fix syntax of renaming postgresql per Dan.
854 - Add working_directory to be /tmp for wx_console.
855 10Nov04
856 - Allow both a JobId and a filename or list of files to be
857   specified on a restore command line.
858 - Save old mtx-changer before installing new one: bug 156
859 - Fix errors in CDROM file pointed out by Scott.
860 09Nov04
861 - Fix exepath when Bacula executed without path.
862 - Move test for socket libraries for Solaris in configure.in
863   before tcp wrapper tests so that linking works.
864 - Add "make copy-static-fd" to makefile in CDROM file to
865   copy existing static fd to CDROM rather than building it.
866 08Nov04
867 - More doc updates
868 - Fix ps command for OpenBSD
869 - Rework the creation of indexes for SQL -- fall back
870   to the old code, but document what can be added.
871 06Nov04
872 - Add new Daemon message handler in default DIR conf.
873 05Nov04
874 - Fix Seg Fault with -D100 in bpipe.c.    
875 - Fix Seg Fault in run specifying a JobId.
876 - Make mail from daemon with a Messages Resource use
877   the MailCommand with editing rather than the default
878   sendmail.
879 - Replace Jmsg in dispatch_message() with Qmsg.
880 - Make edit_job_codes handle NULL jcr.
881 04Nov04
882 - Add M_ALERT class and put tape alerts into it.
883 - Fix Verify count vs found by not double counting files
884   that are split across files/Volumes.
885 30Oct04
886 - Fix count returned from write_bsr_file() to handle multiple
887   volumes. This fixes most cases of the Verify VolumeToCatalog.
888 - Cleanup a bit the make clean for the rescue cdrom and remove
889   unneeded files from the CVS.
890 28Oct04
891 - Fixed acquiring a tape so that it does not block all acquires
892   when operator intervention is needed.
893 - Platform build script updates from Scott
894 - Doc updates
895 - Add patch to force Linux LD_ASSUME_KERNEL to avoid using the
896   new /lib/tls. This is done in the startup scripts.
897 - Modify mtx-changer so that it checks for ONLINE while
898   waiting.
899 - Modify make_postgresql_tables.in so that EndBlock is stored
900   as a bigint. Prevents job failures when a disk volume is
901   larger than 2GB.
902 24Oct04
903 - Add grep ONLINE to wait_for_drive() in mtx-changer.in
904 - More doc.
905 - Rebuild Scott's new configure