Mercurial > libervia-backend
view docker/prosody_e2e/entrypoint.sh @ 3495:6f7486683e20
core: apply wokkel patches if they are not already:
this case may happen if a sat module is used without the backend being launched (e.g. in
tests)
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 14 Apr 2021 14:09:50 +0200 |
parents | 127dde80a0a5 |
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 -- "$@"