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