aboutsummaryrefslogtreecommitdiff
path: root/manifests/params.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/params.pp')
-rw-r--r--manifests/params.pp14
1 files changed, 8 insertions, 6 deletions
diff --git a/manifests/params.pp b/manifests/params.pp
index 6c2bb03..07f4ad1 100644
--- a/manifests/params.pp
+++ b/manifests/params.pp
@@ -1,14 +1,16 @@
class php::params {
$version7 = $::lsbdistcodename ? {
- 'buster' => '7.4',
- 'stretch' => '7.4',
- default => '7.4',
+ 'bullseye' => '7.4',
+ 'buster' => '7.4',
+ 'stretch' => '7.4',
+ default => '7.4',
}
$version7_previous = $::lsbdistcodename ? {
- 'buster' => [ '7.3', '7.2', '7.1', '7.0' ],
- 'stretch' => [ '7.3', '7.2', '7.1', '7.0' ],
- default => [ '7.3', '7.2', '7.1', '7.0' ],
+ 'bullseye' => [ '7.3', '7.2', '7.1', '7.0' ],
+ 'buster' => [ '7.3', '7.2', '7.1', '7.0' ],
+ 'stretch' => [ '7.3', '7.2', '7.1', '7.0' ],
+ default => [ '7.3', '7.2', '7.1', '7.0' ],
}
$version5 = $::lsbdistcodename ? {