This repository has been archived on 2024-02-03. You can view files and clone it, but cannot push or open issues or pull requests.
vaultwarden-ldap/overlay/usr/local/bin/entrypoint.sh

41 lines
1.4 KiB
Bash
Raw Normal View History

2020-01-19 00:19:48 +01:00
#!/usr/bin/env sh
2020-02-04 09:47:39 +01:00
set -eo pipefail
2020-01-19 00:19:48 +01:00
/usr/local/bin/gomplate -V -o /app/config.toml -f /etc/templates/config.toml.tmpl
2020-02-04 09:47:39 +01:00
if [ -z "$BITWARDENRS_LDAP_BITWARDEN_URL" ] || [ -z "$BITWARDENRS_LDAP_HOST" ]
then
2020-02-04 10:22:17 +01:00
printf "Error: Bitwarden and/or LDAP server not configured. Exiting ...\n"
2020-02-04 09:47:39 +01:00
exit 1
fi
if [ -n "$BITWARDENRS_LDAP_BITWARDEN_URL" ]
then
WAITFOR_DB_SCHEME=$(/usr/local/bin/url-parser scheme --url "$BITWARDENRS_LDAP_BITWARDEN_URL")
WAITFOR_DB_HOST=$(/usr/local/bin/url-parser host --url "$BITWARDENRS_LDAP_BITWARDEN_URL")
WAITFOR_DB_PORT=$(/usr/local/bin/url-parser port --url "$BITWARDENRS_LDAP_BITWARDEN_URL")
2020-02-04 10:22:17 +01:00
if [ -n "$WAITFOR_DB_PORT" ]
2020-02-04 09:47:39 +01:00
then
2020-02-04 10:22:17 +01:00
[ "$WAITFOR_DB_SCHEME" = "https" ] && WAITFOR_DB_PORT=433 || WAITFOR_DB_PORT=80
2020-02-04 09:47:39 +01:00
fi
printf "Wait for bitwarden server on '%s:%s'...\n" "${WAITFOR_DB_HOST}" "${WAITFOR_DB_PORT}"
/usr/local/bin/wait-for "${WAITFOR_DB_HOST}":"${WAITFOR_DB_PORT}"
fi
if [ -n "$BITWARDENRS_LDAP_HOST" ]
then
2020-02-04 10:22:17 +01:00
WAITFOR_LDAP_SSL=$(/usr/local/bin/gomplate -i '{{ getenv "BITWARDENRS_LDAP_SSL" "true" | conv.Bool }}')
if [ -n "$WAITFOR_LDAP_PORT" ]
2020-02-04 09:47:39 +01:00
then
2020-02-04 10:22:17 +01:00
[ "$WAITFOR_LDAP_SSL" = true ] && WAITFOR_LDAP_PORT=636 || WAITFOR_LDAP_PORT=389
2020-02-04 09:47:39 +01:00
fi
printf "Wait for ldap server on '%s:%s'...\n" "${BITWARDENRS_LDAP_HOST}" "${WAITFOR_LDAP_PORT}"
/usr/local/bin/wait-for "${BITWARDENRS_LDAP_HOST}":"${WAITFOR_LDAP_PORT}"
fi
2020-01-19 23:26:41 +01:00
exec env CONFIG_PATH=/app/config.toml /app/bitwarden_rs_ldap