]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/cats/make_bacula_tables.in
First cut 1.27 see kes23Oct02
[bacula/bacula] / bacula / src / cats / make_bacula_tables.in
1 #!/bin/sh
2 #
3 # This routine makes the appropriately configured
4 #  Bacula tables for either MySQL or SQLite
5 #
6 if test xsqlite = x@DB_NAME@ ; then
7   echo "Making SQLite tables"
8   source ./make_sqlite_tables
9 else
10   echo "Making MySQL tables"
11   source ./make_mysql_tables
12 fi