3 # shell script to create Bacula database(s)
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'"
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.
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.
21 #ENCODING="ENCODING 'UTF8'"
24 # KES: Note: the CREATE DATABASE, probably should be
25 # CREATE DATABASE ${db_name} $ENCODING TEMPLATE template0
27 if $bindir/psql -f - -d template1 $* <<END-OF-DATA
28 CREATE DATABASE ${db_name} $ENCODING;
29 ALTER DATABASE ${db_name} SET datestyle TO 'ISO, YMD';
32 echo "Creation of ${db_name} database succeeded."
34 echo "Creation of ${db_name} database failed."