Don't use individual redirects, but do it all in one block.

This commit is contained in:
Manuel Friedli 2017-09-04 14:40:28 +02:00
parent 8ee5ede834
commit 72e1eb88d9
1 changed files with 1 additions and 3 deletions

View File

@ -82,9 +82,7 @@ fritzbox_deploy() {
printf -- "--%s\r\n" "${_post_boundary}"
printf "Content-Disposition: form-data; name=\"BoxCertImportFile\"; filename=\"BoxCert.pem\"\r\n"
printf "Content-Type: application/octet-stream\r\n\r\n"
} >>"${_post_request}"
cat "${_ckey}" "${_cfullchain}" >>"${_post_request}"
{
cat "${_ckey}" "${_cfullchain}"
printf "\r\n"
printf -- "--%s--" "${_post_boundary}"
} >>"${_post_request}"