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