Mercurial > libervia-backend
view docker/prosody-e2e/entrypoint.sh @ 3654:3910ad643e9d
plugin android: use `callFromThread` instead of `callLater`:
`callLater` is not made to be called outside of main thread, `callFromThread` is the
method to call in this case.
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 08 Sep 2021 11:17:13 +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 -- "$@"