timescaledb/sql/setup/add_cluster_user.sh
Erik Nordström 7b94c573ba Refactor directory structure and tests
- Directory structure now matches common practices
- Regression tests now run with pg_regress via the PGXS infrastructure.
- Unit tests do not integrate well with pg_regress and have to be run
  separately.
- Docker functionality is separate from main Makefile. Run with
  `make -f docker.mk` to build and `make -f docker.mk run` to run
  the database in a container.
2017-01-31 20:14:19 +01:00

34 lines
705 B
Bash
Executable File

#!/bin/bash
# To avoid pw writing, add localhost:5432:*:postgres:test to ~/.pgpass
set -u
set -e
PWD=`pwd`
DIR=`dirname $0`
POSTGRES_HOST=${POSTGRES_HOST:-localhost}
POSTGRES_USER=${POSTGRES_USER:-postgres}
INSTALL_DB=${INSTALL_DB:-meta}
if [[ "$#" -eq 0 || "$#" -gt 2 ]] ; then
echo "usage: $0 user [pass]"
exit 1
fi
if [ "$#" == 2 ] ; then
PASS=$2
else
PASS="NULL"
fi
PG_USER_TO_ADD=$1
echo "Connecting to $POSTGRES_HOST as user $POSTGRES_USER and with db $INSTALL_DB"
echo "SELECT add_cluster_user('$PG_USER_TO_ADD', $PASS);"
cd $DIR
psql -U $POSTGRES_USER -h $POSTGRES_HOST -d $INSTALL_DB -v ON_ERROR_STOP=1 <<EOF
SELECT add_cluster_user('$PG_USER_TO_ADD', $PASS);
EOF
cd $PWD