From 5f33d68f49d92f3bf96082d9dabdd372bbe29b57 Mon Sep 17 00:00:00 2001 From: Alex Kavanagh Date: Sun, 11 Apr 2021 16:45:54 +0100 Subject: [PATCH] 21.04 sync - add 'hirsute' in UBUNTU_RELEASES The 'hirsute' key in c-h/core/host_factory/ubuntu.py: UBUNTU_RELEASES had been missed out, and is needed for hirsute support in many of the charms. This sync is to add just that key. See also [1] Note that this sync is only for classic charms. [1] https://github.com/juju/charm-helpers/pull/598 Change-Id: I3798a8dc52cd80464481692d821590d367a9bf29 --- hooks/charmhelpers/core/host_factory/ubuntu.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hooks/charmhelpers/core/host_factory/ubuntu.py b/hooks/charmhelpers/core/host_factory/ubuntu.py index 7ee8a6ed..5aa4196d 100644 --- a/hooks/charmhelpers/core/host_factory/ubuntu.py +++ b/hooks/charmhelpers/core/host_factory/ubuntu.py @@ -26,7 +26,8 @@ UBUNTU_RELEASES = ( 'disco', 'eoan', 'focal', - 'groovy' + 'groovy', + 'hirsute', )