From cace702e9f328cddacf680c172ec463092867739 Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Wed, 19 Feb 2020 12:06:32 -0800 Subject: [PATCH] Register Fedora 32 distro --- internal/distro/distro.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/internal/distro/distro.go b/internal/distro/distro.go index 792dd9d4b..2b50a4b07 100644 --- a/internal/distro/distro.go +++ b/internal/distro/distro.go @@ -88,9 +88,14 @@ func NewRegistry(confPaths []string) *Registry { distros.register(f30) f31 := fedora31.New(confPaths) if f31 == nil { - panic("Attempt to register Fedora 30 failed") + panic("Attempt to register Fedora 31 failed") } distros.register(f31) + f32 := fedora32.New(confPaths) + if f32 == nil { + panic("Attempt to register Fedora 32 failed") + } + distros.register(f32) el82 := rhel82.New(confPaths) if el82 == nil { panic("Attempt to register RHEL 8.2 failed")