Register Fedora 32 distro

This commit is contained in:
Brian C. Lane 2020-02-19 12:06:32 -08:00 committed by Tom Gundersen
parent 8e77e03284
commit cace702e9f

View file

@ -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")