Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > ca31d24aab88278ba1b48bc0653ed988 > files > 16

bacula-director-common-5.0.3-28.fc15.i686.rpm

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