]> git.sur5r.net Git - bacula/bacula/commitdiff
Final doc updates
authorKern Sibbald <kern@sibbald.com>
Sat, 2 Aug 2003 12:39:44 +0000 (12:39 +0000)
committerKern Sibbald <kern@sibbald.com>
Sat, 2 Aug 2003 12:39:44 +0000 (12:39 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@655 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/ChangeLog
bacula/ReleaseNotes
bacula/examples/backup [new file with mode: 0755]
bacula/src/filed/win32/bin/CygwinBackup.bat [new file with mode: 0755]
bacula/src/filed/win32/bin/backup [new file with mode: 0755]
bacula/src/filed/win32/bin/backup.bat [new file with mode: 0755]

index 8826ebf772f2e110d921a34bb8e1bbcded855e6e..0c7bf25f70e214faa83ce4884c51a2e403ac848a 100644 (file)
@@ -1,4 +1,10 @@
 
+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.
index 79389e9adae8d02ab9f65b46f78ee35185940eb9..adf0f153d74032942776561202eb89dfd8d23722 100644 (file)
@@ -1,14 +1,14 @@
 
           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.
@@ -66,7 +66,11 @@ Other Changes this Release:
 - 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:  !!!!!
diff --git a/bacula/examples/backup b/bacula/examples/backup
new file mode 100755 (executable)
index 0000000..e488b6f
--- /dev/null
@@ -0,0 +1,15 @@
+#!/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
diff --git a/bacula/src/filed/win32/bin/CygwinBackup.bat b/bacula/src/filed/win32/bin/CygwinBackup.bat
new file mode 100755 (executable)
index 0000000..dfa7241
--- /dev/null
@@ -0,0 +1,5 @@
+rem
+rem
+c: 
+cd \cygwin\bacula\bin
+sh ./backup
diff --git a/bacula/src/filed/win32/bin/backup b/bacula/src/filed/win32/bin/backup
new file mode 100755 (executable)
index 0000000..2bfde7a
--- /dev/null
@@ -0,0 +1,15 @@
+#!/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
diff --git a/bacula/src/filed/win32/bin/backup.bat b/bacula/src/filed/win32/bin/backup.bat
new file mode 100755 (executable)
index 0000000..fd2ebdb
--- /dev/null
@@ -0,0 +1,5 @@
+rem
+rem
+c: 
+cd \bacula\bin
+sh ./backup