mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 21:22:40 +00:00
18 lines
335 B
Bash
18 lines
335 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
. /usr/share/debconf/confmodule
|
|
|
|
# Settings for dbconfig-common
|
|
dbc_authmethod_user=password
|
|
dbc_dbtypes="sqlite3, pgsql, mysql"
|
|
|
|
# Do dbconfig-common magic
|
|
if test -f /usr/share/dbconfig-common/dpkg/config; then
|
|
. /usr/share/dbconfig-common/dpkg/config
|
|
dbc_go arsse "$@"
|
|
fi
|
|
|
|
# Ask all the questions
|
|
db_go || true
|