#!/bin/sh # # This routine alters the appropriately configured # Bacula tables for PostgreSQL, MySQL, or SQLite. # if test xsqlite = xsqlite3 -o xsqlite3 = xsqlite3 ; then echo "Altering SQLite tables" /usr/local/bacula/scripts/update_sqlite3_tables $* fi if test xmysql = xsqlite3 ; then echo "Altering MySQL tables" /usr/local/bacula/scripts/update_mysql_tables $* fi if test xpostgresql = xsqlite3 ; then echo "Altering PostgreSQL tables" /usr/local/bacula/scripts/update_postgresql_tables $* fi