Commit 441cf232 authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

varnishtest: Predictable identity for Varnish instances

It can still be overridden with `varnish vNAME -arg`, as usual.
parent cbaf1c3f
......@@ -402,8 +402,8 @@ varnish_launch(struct varnish *v)
vsb = VSB_new_auto();
AN(vsb);
VSB_cat(vsb, "cd ${pwd} &&");
VSB_printf(vsb, " exec varnishd %s -d -n %s",
v->jail, v->workdir);
VSB_printf(vsb, " exec varnishd %s -d -n %s -i %s",
v->jail, v->workdir, v->name);
VSB_cat(vsb, VSB_data(params_vsb));
if (leave_temp) {
VSB_cat(vsb, " -p debug=+vcl_keep");
......
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