blob: c8ef2b4ff485566f5230c5ca80698385ebc00456 (
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
|
#!/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
db_stop
|