From f148057e459de2e0dae63669257caad4f83e0df7 Mon Sep 17 00:00:00 2001 From: antoniocarlon Date: Wed, 13 Jun 2018 13:08:50 +0200 Subject: [PATCH] Added plpythonu --- scripts/ci/install_postgres.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/install_postgres.sh b/scripts/ci/install_postgres.sh index 561e050..b80f25b 100644 --- a/scripts/ci/install_postgres.sh +++ b/scripts/ci/install_postgres.sh @@ -32,7 +32,7 @@ apt-get -y install postgresql-${PGSQL_VERSION} postgresql-${PGSQL_VERSION}-postg # Configure it to accept local connections from postgres echo -e "# TYPE DATABASE USER ADDRESS METHOD \nlocal all postgres trust\nlocal all all trust\nhost all all 127.0.0.1/32 trust" > /etc/postgresql/${PGSQL_VERSION}/main/pg_hba.conf -psql -c "CREATE LANGUAGE plpythonu;" +psql -U postgres -c "CREATE LANGUAGE plpythonu;" # Restart PostgreSQL /etc/init.d/postgresql restart ${PGSQL_VERSION}