Commit a5d5113b authored by William Sellitti's avatar William Sellitti
Browse files

seems like the escaped new lines aren't remaining escaped new lines with the new version of curl

parent 7900c493
......@@ -107,7 +107,7 @@ proxmoxve_deploy(){
_json_payload=$(cat << HEREDOC
{
"certificates": "$(tr '\n' ':' < "$_cfullchain" | sed 's/:/\\n/g')",
"key": "$(tr '\n' ':' < "$_ckey" |sed 's/:/\\n/g')",
"key": "$(tr '\n' ':' < "$_ckey" |sed 's/:/\\\n/g')",
"node":"$_node_name",
"restart":"1",
"force":"1"
......@@ -115,7 +115,7 @@ proxmoxve_deploy(){
HEREDOC
)
_debug2 Payload "$_json_payload"
# Push certificates to server.
export _HTTPS_INSECURE=1
export _H1="Authorization: PVEAPIToken=${_proxmoxve_header_api_token}"
......
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