2020-05-31 22:49:07 +02:00
|
|
|
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
|
2020-11-13 20:35:22 +01:00
|
|
|
. /usr/share/debconf/confmodule
|
|
|
|
|
2022-02-13 13:15:40 +01:00
|
|
|
CONDUIT_DATABASE_PATH=/var/lib/matrix-conduit/
|
2020-05-31 22:49:07 +02:00
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
configure)
|
|
|
|
# Create the `_matrix-conduit` user if it does not exist yet.
|
|
|
|
if ! getent passwd _matrix-conduit > /dev/null ; then
|
2024-03-12 01:15:40 +01:00
|
|
|
echo 'Adding system user for the Conduwuit Matrix homeserver' 1>&2
|
2020-05-31 22:49:07 +02:00
|
|
|
adduser --system --group --quiet \
|
2021-04-16 22:10:52 +02:00
|
|
|
--home "$CONDUIT_DATABASE_PATH" \
|
2020-05-31 22:49:07 +02:00
|
|
|
--disabled-login \
|
2024-03-12 01:15:40 +01:00
|
|
|
--shell "/usr/sbin/nologin" \
|
2020-05-31 22:49:07 +02:00
|
|
|
--force-badname \
|
|
|
|
_matrix-conduit
|
|
|
|
fi
|
|
|
|
|
2023-07-23 12:14:59 +02:00
|
|
|
# Create the database path if it does not exist yet and fix up ownership
|
|
|
|
# and permissions.
|
|
|
|
mkdir -p "$CONDUIT_DATABASE_PATH"
|
2024-03-12 01:15:40 +01:00
|
|
|
chown _matrix-conduit:_matrix-conduit -R "$CONDUIT_DATABASE_PATH"
|
2023-07-23 12:14:59 +02:00
|
|
|
chmod 700 "$CONDUIT_DATABASE_PATH"
|
2020-05-31 22:49:07 +02:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
#DEBHELPER#
|