X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/60b19818712842f23e5039de2202f7ee45dbb614..1b13d6fc5fb315fe41c0f5300a0483961526f99f:/cookbooks/php/attributes/default.rb diff --git a/cookbooks/php/attributes/default.rb b/cookbooks/php/attributes/default.rb index ecc9c7c66..ccce26093 100644 --- a/cookbooks/php/attributes/default.rb +++ b/cookbooks/php/attributes/default.rb @@ -1 +1,7 @@ -default[:php][:version] = "7.2" +default[:php][:version] = if node[:lsb][:release].to_f < 20.04 + "7.2" + else + "7.4" + end + +default[:php][:fpm][:options] = {}