Spotter-VM/postgres/install.sh

25 lines
745 B
Bash
Raw Normal View History

#!/bin/sh
2018-10-28 16:04:11 +01:00
set -ev
2018-10-26 15:02:11 +02:00
cd $(realpath $(dirname "${0}"))/install
# Create Postgres instance
2018-01-27 14:44:44 +01:00
mkdir -p /srv/postgres/data
chown -R 5432:5432 /srv/postgres/data
chmod 700 /srv/postgres/data
2018-09-13 16:21:16 +02:00
lxc-execute -n postgres -- initdb -D /var/lib/postgresql
# Configure Postgres
2018-10-25 22:22:36 +02:00
cp srv/postgres/data/postgresql.conf /srv/postgres/data/postgresql.conf
cp srv/postgres/data/pg_hba.conf /srv/postgres/data/pg_hba.conf
2018-09-14 15:58:10 +02:00
# Enable query logging. Only if the DEBUG environment variable is set
if [ ${DEBUG:-0} -eq 1 ]; then
2018-01-27 14:44:44 +01:00
sed -i 's/^#log_destination/log_destination/' /srv/postgres/data/postgresql.conf
sed -i 's/^#log_statement/log_statement/' /srv/postgres/data/postgresql.conf
fi
2018-09-05 22:20:24 +02:00
# Install service
2018-10-25 22:22:36 +02:00
cp etc/init.d/postgres /etc/init.d/postgres
2018-09-05 22:20:24 +02:00
rc-update -u