Files
continuwuity/debian/config
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
280 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.
db_input high conduwuit/hostname || true
2020-05-31 22:49:07 +02:00
db_go
db_input low conduwuit/address || true
2020-05-31 22:49:07 +02:00
db_go
db_input medium conduwuit/port || true
2020-11-13 20:35:22 +01:00
db_go
2020-05-31 22:49:07 +02:00
exit 0