Mercurial > libervia-backend
view docker/prosody_e2e/entrypoint.sh @ 3444:10942a6eca8a
contrat social: updated English translation's formulation about censorship:
the new formulation is a translation of the new formulation in original French version.
This has been requested at annual general meeting of 2019-11-23
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 10 Dec 2020 10:27:59 +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 -- "$@"