home: direnv: add 'postgres' library file

This commit is contained in:
Bruno BELANYI 2022-04-12 17:01:11 +02:00
parent e3f021e832
commit 8ec992cbe3
2 changed files with 41 additions and 4 deletions

View file

@ -0,0 +1,22 @@
#shellcheck shell=bash
layout_postgres() {
if ! has postgres || ! has initdb; then
# shellcheck disable=2016
log_error 'layout_postgres: `postgres` and `initdb` are not in PATH'
return 1
fi
# shellcheck disable=2155
export PGDATA="$(direnv_layout_dir)/postgres"
export PGHOST="$PGDATA"
if [[ ! -d "$PGDATA" ]]; then
initdb
cat >> "$PGDATA/postgresql.conf" << EOF
listen_addresses = ''
unix_socket_directories = '$PGHOST'
EOF
echo "CREATE DATABASE $USER;" | postgres --single -E postgres
fi
}