15 lines
337 B
Bash
Executable File
15 lines
337 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# script/get_db_settings: Fetch postgresql settings and set them as ENV vars
|
|
|
|
source "$(dirname "${0}")"/../script/include/global_header.inc.sh
|
|
|
|
# Run the shared get_db_settings script
|
|
source ./script/include/run_get_db_settings.sh
|
|
|
|
echo
|
|
echo "Postgres settings: "
|
|
echo "PGHOST: $PGHOST"
|
|
echo "PGDATABASE: $PGDATABASE"
|
|
echo
|