mirror of
https://github.com/acmesh-official/acme.sh.git
synced 2025-05-02 12:12:44 +00:00
haproxy: sanitize the PEM in the deploy script
Sanitize the PEM of the haproxy deploy script by removing the '\n', this way it could be injected directly over the CLI.
This commit is contained in:
parent
884a8995b4
commit
7aaf4432d4
@ -147,7 +147,7 @@ haproxy_deploy() {
|
||||
# Create a temporary PEM file
|
||||
_temppem="$(_mktemp)"
|
||||
_debug _temppem "${_temppem}"
|
||||
cat "${_ccert}" "${_cca}" "${_ckey}" >"${_temppem}"
|
||||
cat "${_ccert}" "${_cca}" "${_ckey}" | grep . >"${_temppem}"
|
||||
_ret="$?"
|
||||
|
||||
# Check that we could create the temporary file
|
||||
|
Loading…
x
Reference in New Issue
Block a user