Browse Source

fixed unbound variable

pull/102/head
Roland Gruber 3 years ago
parent
commit
9394eeeabd
  1. 2
      lam-packaging/docker/start.sh

2
lam-packaging/docker/start.sh

@ -23,7 +23,7 @@
set -eu # unset variables are errors & non-zero return values exit the whole script
[ "$DEBUG" ] && set -x
if [ "$LAM_DISABLE_TLS_CHECK" == "true" ]; then
if [ "${LAM_DISABLE_TLS_CHECK:-}" == "true" ]; then
ln -s /etc/ldap/ldap.conf /etc/ldap.conf
echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf
fi

Loading…
Cancel
Save