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