~libravatar/libravatar/master

148 by Francois Marier
Basic working Debian packaging, ready to be deployed
1
#!/bin/sh
2
3
set -e
4
5
# Source debconf library.
6
. /usr/share/debconf/confmodule
7
8
# Decide how important it is for the user to see this message
9
PRIORITY=high
10
11
db_input $PRIORITY libravatar-common/webmasteremail || true
12
db_input $PRIORITY libravatar-common/cdnservername || true
737 by Francois Marier
Add optional ServerAlias directives in Apache config files
13
db_input $PRIORITY libravatar-common/cdnserveralias || true
148 by Francois Marier
Basic working Debian packaging, ready to be deployed
14
db_input $PRIORITY libravatar-common/seccdnservername || true
737 by Francois Marier
Add optional ServerAlias directives in Apache config files
15
db_input $PRIORITY libravatar-common/seccdnserveralias || true
148 by Francois Marier
Basic working Debian packaging, ready to be deployed
16
db_input $PRIORITY libravatar-common/wwwservername || true
737 by Francois Marier
Add optional ServerAlias directives in Apache config files
17
db_input $PRIORITY libravatar-common/wwwserveralias || true
148 by Francois Marier
Basic working Debian packaging, ready to be deployed
18
db_go