diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-07-14 23:14:37 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-07-14 23:15:31 +0200 |
commit | 5e7e5db01384b45cb751cfd5f0e3f23c1cdc7022 (patch) | |
tree | 5379f868d2f68a2d33197005e2e10f86d6c8cc5a /build/pgsql/configure | |
parent | 2548ead4f4b740e96c093f07692a50e2bc776f89 (diff) |
Aesthetic changes
Diffstat (limited to 'build/pgsql/configure')
-rwxr-xr-x | build/pgsql/configure | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/build/pgsql/configure b/build/pgsql/configure index 7eeadc9..3e8a72c 100755 --- a/build/pgsql/configure +++ b/build/pgsql/configure @@ -31,7 +31,9 @@ $echo db=`read_value "odb_test"` $echo -$echo "Please enter the PostgreSQL database host." +$echo "Please enter the PostgreSQL database host. Leaving this field" +$echo "blank results in using Unix-domain sockets. Machines without" +$echo "Unix-domain sockets will connect to localhost." $echo host=`read_value ""` @@ -49,11 +51,11 @@ drv=$dcf_root/db-driver echo "--user '$user'" >$opt echo "--database '$db'" >>$opt -if [ -n "$host"]; then +if [ -n "$host" ]; then echo "--host '$host'" >>$opt fi -if [ -n "$port"]; then +if [ -n "$port" ]; then echo "--port '$port'" >>$opt fi |