summaryrefslogtreecommitdiff
path: root/debian/config
blob: 8710ef97ff8ac404f7ed092d5439c1804d709b83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
set -e

# Source debconf library.
. /usr/share/debconf/confmodule

# Ask for the Matrix homeserver name, address and port.
db_input high matrix-conduit/hostname || true
db_go

db_input low matrix-conduit/address || true
db_go

db_input medium matrix-conduit/port || true
db_go

exit 0