From 4f19d8474ad8fed127c5d11c55d7533fcd74ba15 Mon Sep 17 00:00:00 2001 From: Eric Bollengier Date: Tue, 30 Aug 2011 14:18:44 +0200 Subject: [PATCH] Fix #1761 about create_postgresql_database --- bacula/src/cats/create_postgresql_database.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bacula/src/cats/create_postgresql_database.in b/bacula/src/cats/create_postgresql_database.in index a9fe0930d1..ddd6c90db4 100644 --- a/bacula/src/cats/create_postgresql_database.in +++ b/bacula/src/cats/create_postgresql_database.in @@ -10,7 +10,7 @@ db_name=${db_name:-@db_name@} # use SQL_ASCII to be able to put any filename into # the database even those created with unusual character sets -PSQLVERSION=`psql -d template1 -c 'select version()' | awk '/PostgreSQL/ {print $2}' | cut -d '.' -f 1,2` +PSQLVERSION=`psql -d template1 -c 'select version()' $* | awk '/PostgreSQL/ {print $2}' | cut -d '.' -f 1,2` # # Note, LC_COLLATE and LC_TYPE are needed on 8.4 and beyond, but are -- 2.39.5