blob: 9cb12cd7885323c92a5cc319217bdc016f620dd5 (
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
|
#!/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_input medium taler-exchange/autostart || true
db_go
db_stop
|