Browse Source

properly quoted variable names

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

4
deploy/proxmoxve.sh

@ -93,8 +93,8 @@ proxmoxve_deploy(){
# posted to the webserver. # posted to the webserver.
cat << HEREDOC > "$_proxmoxve_temp_data_file" cat << HEREDOC > "$_proxmoxve_temp_data_file"
{ {
"certificates": "$(cat $_cfullchain|tr '\n' ':'|sed 's/:/\\n/g')",
"key": "$(cat $_ckey|tr '\n' ':'|sed 's/:/\\n/g')",
"certificates": "$(cat "$_cfullchain"|tr '\n' ':'|sed 's/:/\\n/g')",
"key": "$(cat "$_ckey"|tr '\n' ':'|sed 's/:/\\n/g')",
"node":"$_node_name", "node":"$_node_name",
"restart":"1", "restart":"1",
"force":"1" "force":"1"

Loading…
Cancel
Save