12 lines
234 B
Bash
12 lines
234 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
. /usr/share/debconf/confmodule
|
|
|
|
if [ -f /usr/share/dbconfig-common/dpkg/config ]; then
|
|
# we support mysql and pgsql
|
|
dbc_dbtypes="mysql, pgsql"
|
|
|
|
. /usr/share/dbconfig-common/dpkg/config
|
|
dbc_go postfixadmin $@
|
|
fi
|