1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-01 01:04:50 +03:00

OK, I think I've got the postconfig thing right now.

This commit is contained in:
Bryan Henderson 1996-11-26 08:12:39 +00:00
parent 93f722536f
commit 8cfe27dff0

View File

@ -26,7 +26,7 @@
# #
# #
# IDENTIFICATION # IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.16 1996/11/25 05:51:50 bryanh Exp $ # $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.17 1996/11/26 08:12:39 bryanh Exp $
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
@ -48,11 +48,13 @@ CMDNAME=`basename $0`
# specify the pglib option. Postconfig may validly not exist, in which case # specify the pglib option. Postconfig may validly not exist, in which case
# our invocation of it silently fails. # our invocation of it silently fails.
# The x=x below is to satisfy export if postconfig returns nothing.
# The 2>/dev/null is to swallow the "postconfig: not found" message if there # The 2>/dev/null is to swallow the "postconfig: not found" message if there
# is not postconfig, but it is ineffective in some shells. Better ideas? # is no postconfig.
export x=x $(postconfig 2>/dev/null) postconfig_result="$(sh -c postconfig 2>/dev/null)"
if [ ! -z $postconfig_result ]; then
export $postconfig_result
fi
# Set defaults: # Set defaults:
debug=0 debug=0