2020-05-31 20:49:07 +00:00
|
|
|
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
|
2024-05-14 02:51:32 +00:00
|
|
|
# TODO: implement debconf support that is maintainable without duplicating the config
|
2020-05-31 20:49:07 +00:00
|
|
|
# Source debconf library.
|
2024-05-14 02:51:32 +00:00
|
|
|
#. /usr/share/debconf/confmodule
|
|
|
|
#
|
|
|
|
## Ask for the Matrix homeserver name, address and port.
|
|
|
|
#db_input high conduwuit/hostname || true
|
|
|
|
#db_go
|
|
|
|
#
|
|
|
|
#db_input low conduwuit/address || true
|
|
|
|
#db_go
|
|
|
|
#
|
|
|
|
#db_input medium conduwuit/port || true
|
|
|
|
#db_go
|
2020-05-31 20:49:07 +00:00
|
|
|
|
|
|
|
exit 0
|