Files
continuwuity/debian/postinst
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
800 B
Bash
Raw Normal View History

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 12:15:40 +00: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
echo 'Adding system user for the Conduwuit Matrix homeserver' 1>&2
2020-05-31 22:49:07 +02:00
adduser --system --group --quiet \
--home "$CONDUIT_DATABASE_PATH" \
2020-05-31 22:49:07 +02:00
--disabled-login \
--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"
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#