summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Fenzi <kevin@scrye.com>2017-04-27 20:35:01 +0000
committerKevin Fenzi <kevin@scrye.com>2017-04-27 20:35:01 +0000
commitf839d0404f2144cd7fd76328014fd3ff341e0c08 (patch)
tree2640454da60f82d665cccdf6bda117548d041ce3
parent9bc9a4065dfa17f416fd0296d311f80bffac3b64 (diff)
downloadansible-f839d0404f2144cd7fd76328014fd3ff341e0c08.tar.gz
ansible-f839d0404f2144cd7fd76328014fd3ff341e0c08.tar.xz
ansible-f839d0404f2144cd7fd76328014fd3ff341e0c08.zip
we need == here
-rw-r--r--roles/varnish/templates/varnish.f25.j24
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/varnish/templates/varnish.f25.j2 b/roles/varnish/templates/varnish.f25.j2
index a21a5aff5..50dc0fd28 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 %}