Files
continuwuity/debian/config
T

18 lines
295 B
Bash
Raw Normal View History

2020-05-31 22:49:07 +02:00
#!/bin/sh
set -e
# Source debconf library.
. /usr/share/debconf/confmodule
2020-11-13 20:35:22 +01:00
# Ask for the Matrix homeserver name, address and port.
2020-05-31 22:49:07 +02:00
db_input high matrix-conduit/hostname || true
db_go
2020-11-13 20:35:22 +01:00
db_input low matrix-conduit/address || true
2020-05-31 22:49:07 +02:00
db_go
2020-11-13 20:35:22 +01:00
db_input medium matrix-conduit/port || true
db_go
2020-05-31 22:49:07 +02:00
exit 0