view docker/prosody-e2e/entrypoint.sh @ 3508:9d9fb871a75c

plugin list: `delete` implementation: `delete` is similar to XEP-0060's retractItem, but node is set to default ticket one if not specified.
author Goffi <goffi@goffi.org>
date Thu, 22 Apr 2021 18:19:52 +0200
parents 73e04040d577
children
line wrap: on
line source

#!/bin/bash
set -e

usermod -u "$(stat -c %u /var/lib/prosody/.)" prosody

if [[ "$1" != "prosody" ]]; then
    exec prosodyctl "$@"
    exit 0;
fi

if [ "$LOCAL" -a  "$PASSWORD" -a "$DOMAIN" ] ; then
    prosodyctl register "$LOCAL" "$DOMAIN" "$PASSWORD"
fi

exec runuser -u prosody -- "$@"