#!/usr/bin/env bash

if ! [ -e $PGDATA/postgresql.conf ]; then
  pg_ctl -w init
else
  echo "Database cluster already initialised."
fi
