Skip to content

Commit 4168bc6

Browse files
committed
set default version for debian buster and add support for buster
debian buster was released on july 6th and many folks are already deploying it. This module should start supporting the new debian stable version. For this, we need the module to know what the new default PHP version is for this new release. Closes: #529
1 parent 1726187 commit 4168bc6

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

manifests/globals.pp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828

2929
$default_php_version = $facts['os']['name'] ? {
3030
'Debian' => $facts['os']['release']['major'] ? {
31-
'9' => '7.0',
31+
'9' => '7.0',
32+
'10' => '7.3',
3233
default => '5.x',
3334
},
3435
'Ubuntu' => $facts['os']['release']['major'] ? {

metadata.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@
4848
"operatingsystem": "Debian",
4949
"operatingsystemrelease": [
5050
"8",
51-
"9"
51+
"9",
52+
"10"
5253
]
5354
},
5455
{

0 commit comments

Comments
 (0)