From 6c1299d3d1c1748a00ec373fc4bef99d249fc080 Mon Sep 17 00:00:00 2001 From: Stefan Galinski <stefan@sgalinski.de> Date: Thu, 1 Sep 2016 17:14:24 +0200 Subject: [PATCH] [BUGFIX] Fix wrong HTTP/2 disable condition --- recipes/default.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/default.rb b/recipes/default.rb index 60952c7..b780954 100644 --- a/recipes/default.rb +++ b/recipes/default.rb @@ -77,7 +77,7 @@ if node['platform_version'] == '16.04' apache_module 'http2' do disable true - only_if { not node['typo3_site']['allow_http2'] } + only_if { node['typo3_site']['allow_http2'] } end else include_recipe 'apache2::mod_php5' -- GitLab