Mercurial > libervia-backend
view docker/prosody_e2e/entrypoint.sh @ 3416:d7cfb031e41f
core (launcher): exit code can now specified
Exit code can now be specified by setting the `_exitCode` variable in
`twisted.application.app` module.
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 14 Nov 2020 21:19:40 +0100 |
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 -- "$@"