From 071b755e4d8f8ec0de5db9d83a6e89434a1d66c4 Mon Sep 17 00:00:00 2001 From: Nicholas Cioli Date: Wed, 24 Nov 2021 08:49:38 -0500 Subject: [PATCH] add support for Ubuntu Hirsute and Impish The current `globals.pp` does not have the necessary default versions for Ubuntu 21.04 (Hirsute Hippo) and 21.10 (Impish Indri). Both of these versions have version 13 available, as can be seen below: - Hisute => https://packages.ubuntu.com/hirsute/postgresql - Impish => https://packages.ubuntu.com/impish/postgresql --- manifests/globals.pp | 1 + 1 file changed, 1 insertion(+) diff --git a/manifests/globals.pp b/manifests/globals.pp index 7e5e45982b..0d5cb139da 100644 --- a/manifests/globals.pp +++ b/manifests/globals.pp @@ -205,6 +205,7 @@ /^(17.04|17.10)$/ => '9.6', /^(18.04)$/ => '10', /^(20.04)$/ => '12', + /^(21.04|21.10)$/ => '13', default => undef, }, default => undef,