1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
set -e
# Source debconf library.
. /usr/share/debconf/confmodule
# Decide how important it is for the user to see this message
PRIORITY=high
db_input $PRIORITY libravatar-www/db_host || true
db_input $PRIORITY libravatar-www/db_port || true
db_input $PRIORITY libravatar-www/db_name || true
db_input $PRIORITY libravatar-www/db_user || true
db_input $PRIORITY libravatar-www/db_pass || true
db_input $PRIORITY libravatar-www/sitename || true
db_input $PRIORITY libravatar-www/fromemail || true
db_input $PRIORITY libravatar-www/supportemail || true
db_input $PRIORITY libravatar-www/adminemail || true
db_input $PRIORITY libravatar-www/secretkey || true
db_go
|