diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-12-31 18:22:12 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-12-31 18:22:12 -0300 |
commit | 74d515930abbf2278ac4387cb16f5f2ce5f08807 (patch) | |
tree | fcdbcc4e91991225ef06c144602c81f37839313e /manifests/params.pp | |
parent | a344dbf14ca118ea4862f171d2111713607e54c6 (diff) | |
download | puppet-php-master.tar.gz puppet-php-master.tar.bz2 |
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 ? { |