aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2020-02-03 10:04:02 -0300
committerSilvio Rhatto <rhatto@riseup.net>2020-02-03 10:04:02 -0300
commiteefdc4d88cac3116ad8143515f9e46d5f5f2f744 (patch)
treebda223d9f8f42f580ff900fc5250ddd4608d0572
parent42190b014d798524c7d9f17e587a6fb3ff5f8414 (diff)
downloadpuppet-php-eefdc4d88cac3116ad8143515f9e46d5f5f2f744.tar.gz
puppet-php-eefdc4d88cac3116ad8143515f9e46d5f5f2f744.tar.bz2
Bump to php 7.4
-rw-r--r--manifests/params.pp12
1 files changed, 6 insertions, 6 deletions
diff --git a/manifests/params.pp b/manifests/params.pp
index 6a58523..155a5c1 100644
--- a/manifests/params.pp
+++ b/manifests/params.pp
@@ -1,14 +1,14 @@
class php::params {
$version7 = $::lsbdistcodename ? {
- 'buster' => '7.3',
- 'stretch' => '7.1',
- default => '7.2',
+ 'buster' => '7.4',
+ 'stretch' => '7.4',
+ default => '7.4',
}
$version7_previous = $::lsbdistcodename ? {
- 'buster' => '7.2',
- 'stretch' => '7.0',
- default => '7.0',
+ 'buster' => '7.3',
+ 'stretch' => '7.3',
+ default => '7.3',
}
$version5 = $::lsbdistcodename ? {