we need == here

This commit is contained in:
Kevin Fenzi 2017-04-27 20:35:01 +00:00
parent 9bc9a4065d
commit f839d0404f

View file

@ -22,9 +22,9 @@ VARNISH_SECRET_FILE=/etc/varnish/secret
# Backend storage specification, see Storage Types in the varnishd(5) # Backend storage specification, see Storage Types in the varnishd(5)
# man page for details. # man page for details.
{% if varnish_group = 'kojipkgs' %} {% if varnish_group == 'kojipkgs' %}
VARNISH_STORAGE="malloc,72GB" VARNISH_STORAGE="malloc,72GB"
{% elif varnish_group = 's390kojipkgs' %} {% elif varnish_group == 's390kojipkgs' %}
VARNISH_STORAGE="file,/var/lib/varnish/varnish_storage.bin,20G" VARNISH_STORAGE="file,/var/lib/varnish/varnish_storage.bin,20G"
{% endif %} {% endif %}