Some checks are pending
Release Docker Image / merge (push) Blocked by required conditions
Release Docker Image / define-variables (push) Successful in 20s
Documentation / Build and Deploy Documentation (push) Successful in 50s
Checks / Prek / Pre-commit & Formatting (push) Successful in 1m6s
Checks / Prek / Clippy and Cargo Tests (push) Successful in 7m3s
Release Docker Image / build-image (linux/amd64, release, linux-amd64, base) (push) Successful in 16m36s
Release Docker Image / build-image (linux/arm64, release, linux-arm64, base) (push) Successful in 18m46s
18 lines
377 B
Bash
18 lines
377 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
# TODO: implement debconf support that is maintainable without duplicating the config
|
|
# Source debconf library.
|
|
#. /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
|
|
|
|
exit 0
|