From 87299005740c6f0355a19ee1bfadff56fb9c70fe Mon Sep 17 00:00:00 2001 From: Michael Watters Date: Fri, 30 Oct 2020 16:53:45 -0400 Subject: [PATCH] Set default PostgreSQL version for Fedora 33 Fedora 33 uses Postgresql 12 by default. --- manifests/globals.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/globals.pp b/manifests/globals.pp index 4d5502e11e..ee7d924b87 100644 --- a/manifests/globals.pp +++ b/manifests/globals.pp @@ -153,7 +153,7 @@ $default_version = $facts['os']['family'] ? { /^(RedHat|Linux)/ => $facts['os']['name'] ? { 'Fedora' => $facts['os']['release']['full'] ? { - /^(32)$/ => '12', + /^(32|33)$/ => '12', /^(31)$/ => '11.6', /^(30)$/ => '11.2', /^(29)$/ => '10.6',