diff options
author | Kevin Fenzi <kevin@scrye.com> | 2017-04-27 20:35:01 +0000 |
---|---|---|
committer | Kevin Fenzi <kevin@scrye.com> | 2017-04-27 20:35:01 +0000 |
commit | f839d0404f2144cd7fd76328014fd3ff341e0c08 (patch) | |
tree | 2640454da60f82d665cccdf6bda117548d041ce3 | |
parent | 9bc9a4065dfa17f416fd0296d311f80bffac3b64 (diff) | |
download | ansible-f839d0404f2144cd7fd76328014fd3ff341e0c08.tar.gz ansible-f839d0404f2144cd7fd76328014fd3ff341e0c08.tar.xz ansible-f839d0404f2144cd7fd76328014fd3ff341e0c08.zip |
we need == here
-rw-r--r-- | roles/varnish/templates/varnish.f25.j2 | 4 |
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 %} |