]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/cats/create_ingres_database.in
Fix dbi driver with bvfs
[bacula/bacula] / bacula / src / cats / create_ingres_database.in
1 #!/bin/sh
2 #
3 # shell script to create Bacula database(s)
4 #
5
6 bindir=@SQL_BINDIR@
7 db_name=@db_name@
8
9 # use SQL_ASCII to be able to put any filename into
10 #  the database even those created with unusual character sets
11 ENCODING="ENCODING 'SQL_ASCII'"
12  
13 # use UTF8 if you are using standard Unix/Linux LANG specifications
14 #  that use UTF8 -- this is normally the default and *should* be
15 #  your standard.  Bacula works correctly *only* with correct UTF8.
16 #
17 #  Note, with this encoding, if you have any "weird" filenames on
18 #  your system (names generated from Win32 or Mac OS), you may
19 #  get Bacula batch insert failures.
20 #
21 #ENCODING="ENCODING 'UTF8'"
22      
23 if createdb $* ${db_name}
24 then
25    echo "Creation of ${db_name} database succeeded."
26 else
27    echo "Creation of ${db_name} database failed."
28 fi
29 exit 0