From f839d0404f2144cd7fd76328014fd3ff341e0c08 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Thu, 27 Apr 2017 20:35:01 +0000 Subject: [PATCH] we need == here --- roles/varnish/templates/varnish.f25.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/varnish/templates/varnish.f25.j2 b/roles/varnish/templates/varnish.f25.j2 index a21a5aff5d..50dc0fd28b 100644 --- a/roles/varnish/templates/varnish.f25.j2 +++ b/roles/varnish/templates/varnish.f25.j2 @@ -22,9 +22,9 @@ VARNISH_SECRET_FILE=/etc/varnish/secret # Backend storage specification, see Storage Types in the varnishd(5) # man page for details. -{% if varnish_group = 'kojipkgs' %} +{% if varnish_group == 'kojipkgs' %} VARNISH_STORAGE="malloc,72GB" -{% elif varnish_group = 's390kojipkgs' %} +{% elif varnish_group == 's390kojipkgs' %} VARNISH_STORAGE="file,/var/lib/varnish/varnish_storage.bin,20G" {% endif %}