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

properly quoted variable names

parent 6652138d
......@@ -93,8 +93,8 @@ proxmoxve_deploy(){
# posted to the webserver.
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",
"restart":"1",
"force":"1"
......
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