+2003-08-02 Version 1.31 30Jul03 Released
+- Added a missing CLIENT_FOUND_ROWS to the second attempt to open
+ the MySQL database -- this prevents UPDATE errors if nothing
+ actually changed.
+- Applied corrections to the manual supplied by Bob Collins. Many thanks!
+
2003-07-30 Version 1.31 Beta 30Jul03
- Integrated Robert Mathews improved description of Priorities into
the manual.
Release Notes for Bacula 1.31
- Bacula code: Total files = 258 Total lines = 76,670 (*.h *.c *.in)
+ Bacula code: Total files = 258 Total lines = 76,681 (*.h *.c *.in)
Major Changes this Release:
- Implemented a new job scheduling algorithm with priorities.
- The database format has changed from version 1.30a. Please see below.
- Support to save and restore all files on WinNT/2K/XP systems
including the permissions. Unfortunately files that are in use by another
- program cannot be saved.
+ program cannot be saved -- complain to Microsoft about this.
- Support for Win95 systems (untested since I don't have Win95).
- Heartbeat every 20 minutes between daemons to prevent network
timeouts. The heartbeat interval can be set.
- Better messages if a job is upgraded from Diff or Inc to Full.
- Replaced FileSet MD5 with date created -- more aestetic and readable.
- Fixed a FD crash on long directory names (Win32 specific).
-
+- Added backup script to the examples directory. This allows one command
+ to backup any client. For Win32, the release now contains CygwinBackup.bat
+ and Backup.bat, as well as backup. The bat files call the backup file.
+ By placing an icon on your desktop, you can double click and backup
+ your client.
Items to note: !!!!!
--- /dev/null
+#!/bin/sh
+#
+# A small script to start a Backup job from any Client machine
+#
+# You may need to add a full path and possibly the console.conf location
+#
+# Assume we are in the binary directory
+#
+JOB="NightlySave"
+#
+./console -c console.conf <<END_OF_DATA
+run ${JOB}
+y
+quit
+END_OF_DATA
--- /dev/null
+#!/bin/sh
+#
+# A small script to start a Backup job from any Client machine
+#
+# You may need to add a full path and possibly the console.conf location
+#
+# Assume we are in the binary directory
+#
+JOB="NightlySave"
+#
+/bacula/bin/console -c /bacula/bin/console.conf <<END_OF_DATA
+run ${JOB}
+y
+quit
+END_OF_DATA