aboutsummaryrefslogtreecommitdiff
path: root/manifests/params.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2024-12-31 18:22:12 -0300
committerSilvio Rhatto <rhatto@riseup.net>2024-12-31 18:22:12 -0300
commit74d515930abbf2278ac4387cb16f5f2ce5f08807 (patch)
treefcdbcc4e91991225ef06c144602c81f37839313e /manifests/params.pp
parenta344dbf14ca118ea4862f171d2111713607e54c6 (diff)
downloadpuppet-php-master.tar.gz
puppet-php-master.tar.bz2
Fix: disable deb.sury repo by defaultHEADmaster
Diffstat (limited to 'manifests/params.pp')
-rw-r--r--manifests/params.pp11
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 ? {