1
2
3
4
5
6
7
8
9
10
11
12
13 | # Source debconf library
. /usr/share/debconf/confmodule
if [ -f /usr/share/dbconfig-common/dpkg/config ]; then
# we support mysql, pgsql and sqlite
dbc_dbtypes="mysql, pgsql, sqlite"
dbc_dbname=drupal7
dbc_dbuser=drupal7
# source dbconfig-common stuff
. /usr/share/dbconfig-common/dpkg/config --debconf-ok
dbc_go drupal7 $@
fi
|