From: Kern Sibbald Date: Wed, 8 Jan 2003 19:50:18 +0000 (+0000) Subject: See kes-1.29 X-Git-Tag: Release-1.29~44 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=6891045fb9ba5b4fd7cf71f97efb5db3c8e66465;p=bacula%2Fbacula See kes-1.29 git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@276 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/kernstodo b/bacula/kernstodo index cf9d01154f..352da3bfba 100644 --- a/bacula/kernstodo +++ b/bacula/kernstodo @@ -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?????? diff --git a/bacula/src/cats/drop_bacula_tables.in b/bacula/src/cats/drop_bacula_tables.in index ebfb0be8a1..fcfdf1ba9f 100755 --- a/bacula/src/cats/drop_bacula_tables.in +++ b/bacula/src/cats/drop_bacula_tables.in @@ -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 diff --git a/bacula/src/cats/make_bacula_tables.in b/bacula/src/cats/make_bacula_tables.in index b4f5d19ad6..158ae3b8c6 100755 --- a/bacula/src/cats/make_bacula_tables.in +++ b/bacula/src/cats/make_bacula_tables.in @@ -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