continuwuity/pkg/debian/postinst
Ginger 58bbc0e676
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
fix: Move packaging files from dist/ to pkg/
2025-09-06 14:03:57 +00:00

20 lines
465 B
Bash

#!/bin/sh
set -e
# TODO: implement debconf support that is maintainable without duplicating the config
#. /usr/share/debconf/confmodule
CONDUWUIT_DATABASE_PATH=/var/lib/conduwuit
CONDUWUIT_CONFIG_PATH=/etc/conduwuit
case "$1" in
configure)
echo ''
echo 'Make sure you edit the example config at /etc/conduwuit/conduwuit.toml before starting!'
echo 'To start the server, run: systemctl start conduwuit.service'
echo ''
;;
esac
#DEBHELPER#