From b79d0f7fbb91b166e6fc016d1575f6e2b39571ce Mon Sep 17 00:00:00 2001
From: Stefan Galinski <stefan@sgalinski.de>
Date: Thu, 1 Sep 2016 17:15:44 +0200
Subject: [PATCH] [BUGFIX] Fix the condition in a valid way ...

---
 recipes/default.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes/default.rb b/recipes/default.rb
index b780954..c33513b 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 { node['typo3_site']['allow_http2'] }
+		not_if { node['typo3_site']['allow_http2'] }
 	end
 else
 	include_recipe 'apache2::mod_php5'
-- 
GitLab