]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/cats/grant_bacula_privileges.in
add missing fi
[bacula/bacula] / bacula / src / cats / grant_bacula_privileges.in
1 #!/bin/sh
2 #
3 # This routine makes the appropriately configured
4 #  Bacula tables for PostgreSQL or MySQL.
5 # SQLite does not have permissions.
6 #
7 if test xmysql = x@DB_NAME@ ; then 
8   echo "Granting MySQL privileges"
9   . ./grant_mysql_privileges
10 else
11   if test xpostgresql = x@DB_NAME@ ; then 
12     echo "Granting PostgreSQL privileges"
13     # hard coded database name
14     . ./grant_postgresql_privileges bacula
15   else
16     if test xsqlite = x@DB_NAME@ ; then 
17       echo "Granting SQLite privileges"
18       # hard coded database name
19       . ./grant_sqlite_privileges
20     fi
21   fi
22 fi