13 lines
234 B
Text
13 lines
234 B
Text
|
#!/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
|