This repository has been archived on 2020-09-30. You can view files and clone it, but cannot push or open issues or pull requests.
id.autonomic.zone/sbin/dokku-entrypoint.sh

27 lines
481 B
Bash
Executable File

#!/bin/bash
set -eu -o pipefail
setup_root_user() {
set -eu
if ! grep -q "$ADMIN_USER" /opt/jboss/keycloak/standalone/configuration/keycloak-add-user.json; then
if /opt/jboss/keycloak/bin/add-user-keycloak.sh -r master -u "$ADMIN_USER" -p "$ADMIN_PASS"; then
echo "=====> root user added"
else
echo "=====> Failed to add root user"
exit 1
fi
fi
}
main() {
set -eu
setup_root_user
}
main
/usr/bin/entrypoint "$@"