Skip to content

Commit 11b0bca

Browse files
Merge pull request #1786 from Nordix/fix_deploy_htpass
🐛 Fix incorrect htpasswd file generation
2 parents 536b43c + 73f9e0a commit 11b0bca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ if [[ "${DEPLOY_BASIC_AUTH}" == "true" ]]; then
148148
fi
149149

150150
if [[ "${DEPLOY_IRONIC}" == "true" ]]; then
151-
echo "IRONIC_HTPASSWD=$(htpasswd -n -b -B "${IRONIC_USERNAME}" "${IRONIC_PASSWORD}")" > \
151+
htpasswd -n -b -B "${IRONIC_USERNAME}" "${IRONIC_PASSWORD}" > \
152152
"${TEMP_IRONIC_OVERLAY}/ironic-htpasswd"
153153
fi
154154
fi

0 commit comments

Comments
 (0)