]> git.sur5r.net Git - bacula/bacula/commitdiff
kes Correct SQLite log table index as reported by Luca Berra.
authorKern Sibbald <kern@sibbald.com>
Mon, 26 Feb 2007 20:28:56 +0000 (20:28 +0000)
committerKern Sibbald <kern@sibbald.com>
Mon, 26 Feb 2007 20:28:56 +0000 (20:28 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@4268 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/INSTALL
bacula/README
bacula/src/cats/make_sqlite3_tables.in
bacula/src/cats/make_sqlite_tables.in
bacula/technotes-2.1

index 1ddba3cfb9eac42d32bc744398862fe5d7f228ab..2dd8a48eda58504ad3684f77bd59035e21bb44d4 100644 (file)
@@ -1,6 +1,7 @@
 
-This file is rather out of date, though it contains generally useful
-information. We recommend following step 1 below (i.e. see the manual).
+This file is rather out of date, and if you want to avoid a lot
+of pain, you will read the manual, which you can find at www.bacula.org 
+
 
 --------------------------------------------------------------------------
 Using GNU autoconfig
index ea5a760f3d20902fd87ecb00713da85aaa7db090..67c06b806b0a138ca9c5618bcbadf534b209b297 100644 (file)
@@ -4,6 +4,8 @@ to read the online manual at:
 
   http://www.bacula.org
 
+You will save yourself a lot of pain if you read
+the manual -- it is online at the above site.
 Barring reading the manual, you might try the
 following:
 
@@ -14,19 +16,13 @@ To Configure it:
     --sysconfdir=$HOME/bacula/bin \
     --with-pid-dir=$HOME/bacula/bin \
     --with-subsys-dir=$HOME/bacula/bin \
-    --with-sqlite=$HOME/depkgs/sqlite \
     --enable-gnome \
-    --with-mysql=$HOME/mysql \
+    --with-mysql \
     --with-working-dir=$HOME/bacula/bin/working \
     --with-dump-email=YOUR_EMAIL_ADDRESS \
     --with-job-email=YOUR_EMAIL_ADDRESS \
     --with-smtp-host=YOUR_SMTP_SERVER_ADDRESS
 
-If you want to use SQLite, please download depkgs and
-build sqlite, then add something like:
-
-    --with-sqlite=$HOME/depkgs/sqlite
-
 
 Build Bacula:
 
index fe44892255bbf5d730a5d86b154d3fba9f573752..9fcbb6c6c8e14bbf5bbcb1ef24136cd44cafa6f1 100644 (file)
@@ -101,7 +101,7 @@ CREATE TABLE Log (
    LogText TEXT NOT NULL,
    PRIMARY KEY(LogId) 
    );
-CREATE INDEX LogInx1 ON File (JobId);
+CREATE INDEX LogInx1 ON Log (JobId);
 
 
 CREATE TABLE FileSet (
index fe44892255bbf5d730a5d86b154d3fba9f573752..9fcbb6c6c8e14bbf5bbcb1ef24136cd44cafa6f1 100644 (file)
@@ -101,7 +101,7 @@ CREATE TABLE Log (
    LogText TEXT NOT NULL,
    PRIMARY KEY(LogId) 
    );
-CREATE INDEX LogInx1 ON File (JobId);
+CREATE INDEX LogInx1 ON Log (JobId);
 
 
 CREATE TABLE FileSet (
index cba72dfd39eb49d4d8a1b004d79cd0d1395c172c..003bba7755ea8917e4d80806500d4eade3abb6fe 100644 (file)
@@ -1,9 +1,11 @@
               Technical notes on version 2.1
 
 General:
-24Feb08
+26Feb07
+kes  Correct SQLite log table index as reported by Luca Berra.
+24Feb07
 ebl  fix fifo stuff, bacula tries to rewind the fifo... Thanks to Andreas
-22Feb08
+22Feb07
 kes  Begin implementing new comm signals for API.
 kes  Fix a few places in lib/message.c where the open fd may 
      not be zeroed.