Conduit is a simple, fast and reliable chat server powered by Matrix https://conduit.rs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
295 B
17 lines
295 B
#!/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
|
|
|