General:
Version 1.39.20 Beta released:
+22Aug06
+kes Correct missing Client table reference in SQL pointed out by
+ Marc.
+21Aug06
+kes Fix Win32 build (new entrypoint, start baculafd).
20Aug06
kes Add -n option to bconsole to turn off conio.
kes Print JobIds to be migrated in Job Report.
- Many cleanups/enhancements for Win32 systems.
- Correct improperly formated list command output reported by Dan.
- Eric fixed RunScripts, which I (Kern) had broken in the last beta.
+- Correct Client migration SQL as pointed out by Marc.
==========================================
Kern's ToDo List
- 19 August 2006
+ 22 August 2006
Major development:
Project Developer
Priority:
For 1.39:
+- Implement Python event for backing up/restoring a file.
- Fix wx-console scanning problem with commas in names.
- Change dbcheck to tell users to use native tools for fixing
broken databases, and to ensure they have the proper indexes.
- add udev rules for Bacula devices.
-- Add manpages to the list of directories for make install.
+- Add manpages to the list of directories for make install. Notify
+ Scott
- If a job terminates, the DIR connection can close before the
Volume info is updated, leaving the File count wrong.
- Look at why SIGPIPE during connection can cause seg fault in
- Add ACL error messages in src/filed/acl.c.
- Make authentication failures single threaded.
- Make Dir and SD authentication errors single threaded.
-- Install man pages
- Fix catreq.c digestbuf at line 411 in src/dird/catreq.c
- Make base64.c (bin_to_base64) take a buffer length
argument to avoid overruns.
/* Get JobIds from regex'ed Client names */
const char *sql_jobids_from_client =
- "SELECT DISTINCT Job.JobId,Job.StartTime FROM Job,Pool"
+ "SELECT DISTINCT Job.JobId,Job.StartTime FROM Job,Pool,Client"
" WHERE Client.Name='%s' AND Pool.Name='%s' AND Job.PoolId=Pool.PoolId"
" AND Job.ClientId=Client.ClientId "
" ORDER by Job.StartTime";
#undef VERSION
#define VERSION "1.39.20"
-#define BDATE "20 August 2006"
-#define LSMDATE "20Aug06"
+#define BDATE "22 August 2006"
+#define LSMDATE "22Aug06"
#define BYEAR "2006" /* year for copyright messages in progs */
/* Debug flags */
Technical notes on version 1.39
General:
+22Aug06
+kes Correct missing Client table reference in SQL pointed out by
+ Marc.
21Aug06
kes Fix Win32 build (new entrypoint, start baculafd).
20Aug06