Browse Source

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

pull/4139/head
William Sellitti 2 years ago
parent
commit
a5d5113be3
  1. 2
      deploy/proxmoxve.sh

2
deploy/proxmoxve.sh

@ -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"

Loading…
Cancel
Save