aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2019-08-03 14:04:11 -0300
committerSilvio Rhatto <rhatto@riseup.net>2019-08-03 14:04:11 -0300
commite7ef0bafb3dcfc6138ad8f2791e03b0ee8ba633b (patch)
treec38453b032e63d975195c8e175ebbc0fb21dda36
parent015921943e644981c2db546a558e4b909180e6e0 (diff)
downloadpuppet-php-e7ef0bafb3dcfc6138ad8f2791e03b0ee8ba633b.tar.gz
puppet-php-e7ef0bafb3dcfc6138ad8f2791e03b0ee8ba633b.tar.bz2
Adds support to debian buster
-rw-r--r--manifests/params.pp3
-rw-r--r--manifests/series5.pp3
2 files changed, 6 insertions, 0 deletions
diff --git a/manifests/params.pp b/manifests/params.pp
index aa1d85e..6a58523 100644
--- a/manifests/params.pp
+++ b/manifests/params.pp
@@ -1,10 +1,12 @@
class php::params {
$version7 = $::lsbdistcodename ? {
+ 'buster' => '7.3',
'stretch' => '7.1',
default => '7.2',
}
$version7_previous = $::lsbdistcodename ? {
+ 'buster' => '7.2',
'stretch' => '7.0',
default => '7.0',
}
@@ -13,6 +15,7 @@ class php::params {
'bionic' => '5.6',
'xenial' => '5.6',
'trusty' => '5.6',
+ 'buster' => '5.6',
'stretch' => '5.6',
default => '5',
}
diff --git a/manifests/series5.pp b/manifests/series5.pp
index 5198aad..6ccf2a0 100644
--- a/manifests/series5.pp
+++ b/manifests/series5.pp
@@ -9,6 +9,9 @@ class php::series5(
'trusty': {
include php::ppa
}
+ 'buster': {
+ include php::dpa
+ }
'stretch': {
include php::dpa
}