Ubuntu Pastebin

Paste from Nish Aravamudan at Wed, 13 Apr 2016 19:18:30 +0000

Download as text
 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
Download as text