]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
REGTEST: Missing enclosing quotes for ${tmpdir} macro.
authorFrédéric Lécaille <flecaille@haproxy.com>
Thu, 20 Dec 2018 08:55:44 +0000 (09:55 +0100)
committerChristopher Faulet <cfaulet@haproxy.com>
Thu, 20 Dec 2018 10:00:17 +0000 (11:00 +0100)
reg-tests/connection/b00000.vtc
reg-tests/seamless-reload/b00000.vtc

index 674cadd0b9267c16ca02b4e35fef6f9dc9731f2b..415a670dfc248450c4087eb4cda241202bf1d732 100644 (file)
@@ -37,14 +37,14 @@ haproxy h1 -conf {
 
     listen http
         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
 
     listen ssl-offload-http
         option httplog
         bind-process 2-4
         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
 
 
index 35ec0e9933c6ecdcc50974c008f6252937b0668d..f533860fa099281a0efa5bbb6fe01858e711643a 100644 (file)
@@ -18,7 +18,7 @@ feature ignore_unknown_macro
 
 haproxy h1 -W -conf {
   global
-    stats socket ${tmpdir}/h1/stats level admin expose-fd listeners
+    stats socket "${tmpdir}/h1/stats" level admin expose-fd listeners
 
   defaults
     mode http
@@ -39,7 +39,7 @@ haproxy h1 -W -conf {
 } -start
 
 shell {
-  kill -USR2 $(cat ${tmpdir}/h1/pid)
+  kill -USR2 $(cat "${tmpdir}/h1/pid")
 }
 
 client c1 -connect ${h1_testme_sock} {