#!/bin/sh

. /usr/share/debconf/confmodule

if [ -f /usr/share/dbconfig-common/dpkg/postinst.pgsql ]; then
	. /usr/share/dbconfig-common/dpkg/postinst.pgsql
	dbc_go whatwhat $@

	if test -f /etc/dbconfig-common/whatwhat.conf; then
	    cat <<EOF > /var/cache/turbogears/whatwhat/prod.cfg
sqlobject.dburi="postgres://${dbc_dbuser}:${dbc_dbpass}@localhost:5432/${dbc_dbname}?cache="
EOF
	fi
fi

#DEBHELPER#
