Commit 72e1eb88 authored by Manuel Friedli's avatar Manuel Friedli
Browse files

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

parent 8ee5ede8
......@@ -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}"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment