X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/f55c80c586ce03dcff307bd37d5422cabf2161a3..794cc957324de66edab45373053be3e601090f1f:/cookbooks/php/attributes/default.rb diff --git a/cookbooks/php/attributes/default.rb b/cookbooks/php/attributes/default.rb index 0ca636813..5dd05a52b 100644 --- a/cookbooks/php/attributes/default.rb +++ b/cookbooks/php/attributes/default.rb @@ -1,5 +1,8 @@ -default[:php][:version] = if node[:lsb][:release].to_f < 20.04 - "7.2" - else +default[:php][:version] = if platform?("debian") + "8.2" + elsif node[:lsb][:release].to_f < 22.04 "7.4" + else + "8.1" end +default[:php][:fpm][:options] = {}