mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-21 05:04:32 +08:00
32 lines
600 B
Bash
Executable File
32 lines
600 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}
|
|
|
|
|
|
if [ "$#" -ne 1 ]; then
|
|
echo "usage: $0 nodename"
|
|
exit 1
|
|
fi
|
|
|
|
INSTALL_DB=$1
|
|
|
|
echo "Connecting to $POSTGRES_HOST as user $POSTGRES_USER and with db $INSTALL_DB"
|
|
|
|
cd $DIR
|
|
psql -U $POSTGRES_USER -h $POSTGRES_HOST -v ON_ERROR_STOP=1 <<EOF
|
|
DROP DATABASE IF EXISTS "$INSTALL_DB";
|
|
CREATE DATABASE "$INSTALL_DB";
|
|
\c "$INSTALL_DB"
|
|
\ir sql/load_common.sql
|
|
\ir sql/load_main.sql
|
|
EOF
|
|
|
|
cd $PWD |