]> git.sur5r.net Git - bacula/bacula/blob - bacula/ReleaseNotes
Implement kb,mb,and gb modifiers + add Makefile to win32 directory + Michel Meyers...
[bacula/bacula] / bacula / ReleaseNotes
1
2           Release Notes for Bacula 1.33.3
3
4   Bacula code: Total files = 284 Total lines = 88,550 (*.h *.c *.in)
5
6 New directives:
7 - "Close on Poll = yes/no" in SD Device resource.
8 - "Volume Poll Interval = time-interval" in SD Device resource.
9 - "Two EOF = yes/no" in SD Device resource.
10 - "Maximum Network Buffer Size = size" in SD Device resource.
11 - "Maximum Network Buffer Size = size" in FD FileDaemon (or Client) resource.
12 - "Console" new resource in Director conf file.
13      New directives: Name, Description, Password, JobACL, ClientACL,
14         StorageACL, ScheduleACL, RunACL, PoolACL, CommandACL,
15         FileSetACL, CatalogACL.
16 - "Max Run Time = duration" in Director Job resource.
17 - "Max Wait Time = duration" in Director Job resource (not fully implemented).
18 - "JobDefs = name-of-resource" in Director Job resource.
19 - "Jobdefs" new resource in Director. Same directives as for a Job.
20 - "Full Backup Pool = xxx" in Job resource in the Director.
21 - "Incremental Backup Pool = xxx" in Job resource in the Director.
22 - "Differential Backup Pool = xxx" in Job resource in the Director.
23 - Three new options on the Run override statement in a Schedule resource:
24    FullPool=xxx
25    IncrementalPool=xxx
26    DifferentialPool=xxx
27
28 New Commands:
29 - "SetIP"
30 - Added "pool=xxx" to restore command line.
31 - Added "fileset=xxx" to restore command line.
32 - Fixed "storage=xxx" on restore command line.
33 - "markdir" command in restore tree.
34 - "unmarkdir" command in restore tree.
35 - "quit" command in restore tree.
36
37 Most Significant Changes since 1.32f-4
38 - Add a missing unlock in the jobq handler.
39 - Fix bug where a soft linked file and a directory had the same name
40   by treating the soft link as a directory and putting the entries under
41   it. This fixes the bug reported by Alexander Mueller.
42 - Apply Jess Guardiani's second fix to list autochanger volumes without
43   opening the drive (necessary on FreeBSD if no tape is in the drive).
44 - Reworked the command line handler in restore to walk through the
45   arguments one at a time. This makes the file= entries work correctly.
46   Also reworked the code that takes the MediaType and finds a 
47   storage device.
48 - Add quit command to restore tree handler.
49 - Make restore tree handler remember if a hard link is present, and
50   in doing a mark, only get database entry if there is a hard link.
51   mark commands thus run at least 2 orders of magnitude faster.
52 - Add files=xxx field to run command submitted for restore.   
53 - Add yes to restore run command if either yes or run is command line
54   argument.
55 - Make "yes" on command line argument skip prompt for modification of
56   run job.
57 - Add markdir and unmarkdir -- both affect only the directory in
58   question and do not do a recursive descent.
59 - Make tree command automatically mark all higher level directories to
60   be restored when a directory or a file is selected.  Such directories
61   are indicated by preceding the name with a + to indicate that only
62   the directory entry is selected and not the whole directory tree.
63 - Modify a few tree commands to walk through all arguments rather than
64   just taking the first one.
65 - Improved btape "test" and "fill" commands.
66 - The ability to ask the Storage daemon on a device by device basis
67   to "poll" the tape drive at a given interval (minimum 1 minute). If
68   a tape is found, its label is read and if appropriate it is used.
69   This eliminates the need to do "mount" commands.
70 - The ability to close and re-open the device when a poll occurs. 
71   This permits dealing with certain recalcitrant autochangers that
72   invalidate devices (typically on FreeBSD).
73 - Dan Langille has written a PostgreSQL driver for Bacula.
74 - Implement "update slots scan" that reads the volume label(s).
75 - The full form of the scan is "scan=1,2,4-5,7". With no specification,
76   all occupied slots are scanned.
77 - Turn off changer Volumes that are not current in the changer when
78   an "update slots" is done, or if any tape operation discovers that
79   the right volume is not in the slot.
80 - The console program will run all commands it finds in ~/.bconsolerc
81   at startup.
82 - Add Dan Langille's changes to the bacula start/stop script that 
83   permit dropping root permissions just after startup.
84 - New version 1.5.5-1 Cygwin.
85 - Modify SD to update the catalog database when it is shutdown,
86   even if the job is canceled.
87 - Fixed seg fault in restore of multiple simultaneous jobs to 
88   a single Volume.
89 - Fixed thread race problem in multiple simultaneous jobs to
90   a single Volume where the volume lable is not in the first 
91   tape block, so the tape is not recognized.
92
93 Other Changes since 1.32d
94 - Restore directory tree automatically selects all higher level
95   directories to be restored.
96 - Implement conio.c to use in console program -- mini-readline.
97 - Enhance "fill" command of btape -- simpler output. Use -v to
98   cause last block to be dumped after write and after re-read.
99 - Added an autochanger test to the btape "test" command. It is 
100   automatically invoked if the autochanger is properly configured.  It
101   is still a bit primitive but covers the essential of testing
102   the mtx-changer script with your autochanger.
103 - Select the oldest LastWritten volume during recycling.
104 - Added forward space file test to btape "test" command.
105 - All 1.32d patches applied.
106 - Fixed seg fault in restore of multiple simultaneous jobs to 
107   a single Volume.
108 - Fixed thread race problem in multiple simultaneous jobs to
109   a single Volume where the volume lable is not in the first 
110   tape block, so the tape is not recognized.
111
112 Items to note:  !!!!!
113 - FreeBSD users NOTE!!!!!
114   You MUST add the following two records to your SD Device resource for
115   tape drives.
116
117      TWOEOF = yes
118      Fast Forward Space File = no
119
120 - The daemon protocol has changed, you must update everything at once.
121 - The database level has been updated. You must either re-initialize
122   your databases with:
123    
124     ./drop_bacula_tables
125     ./make_bacula_tables
126
127   which will delete ALL prior catalog information, or you can
128   update your database with:
129
130     ./update_bacula_tables
131
132   Please save your old database before dropping the tables or doing
133   an upgrade or you may regret it later.
134
135 - smtp has now become bsmtp
136 - console has now become bconsole.
137 - console.conf is now bconsole.conf
138 - Please don't underestimate the repercussions of the bsmtp and bconsole 
139   name changes!