diff options
Diffstat (limited to 'manifests/params.pp')
-rw-r--r-- | manifests/params.pp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/manifests/params.pp b/manifests/params.pp index 242645c..c7a665b 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -1,12 +1,15 @@ class php::params { + # Previously, 8.4 was used as the default version. But many official Debian + # packages depend on the version currently shipped by Debian. $version8 = $::lsbdistcodename ? { - 'bookworm' => '8.4', - default => '8.4', + 'bookworm' => '8.2', + default => '8.2', } + # Any other version that may have been previously installed in the system. $version8_previous = $::lsbdistcodename ? { - 'bookworm' => [ '8.3', '8.2', '8.1', '8.0' ], - default => [ '8.3', '8.2', '8.1', '8.0' ], + 'bookworm' => [ '8.4', '8.3', '8.1', '8.0' ], + default => [ '8.4', '8.3', '8.1', '8.0' ], } $version7 = $::lsbdistcodename ? { |