]> git.sur5r.net Git - bacula/bacula/commitdiff
See kes-1.29
authorKern Sibbald <kern@sibbald.com>
Wed, 8 Jan 2003 19:50:18 +0000 (19:50 +0000)
committerKern Sibbald <kern@sibbald.com>
Wed, 8 Jan 2003 19:50:18 +0000 (19:50 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@276 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/kernstodo
bacula/src/cats/drop_bacula_tables.in
bacula/src/cats/make_bacula_tables.in

index cf9d01154f7b3f8da150a1cb4f4ea176679ad244..352da3bfbac4a788a47236f8425b3bbe7cc3b6a3 100644 (file)
@@ -1,5 +1,5 @@
                  Kern's ToDo List
-                 07 January 2003 
+                 08 January 2003 
 
 Documentation to do: (a little bit at a time)
 - Document running a test version.
@@ -12,15 +12,15 @@ Documentation to do: (a little bit at a time)
 Testing to do: (painful)
 - that console command line options work
 - blocksize recognition code.
+- test fifo code
+- test and fix < code and | code.
 
-For 1.28 release:
-- Look at ua_prune.c in detail. Why did JobType work at all??????
+For 1.29 release:
 - Figure out how to allow multiple simultaneous file Volumes on
   a single device.
 - Why are save/restore of device different sizes (sparse?)
-- Make sure differential handled correctly
+  Yup! Fix it.
 
-For 1.29 release:
 - Implement some why for the Console to dynamically create
   a job.
 - Cancel does not work for restore in FD.
@@ -711,4 +711,6 @@ Done: (see kernsdone for more)
   only a single filename split routine.
 - Figure out how to save the catalog (possibly a special FileSet).
 - Figure out how to restore the catalog.
+- Make sure differential handled correctly
+- Look at ua_prune.c in detail. Why did JobType work at all??????
     
index ebfb0be8a16d7473bd6f7031e3b285f5aef5cf07..fcfdf1ba9fbad53366e7d86a48328d870698ac08 100755 (executable)
@@ -4,9 +4,9 @@
 #    MySQL or SQLite
 #
 if test xsqlite = x@DB_NAME@ ; then
-  source ./drop_sqlite_tables
+  . ./drop_sqlite_tables
   echo "Dropped SQLite tables"
 else
-  source ./drop_mysql_tables
+  . ./drop_mysql_tables
   echo "Dropped MySQL tables"
 fi
index b4f5d19ad6abef1d9edee83e41f5d5acc43651a1..158ae3b8c69685ef329ae4363508792b7c16a48a 100755 (executable)
@@ -5,8 +5,8 @@
 #
 if test xsqlite = x@DB_NAME@ ; then
   echo "Making SQLite tables"
-  source ./make_sqlite_tables
+  . ./make_sqlite_tables
 else
   echo "Making MySQL tables"
-  source ./make_mysql_tables
+  . ./make_mysql_tables
 fi