mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-02-16 18:46:54 +00:00
REGTEST: Missing enclosing quotes for ${tmpdir} macro.
This commit is contained in:
parent
9ffb88d3cf
commit
a702947bef
@ -37,14 +37,14 @@ haproxy h1 -conf {
|
|||||||
|
|
||||||
listen http
|
listen http
|
||||||
bind-process 1
|
bind-process 1
|
||||||
bind unix@${tmpdir}/http.socket accept-proxy name ssl-offload-http
|
bind unix@"${tmpdir}/http.socket" accept-proxy name ssl-offload-http
|
||||||
option forwardfor
|
option forwardfor
|
||||||
|
|
||||||
listen ssl-offload-http
|
listen ssl-offload-http
|
||||||
option httplog
|
option httplog
|
||||||
bind-process 2-4
|
bind-process 2-4
|
||||||
bind "fd@${ssl}" ssl crt ${testdir}/common.pem ssl no-sslv3 alpn h2,http/1.1
|
bind "fd@${ssl}" ssl crt ${testdir}/common.pem ssl no-sslv3 alpn h2,http/1.1
|
||||||
server http unix@${tmpdir}/http.socket send-proxy
|
server http unix@"${tmpdir}/http.socket" send-proxy
|
||||||
} -start
|
} -start
|
||||||
|
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ feature ignore_unknown_macro
|
|||||||
|
|
||||||
haproxy h1 -W -conf {
|
haproxy h1 -W -conf {
|
||||||
global
|
global
|
||||||
stats socket ${tmpdir}/h1/stats level admin expose-fd listeners
|
stats socket "${tmpdir}/h1/stats" level admin expose-fd listeners
|
||||||
|
|
||||||
defaults
|
defaults
|
||||||
mode http
|
mode http
|
||||||
@ -39,7 +39,7 @@ haproxy h1 -W -conf {
|
|||||||
} -start
|
} -start
|
||||||
|
|
||||||
shell {
|
shell {
|
||||||
kill -USR2 $(cat ${tmpdir}/h1/pid)
|
kill -USR2 $(cat "${tmpdir}/h1/pid")
|
||||||
}
|
}
|
||||||
|
|
||||||
client c1 -connect ${h1_testme_sock} {
|
client c1 -connect ${h1_testme_sock} {
|
||||||
|
Loading…
Reference in New Issue
Block a user