From 0df1f725661fb9ec7a58309994c8a502576abadd Mon Sep 17 00:00:00 2001 From: Michael Watters Date: Mon, 13 Nov 2017 16:39:11 -0500 Subject: [PATCH] (MODULES-6014) Add support for Fedora 27 to puppetlabs-postgresql Fedora 27 provides postgresql-server version 9.6 in the default repositories. --- manifests/globals.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/globals.pp b/manifests/globals.pp index 1e192f91d9..8fad0c524d 100644 --- a/manifests/globals.pp +++ b/manifests/globals.pp @@ -65,7 +65,7 @@ $default_version = $::osfamily ? { /^(RedHat|Linux)/ => $::operatingsystem ? { 'Fedora' => $::operatingsystemrelease ? { - /^(26)$/ => '9.6', + /^(26|27)$/ => '9.6', /^(24|25)$/ => '9.5', /^(22|23)$/ => '9.4', /^(21)$/ => '9.3',