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.
|
2024-04-25 00:09:50 -04:00
|
|
|
db_input high conduwuit/hostname || true
|
2020-05-31 22:49:07 +02:00
|
|
|
db_go
|
|
|
|
|
|
2024-04-25 00:09:50 -04:00
|
|
|
db_input low conduwuit/address || true
|
2020-05-31 22:49:07 +02:00
|
|
|
db_go
|
|
|
|
|
|
2024-04-25 00:09:50 -04:00
|
|
|
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
|