16 lines
373 B
Bash
16 lines
373 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
PROJECT=armaconsole
|
|
|
|
# shellcheck disable=SC2034
|
|
. /usr/share/debconf/confmodule
|
|
if [ -f /usr/share/dbconfig-common/dpkg/config.pgsql ]; then
|
|
. /usr/share/dbconfig-common/dpkg/config.pgsql
|
|
dbc_go "${PROJECT}" "$@"
|
|
fi
|
|
|
|
DEBUG_INSTALL="${DEBUG_INSTALL:-0}"
|
|
[ "$DEBUG_INSTALL" == "1" ] && set -x
|
|
[ "$DEBUG_INSTALL" == "1" ] && echo "Calling config $*"
|