Skip to content

Commit

Permalink
Fix quoting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jchonig committed Nov 13, 2024
1 parent bc3357c commit 5a0c2ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion root/etc/s6-overlay/s6-rc.d/init-ldap-config/run
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ if grep -q 'REPLACEWITHFERNETKEY' /app/ldap-backend-app.py; then
fi
# Second, check for a cached key
if [[ -z ${key} && -f ${KEY_FILE} ]]; then
_key="$(normalize_key $(cat "${KEY_FILE}"))"
_key=$(normalize_key $(cat "${KEY_FILE}"))
if test_key "${_key}"; then
echo "using key from ${KEY_FILE}"
key="${_key}"
Expand Down

0 comments on commit 5a0c2ee

Please sign in to comment.