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