From cf0a445f3d266e25531aa67d0cae9abb176fc16e Mon Sep 17 00:00:00 2001 From: Theo Chatzimichos Date: Sun, 27 Aug 2017 13:27:51 +0200 Subject: [PATCH] use postgresql 9.6 for the newest SLES and openSUSE releases --- manifests/globals.pp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/manifests/globals.pp b/manifests/globals.pp index 069262227e..c99567161f 100644 --- a/manifests/globals.pp +++ b/manifests/globals.pp @@ -114,10 +114,12 @@ 'SLES' => $::operatingsystemrelease ? { /11\.[0-4]/ => '91', /12\.0/ => '93', - default => '94', + /12\.[1-2]/ => '94', + default => '96', }, 'OpenSuSE' => $::operatingsystemrelease ? { - default => '94', + /42\.[1-2]/ => '94', + default => '96', }, default => undef, },