blob: 1afcf3587a0de470835f537359e7ddfeadf60342 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#!/bin/sh
set -e
. /usr/share/debconf/confmodule
db_input low taler-exchange/eusername || true
db_go
db_input low taler-exchange/rsecusername || true
db_go
db_input low taler-exchange/esecusername || true
db_go
db_input low taler-exchange/wireusername || true
db_go
db_input low taler-exchange/aggrusername || true
db_go
db_input low taler-exchange/groupname || true
db_go
if [ -f /usr/share/dbconfig-common/dpkg/config.pgsql ]; then
. /usr/share/dbconfig-common/dpkg/config.pgsql
dbc_go taler-exchange "$@"
fi
db_stop
|