diff --git a/cmd/osbuild-composer/composer.go b/cmd/osbuild-composer/composer.go index c8690d1cd..8e5315cc0 100644 --- a/cmd/osbuild-composer/composer.go +++ b/cmd/osbuild-composer/composer.go @@ -63,7 +63,7 @@ func NewComposer(config *ComposerConfigFile, stateDir, cacheDir string, logger * return nil, err } - c.distros, err = distro.NewRegistry(fedora32.New(), fedora33.New(), rhel8.New(), rhel84.New()) + c.distros, err = distro.NewRegistry(fedora32.New(), fedora33.New(), rhel8.New(), rhel84.New(), rhel84.NewCentos()) if err != nil { return nil, fmt.Errorf("Error loading distros: %v", err) } @@ -83,7 +83,7 @@ func NewComposer(config *ComposerConfigFile, stateDir, cacheDir string, logger * func (c *Composer) InitWeldr(repoPaths []string, weldrListener net.Listener) error { archName := common.CurrentArch() - hostDistro, beta, err := c.distros.FromHost() + hostDistro, beta, isStream, err := c.distros.FromHost() if err != nil { return err } @@ -102,6 +102,11 @@ func (c *Composer) InitWeldr(repoPaths []string, weldrListener net.Listener) err name += "-beta" } + // override repository for centos stream, remove when CentOS 8 is EOL + if isStream && name == "centos-8" { + name = "centos-stream-8" + } + repos, err := rpmmd.LoadRepositories(repoPaths, name) if err != nil { return fmt.Errorf("Error loading repositories for %s: %v", hostDistro.Name(), err) diff --git a/cmd/osbuild-pipeline/main.go b/cmd/osbuild-pipeline/main.go index e90153eeb..0d98e35ad 100644 --- a/cmd/osbuild-pipeline/main.go +++ b/cmd/osbuild-pipeline/main.go @@ -73,7 +73,7 @@ func main() { } } - distros, err := distro.NewRegistry(fedora32.New(), fedora33.New(), rhel8.New(), rhel84.New()) + distros, err := distro.NewRegistry(fedora32.New(), fedora33.New(), rhel8.New(), rhel84.New(), rhel84.NewCentos()) if err != nil { panic(err) } diff --git a/docs/news/unreleased/centos-stream.md b/docs/news/unreleased/centos-stream.md new file mode 100644 index 000000000..c892f7602 --- /dev/null +++ b/docs/news/unreleased/centos-stream.md @@ -0,0 +1,5 @@ +# Add support for CentOS Stream 8 + +OSBuild Composer can now build CentOS Stream 8 images. The image definitions +are exactly the same as for the latest supported RHEL 8.y release (8.4 +currently ). diff --git a/internal/boot/context-managers.go b/internal/boot/context-managers.go index 5871bd596..af714850d 100644 --- a/internal/boot/context-managers.go +++ b/internal/boot/context-managers.go @@ -115,13 +115,13 @@ func WithBootedQemuImage(image string, ns NetNS, f func() error) error { var qemuCmd *exec.Cmd if common.CurrentArch() == "x86_64" { - hostDistroName, _, err := distro.GetHostDistroName() + hostDistroName, _, _, err := distro.GetHostDistroName() if err != nil { return fmt.Errorf("cannot determing the current distro: %v", err) } var qemuPath string - if strings.HasPrefix(hostDistroName, "rhel") { + if strings.HasPrefix(hostDistroName, "rhel") || strings.HasPrefix(hostDistroName, "centos") { qemuPath = "/usr/libexec/qemu-kvm" } else { qemuPath = "qemu-system-x86_64" diff --git a/internal/distro/distro.go b/internal/distro/distro.go index 345459a6a..606f29e19 100644 --- a/internal/distro/distro.go +++ b/internal/distro/distro.go @@ -160,31 +160,33 @@ func (r *Registry) List() []string { return list } -func (r *Registry) FromHost() (Distro, bool, error) { - name, beta, err := GetHostDistroName() +func (r *Registry) FromHost() (Distro, bool, bool, error) { + name, beta, isStream, err := GetHostDistroName() if err != nil { - return nil, false, err + return nil, false, false, err } d := r.GetDistro(name) if d == nil { - return nil, false, errors.New("unknown distro: " + name) + return nil, false, false, errors.New("unknown distro: " + name) } - return d, beta, nil + return d, beta, isStream, nil } -func GetHostDistroName() (string, bool, error) { +func GetHostDistroName() (string, bool, bool, error) { f, err := os.Open("/etc/os-release") if err != nil { - return "", false, err + return "", false, false, err } defer f.Close() osrelease, err := readOSRelease(f) if err != nil { - return "", false, err + return "", false, false, err } + isStream := osrelease["NAME"] == "CentOS Stream" + // NOTE: We only consider major releases up until rhel 8.4 version := strings.Split(osrelease["VERSION_ID"], ".") name := osrelease["ID"] + "-" + version[0] @@ -194,7 +196,7 @@ func GetHostDistroName() (string, bool, error) { // TODO: We should probably index these things by the full CPE beta := strings.Contains(osrelease["CPE_NAME"], "beta") - return name, beta, nil + return name, beta, isStream, nil } // GetRedHatRelease returns the content of /etc/redhat-release diff --git a/internal/distro/distro_test.go b/internal/distro/distro_test.go index 34f2bce70..cc1250b16 100644 --- a/internal/distro/distro_test.go +++ b/internal/distro/distro_test.go @@ -18,20 +18,21 @@ func TestDistro_Manifest(t *testing.T) { t, "../../test/data/manifests/", "*", - fedora32.New(), fedora33.New(), rhel8.New(), rhel84.New(), + fedora32.New(), fedora33.New(), rhel8.New(), rhel84.New(), rhel84.NewCentos(), ) } // Test that all distros are registered properly and that Registry.List() works. func TestDistro_RegistryList(t *testing.T) { expected := []string{ + "centos-8", "fedora-32", "fedora-33", "rhel-8", "rhel-84", } - distros, err := distro.NewRegistry(fedora32.New(), fedora33.New(), rhel8.New(), rhel84.New()) + distros, err := distro.NewRegistry(fedora32.New(), fedora33.New(), rhel8.New(), rhel84.New(), rhel84.NewCentos()) require.NoError(t, err) require.Equalf(t, expected, distros.List(), "unexpected list of distros") diff --git a/internal/distro/rhel84/distro.go b/internal/distro/rhel84/distro.go index 4089085f9..129a6fd6e 100644 --- a/internal/distro/rhel84/distro.go +++ b/internal/distro/rhel84/distro.go @@ -20,12 +20,14 @@ import ( ) const name = "rhel-84" +const centosName = "centos-8" const modulePlatformID = "platform:el8" type distribution struct { arches map[string]architecture imageTypes map[string]imageType buildPackages []string + isCentos bool } type architecture struct { @@ -175,6 +177,11 @@ func (t *imageType) Packages(bp blueprint.Blueprint) ([]string, []string) { packages = append(packages, t.arch.bootloaderPackages...) } + if t.arch.distro.isCentos { + // drop insights from centos, it's not available there + packages = removePackage(packages, "insights-client") + } + return packages, t.excludedPackages } @@ -208,6 +215,9 @@ func (t *imageType) Manifest(c *blueprint.Customizations, } func (d *distribution) Name() string { + if d.isCentos { + return centosName + } return name } @@ -248,7 +258,11 @@ func (t *imageType) pipeline(c *blueprint.Customizations, options distro.ImageOp } p := &osbuild.Pipeline{} - p.SetBuild(t.buildPipeline(repos, *t.arch, buildPackageSpecs), "org.osbuild.rhel84") + if t.arch.distro.isCentos { + p.SetBuild(t.buildPipeline(repos, *t.arch, buildPackageSpecs), "org.osbuild.centos8") + } else { + p.SetBuild(t.buildPipeline(repos, *t.arch, buildPackageSpecs), "org.osbuild.rhel84") + } if t.arch.Name() == "s390x" { if pt == nil { @@ -512,8 +526,14 @@ func (t *imageType) grub2StageOptions(pt *disk.PartitionTable, kernelOptions str var uefiOptions *osbuild.GRUB2UEFI if uefi { + var vendor string + if t.arch.distro.isCentos { + vendor = "centos" + } else { + vendor = "redhat" + } uefiOptions = &osbuild.GRUB2UEFI{ - Vendor: "redhat", + Vendor: vendor, } } @@ -722,8 +742,29 @@ func newRandomUUIDFromReader(r io.Reader) (uuid.UUID, error) { return id, nil } +func removePackage(packages []string, packageToRemove string) []string { + for i, pkg := range packages { + if pkg == packageToRemove { + // override the package with the last one from the list + packages[i] = packages[len(packages)-1] + + // drop the last package from the slice + return packages[:len(packages)-1] + } + } + return packages +} + // New creates a new distro object, defining the supported architectures and image types func New() distro.Distro { + return newDistro(false) +} + +func NewCentos() distro.Distro { + return newDistro(true) +} + +func newDistro(isCentos bool) distro.Distro { const GigaByte = 1024 * 1024 * 1024 edgeImgTypeX86_64 := imageType{ @@ -1137,6 +1178,7 @@ func New() distro.Distro { "xfsprogs", "xz", }, + isCentos: isCentos, } x8664 := architecture{ distro: &r, diff --git a/internal/distro/rhel84/distro_test.go b/internal/distro/rhel84/distro_test.go index 953916ff1..e31b2f4d2 100644 --- a/internal/distro/rhel84/distro_test.go +++ b/internal/distro/rhel84/distro_test.go @@ -3,14 +3,31 @@ package rhel84_test import ( "testing" + "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" + "github.com/osbuild/osbuild-composer/internal/blueprint" "github.com/osbuild/osbuild-composer/internal/distro" "github.com/osbuild/osbuild-composer/internal/distro/distro_test_common" "github.com/osbuild/osbuild-composer/internal/distro/rhel84" - "github.com/stretchr/testify/assert" - "github.com/stretchr/testify/require" ) +type rhelFamilyDistro struct { + name string + distro distro.Distro +} + +var rhelFamilyDistros = []rhelFamilyDistro{ + { + name: "rhel", + distro: rhel84.New(), + }, + { + name: "centos", + distro: rhel84.NewCentos(), + }, +} + func TestFilenameFromType(t *testing.T) { type args struct { outputFormat string @@ -65,24 +82,29 @@ func TestFilenameFromType(t *testing.T) { wantErr: true, }, } - for _, tt := range tests { - t.Run(tt.name, func(t *testing.T) { - dist := rhel84.New() - arch, _ := dist.GetArch("x86_64") - imgType, err := arch.GetImageType(tt.args.outputFormat) - if (err != nil) != tt.wantErr { - t.Errorf("Arch.GetImageType() error = %v, wantErr %v", err, tt.wantErr) - return - } - if !tt.wantErr { - got := imgType.Filename() - got1 := imgType.MIMEType() - if got != tt.want { - t.Errorf("ImageType.Filename() got = %v, want %v", got, tt.want) - } - if got1 != tt.want1 { - t.Errorf("ImageType.MIMEType() got1 = %v, want %v", got1, tt.want1) - } + for _, dist := range rhelFamilyDistros { + t.Run(dist.name, func(t *testing.T) { + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + dist := dist.distro + arch, _ := dist.GetArch("x86_64") + imgType, err := arch.GetImageType(tt.args.outputFormat) + if (err != nil) != tt.wantErr { + t.Errorf("Arch.GetImageType() error = %v, wantErr %v", err, tt.wantErr) + return + } + if !tt.wantErr { + got := imgType.Filename() + got1 := imgType.MIMEType() + if got != tt.want { + t.Errorf("ImageType.Filename() got = %v, want %v", got, tt.want) + } + if got1 != tt.want1 { + t.Errorf("ImageType.MIMEType() got1 = %v, want %v", got1, tt.want1) + } + } + }) + } }) } @@ -118,24 +140,27 @@ func TestImageType_BuildPackages(t *testing.T) { "ppc64le": nil, "s390x": nil, } - d := rhel84.New() - for _, archLabel := range d.ListArches() { - archStruct, err := d.GetArch(archLabel) - if assert.NoErrorf(t, err, "d.GetArch(%v) returned err = %v; expected nil", archLabel, err) { - continue - } - for _, itLabel := range archStruct.ListImageTypes() { - itStruct, err := archStruct.GetImageType(itLabel) - if assert.NoErrorf(t, err, "d.GetArch(%v) returned err = %v; expected nil", archLabel, err) { - continue + for _, dist := range rhelFamilyDistros { + t.Run(dist.name, func(t *testing.T) { + d := dist.distro + for _, archLabel := range d.ListArches() { + archStruct, err := d.GetArch(archLabel) + if assert.NoErrorf(t, err, "d.GetArch(%v) returned err = %v; expected nil", archLabel, err) { + continue + } + for _, itLabel := range archStruct.ListImageTypes() { + itStruct, err := archStruct.GetImageType(itLabel) + if assert.NoErrorf(t, err, "d.GetArch(%v) returned err = %v; expected nil", archLabel, err) { + continue + } + assert.ElementsMatch(t, buildPackages[archLabel], itStruct.BuildPackages()) + } } - assert.ElementsMatch(t, buildPackages[archLabel], itStruct.BuildPackages()) - } + }) } } func TestImageType_Name(t *testing.T) { - distro := rhel84.New() imgMap := []struct { arch string imgNames []string @@ -177,16 +202,21 @@ func TestImageType_Name(t *testing.T) { }, }, } - for _, mapping := range imgMap { - arch, err := distro.GetArch(mapping.arch) - if assert.NoError(t, err) { - for _, imgName := range mapping.imgNames { - imgType, err := arch.GetImageType(imgName) + + for _, dist := range rhelFamilyDistros { + t.Run(dist.name, func(t *testing.T) { + for _, mapping := range imgMap { + arch, err := dist.distro.GetArch(mapping.arch) if assert.NoError(t, err) { - assert.Equalf(t, imgName, imgType.Name(), "arch: %s", mapping.arch) + for _, imgName := range mapping.imgNames { + imgType, err := arch.GetImageType(imgName) + if assert.NoError(t, err) { + assert.Equalf(t, imgName, imgType.Name(), "arch: %s", mapping.arch) + } + } } } - } + }) } } @@ -219,27 +249,31 @@ func TestImageType_Size(t *testing.T) { }, } - distro := rhel84.New() - arch, err := distro.GetArch("x86_64") - if assert.NoError(t, err) { - for _, mapping := range sizeMap { - imgType, err := arch.GetImageType(mapping.name) + for _, dist := range rhelFamilyDistros { + t.Run(dist.name, func(t *testing.T) { + arch, err := dist.distro.GetArch("x86_64") if assert.NoError(t, err) { - size := imgType.Size(mapping.inputSize) - assert.Equalf(t, mapping.outputSize, size, "Image type: %s, input size: %d, expected: %d, got: %d", - mapping.name, mapping.inputSize, mapping.outputSize, size) + for _, mapping := range sizeMap { + imgType, err := arch.GetImageType(mapping.name) + if assert.NoError(t, err) { + size := imgType.Size(mapping.inputSize) + assert.Equalf(t, mapping.outputSize, size, "Image type: %s, input size: %d, expected: %d, got: %d", + mapping.name, mapping.inputSize, mapping.outputSize, size) + } + } } - } + }) } } func TestImageType_BasePackages(t *testing.T) { pkgMaps := []struct { - name string - basePackages []string - bootloaderPackages []string - excludedPackages []string - bootable bool + name string + basePackages []string + bootloaderPackages []string + excludedPackages []string + bootable bool + rhelOnlyBasePackages []string }{ { name: "ami", @@ -252,7 +286,6 @@ func TestImageType_BasePackages(t *testing.T) { "@core", "dhcp-client", "gdisk", - "insights-client", "kernel", "langpacks-en", "net-tools", @@ -311,6 +344,9 @@ func TestImageType_BasePackages(t *testing.T) { "timedatex", }, bootable: true, + rhelOnlyBasePackages: []string{ + "insights-client", + }, }, { name: "openstack", @@ -338,27 +374,36 @@ func TestImageType_BasePackages(t *testing.T) { bootable: true, }, } - distro := rhel84.New() - arch, err := distro.GetArch("x86_64") - assert.NoError(t, err) - for _, pkgMap := range pkgMaps { - imgType, err := arch.GetImageType(pkgMap.name) - assert.NoError(t, err) - basePackages, excludedPackages := imgType.Packages(blueprint.Blueprint{}) - assert.Equalf( - t, - append(pkgMap.basePackages, pkgMap.bootloaderPackages...), - basePackages, - "image type: %s", - pkgMap.name, - ) - assert.Equalf(t, pkgMap.excludedPackages, excludedPackages, "image type: %s", pkgMap.name) + for _, dist := range rhelFamilyDistros { + t.Run(dist.name, func(t *testing.T) { + arch, err := dist.distro.GetArch("x86_64") + assert.NoError(t, err) + + for _, pkgMap := range pkgMaps { + imgType, err := arch.GetImageType(pkgMap.name) + assert.NoError(t, err) + basePackages, excludedPackages := imgType.Packages(blueprint.Blueprint{}) + expectedPackages := append(pkgMap.basePackages, pkgMap.bootloaderPackages...) + if dist.name == "rhel" { + expectedPackages = append(expectedPackages, pkgMap.rhelOnlyBasePackages...) + } + assert.ElementsMatchf( + t, + expectedPackages, + basePackages, + "image type: %s", + pkgMap.name, + ) + assert.Equalf(t, pkgMap.excludedPackages, excludedPackages, "image type: %s", pkgMap.name) + } + }) } } func TestDistro_Manifest(t *testing.T) { distro_test_common.TestDistro_Manifest(t, "../../../test/data/manifests/", "rhel_84*", rhel84.New()) + distro_test_common.TestDistro_Manifest(t, "../../../test/data/manifests/", "centos_8*", rhel84.NewCentos()) } // Check that Manifest() function returns an error for unsupported @@ -440,23 +485,28 @@ func TestArchitecture_ListImageTypes(t *testing.T) { }, } - distro := rhel84.New() - for _, mapping := range imgMap { - arch, err := distro.GetArch(mapping.arch) - require.NoError(t, err) - imageTypes := arch.ListImageTypes() - require.ElementsMatch(t, mapping.imgNames, imageTypes) + for _, dist := range rhelFamilyDistros { + t.Run(dist.name, func(t *testing.T) { + for _, mapping := range imgMap { + arch, err := dist.distro.GetArch(mapping.arch) + require.NoError(t, err) + imageTypes := arch.ListImageTypes() + require.ElementsMatch(t, mapping.imgNames, imageTypes) + } + }) } } func TestRhel84_ListArches(t *testing.T) { - distro := rhel84.New() - arches := distro.ListArches() - assert.Equal(t, []string{"aarch64", "ppc64le", "s390x", "x86_64"}, arches) + for _, dist := range rhelFamilyDistros { + t.Run(dist.name, func(t *testing.T) { + arches := dist.distro.ListArches() + assert.Equal(t, []string{"aarch64", "ppc64le", "s390x", "x86_64"}, arches) + }) + } } func TestRhel84_GetArch(t *testing.T) { - distro := rhel84.New() arches := []struct { name string errorExpected bool @@ -479,15 +529,19 @@ func TestRhel84_GetArch(t *testing.T) { }, } - for _, a := range arches { - actualArch, err := distro.GetArch(a.name) - if !a.errorExpected { - assert.Equal(t, a.name, actualArch.Name()) - assert.NoError(t, err) - } else { - assert.Nil(t, actualArch) - assert.Error(t, err) - } + for _, dist := range rhelFamilyDistros { + t.Run(dist.name, func(t *testing.T) { + for _, a := range arches { + actualArch, err := dist.distro.GetArch(a.name) + if !a.errorExpected { + assert.Equal(t, a.name, actualArch.Name()) + assert.NoError(t, err) + } else { + assert.Nil(t, actualArch) + assert.Error(t, err) + } + } + }) } } @@ -496,7 +550,15 @@ func TestRhel84_Name(t *testing.T) { assert.Equal(t, "rhel-84", distro.Name()) } +func TestCentos_Name(t *testing.T) { + distro := rhel84.NewCentos() + assert.Equal(t, "centos-8", distro.Name()) +} + func TestRhel84_ModulePlatformID(t *testing.T) { distro := rhel84.New() assert.Equal(t, "platform:el8", distro.ModulePlatformID()) + + centos := rhel84.NewCentos() + assert.Equal(t, "platform:el8", centos.ModulePlatformID()) } diff --git a/repositories/centos-8.json b/repositories/centos-8.json new file mode 100644 index 000000000..e5c312e50 --- /dev/null +++ b/repositories/centos-8.json @@ -0,0 +1,44 @@ +{ + "aarch64": [ + { + "name": "baseos", + "mirrorlist": "http://mirrorlist.centos.org/?release=8&arch=aarch64&repo=BaseOS", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + }, + { + "name": "appstream", + "mirrorlist": "http://mirrorlist.centos.org/?release=8&arch=aarch64&repo=AppStream", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + } + ], + "ppc64le": [ + { + "name": "baseos", + "mirrorlist": "http://mirrorlist.centos.org/?release=8&arch=ppc64le&repo=BaseOS", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + }, + { + "name": "appstream", + "mirrorlist": "http://mirrorlist.centos.org/?release=8&arch=ppc64le&repo=AppStream", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + } + ], + "x86_64": [ + { + "name": "baseos", + "mirrorlist": "http://mirrorlist.centos.org/?release=8&arch=x86_64&repo=BaseOS", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + }, + { + "name": "appstream", + "mirrorlist": "http://mirrorlist.centos.org/?release=8&arch=x86_64&repo=AppStream", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + } + ] +} diff --git a/repositories/centos-stream-8.json b/repositories/centos-stream-8.json new file mode 100644 index 000000000..aaf765001 --- /dev/null +++ b/repositories/centos-stream-8.json @@ -0,0 +1,44 @@ +{ + "aarch64": [ + { + "name": "baseos", + "mirrorlist": "http://mirrorlist.centos.org/?release=8-stream&arch=aarch64&repo=BaseOS", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + }, + { + "name": "appstream", + "mirrorlist": "http://mirrorlist.centos.org/?release=8-stream&arch=aarch64&repo=AppStream", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + } + ], + "ppc64le": [ + { + "name": "baseos", + "mirrorlist": "http://mirrorlist.centos.org/?release=8-stream&arch=ppc64le&repo=BaseOS", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + }, + { + "name": "appstream", + "mirrorlist": "http://mirrorlist.centos.org/?release=8-stream&arch=ppc64le&repo=AppStream", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + } + ], + "x86_64": [ + { + "name": "baseos", + "mirrorlist": "http://mirrorlist.centos.org/?release=8-stream&arch=x86_64&repo=BaseOS", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + }, + { + "name": "appstream", + "mirrorlist": "http://mirrorlist.centos.org/?release=8-stream&arch=x86_64&repo=AppStream", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + } + ] +} diff --git a/schutzbot/Jenkinsfile b/schutzbot/Jenkinsfile index 04551dc96..06529d7b5 100644 --- a/schutzbot/Jenkinsfile +++ b/schutzbot/Jenkinsfile @@ -118,6 +118,19 @@ pipeline { } } } + stage('CS8') { + agent { label "cs8cloudbase && x86_64 && aws" } + environment { + AWS_CREDS = credentials('aws-credentials-osbuildci') + AWS_IMAGE_TEST_CREDS = credentials('aws-credentials-osbuild-image-test') + } + steps { + sh "schutzbot/ci_details.sh" + retry(3) { + sh "schutzbot/mockbuild.sh" + } + } + } } } @@ -588,6 +601,79 @@ pipeline { } } } + stage('CS8 Base') { + when { + expression { + return env.BUILD_CAUSE != 'cron'; + } + } + + agent { label "cs8cloudbase && x86_64 && aws" } + environment { + TEST_TYPE = "base" + } + steps { + run_tests('base') + } + post { + always { + preserve_logs('cs8-base') + } + } + } + stage('CS8 Image') { + when { + expression { + return env.BUILD_CAUSE != 'cron'; + } + } + + agent { label "cs8cloudbase && psi && x86_64" } + environment { + TEST_TYPE = "image" + AWS_CREDS = credentials('aws-credentials-osbuildci') + AWS_IMAGE_TEST_CREDS = credentials('aws-credentials-osbuild-image-test') + AZURE_CREDS = credentials('azure') + OPENSTACK_CREDS = credentials("psi-openstack-creds") + VCENTER_CREDS = credentials('vmware-vcenter-credentials') + DISTRO_CODE = "centos-stream8" + } + steps { + run_tests('image') + } + post { + always { + preserve_logs('cs8-image') + sh ( + label: "Run cloud cleaner just in case something failed", + script: "schutzbot/run_cloud_cleaner.sh" + ) + } + } + } + stage('CS8 Integration') { + when { + expression { + return env.BUILD_CAUSE != 'cron'; + } + } + + agent { label "cs8cloudbase && x86_64 && psi" } + environment { + TEST_TYPE = "integration" + AWS_CREDS = credentials('aws-credentials-osbuildci') + AWS_IMAGE_TEST_CREDS = credentials('aws-credentials-osbuild-image-test') + AWS_API_TEST_SHARE_ACCOUNT = credentials('aws-credentials-share-account') + } + steps { + run_tests('integration') + } + post { + always { + preserve_logs('cs8-integration') + } + } + } } } } diff --git a/schutzbot/mockbuild.sh b/schutzbot/mockbuild.sh index ae6fc5cfe..36330fb68 100755 --- a/schutzbot/mockbuild.sh +++ b/schutzbot/mockbuild.sh @@ -13,6 +13,10 @@ ARCH=$(uname -m) # Mock configuration file to use for building RPMs. MOCK_CONFIG="${ID}-${VERSION_ID%.*}-$(uname -m)" +if [[ $ID == centos ]]; then + MOCK_CONFIG="centos-stream-$(uname -m)" +fi + # The commit this script operates on. COMMIT=$(git rev-parse HEAD) @@ -39,7 +43,7 @@ if curl --silent --fail --head --output /dev/null "${REPO_URL}/repodata/repomd.x fi # Mock and s3cmd is only available in EPEL for RHEL. -if [[ $ID == rhel ]] && ! rpm -q epel-release; then +if [[ $ID == rhel || $ID == centos ]] && ! rpm -q epel-release; then greenprint "📦 Setting up EPEL repository" curl -Ls --retry 5 --output /tmp/epel.rpm \ https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm diff --git a/test/cases/api.sh b/test/cases/api.sh index 918955935..12e363250 100644 --- a/test/cases/api.sh +++ b/test/cases/api.sh @@ -99,6 +99,9 @@ case $(set +x; . /etc/os-release; echo "$ID-$VERSION_ID") in "fedora-33") DISTRO="fedora-33" ;; + "centos-8") + DISTRO="centos-8" + ;; esac cat > "$REQUEST_FILE" << EOF diff --git a/test/cases/koji.sh b/test/cases/koji.sh index 39c093967..6fc36bd72 100755 --- a/test/cases/koji.sh +++ b/test/cases/koji.sh @@ -25,7 +25,7 @@ else fi greenprint "Adding podman dnsname plugin" -if [[ $ID == rhel ]]; then +if [[ $ID == rhel || $ID == centos ]]; then sudo cp /usr/share/tests/osbuild-composer/vendor/87-podman-bridge.conflist /etc/cni/net.d/ sudo cp /usr/share/tests/osbuild-composer/vendor/dnsname /usr/libexec/cni/ fi diff --git a/test/cases/libvirt.sh b/test/cases/libvirt.sh index 7e9f156d6..7c6bd3aba 100644 --- a/test/cases/libvirt.sh +++ b/test/cases/libvirt.sh @@ -12,8 +12,8 @@ source /etc/os-release /usr/libexec/osbuild-composer-test/libvirt_test.sh openstack /usr/libexec/osbuild-composer-test/libvirt_test.sh vhd -# RHEL 8.4 images also supports uefi, check that -if [[ "${ID}-${VERSION_ID}" == "rhel-8.4" ]]; then - echo "🐄 Booting qcow2 image in UEFI mode on RHEL" +# RHEL 8.4 and Centos Stream 8 images also supports uefi, check that +if [[ "${ID}-${VERSION_ID}" == "rhel-8.4" || "${ID}-${VERSION_ID}" == "centos-8" ]]; then + echo "🐄 Booting qcow2 image in UEFI mode on RHEL/Centos Stream" /usr/libexec/osbuild-composer-test/libvirt_test.sh qcow2 uefi fi diff --git a/test/data/manifests/centos_8-x86_64-ami-boot.json b/test/data/manifests/centos_8-x86_64-ami-boot.json new file mode 100644 index 000000000..fd918940b --- /dev/null +++ b/test/data/manifests/centos_8-x86_64-ami-boot.json @@ -0,0 +1,10920 @@ +{ + "boot": { + "type": "aws" + }, + "compose-request": { + "distro": "centos-8", + "arch": "x86_64", + "image-type": "ami", + "repositories": [ + { + "name": "baseos", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + }, + { + "name": "appstream", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + } + ], + "filename": "image.raw", + "blueprint": {} + }, + "manifest": { + "sources": { + "org.osbuild.files": { + "urls": { + "sha256:003ee19ec5b88de212c3246bdfdb3e97a9910a25a219fd7cf5030b7bc666fea9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-requests-2.20.0-2.1.el8_1.noarch.rpm" + }, + "sha256:0064a3aeff41fb7345c061956c35e4b9d0b8802954e717491fb6eb51028d22fd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lmdb-libs-0.9.24-1.el8.x86_64.rpm" + }, + "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libs-0.182-3.el8.x86_64.rpm" + }, + "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libyaml-0.1.7-5.el8.x86_64.rpm" + }, + "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnghttp2-1.33.0-3.el8_2.1.x86_64.rpm" + }, + "sha256:017e78c5e23f98d6ee299255fc7be5381dba63d169e3f5dcb1de9d21b5d30ba5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-syspurpose-1.28.10-1.el8.x86_64.rpm" + }, + "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsigsegv-2.11-5.el8.x86_64.rpm" + }, + "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-5.2.4-3.el8.x86_64.rpm" + }, + "sha256:03b50a4ea5cf5655c67e2358fabb6e563eec4e7929e7fc6c4e92c92694f60fa0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mozjs60-60.9.0-4.el8.x86_64.rpm" + }, + "sha256:0560d3b3e915221aad94ddf83169bd680b1f0da9aa8ec8e9360bcb8fe071483e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mdadm-4.1-15.el8.x86_64.rpm" + }, + "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-5.33-16.el8.x86_64.rpm" + }, + "sha256:066f254f9ac7712b44214816de907a87eb8dfd0d2ea9570a7513db9a6617ba26": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dbus-1.2.4-15.el8.x86_64.rpm" + }, + "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-2.0.4-10.el8.x86_64.rpm" + }, + "sha256:07ed1209e898552e6aeac0e6d148271d562c576f7d903cb7a99a697643068f58": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-cffi-1.11.5-5.el8.x86_64.rpm" + }, + "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.182-3.el8.noarch.rpm" + }, + "sha256:084c55bef75a2ce2ab67aa4eeb6726ca59ea6d7c2b23bc6e4084f11aac7e17f8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-client-4.3.6-44.0.1.el8.x86_64.rpm" + }, + "sha256:08b76b0af07db4d3b27776a96bb7d0dc0f02b7219569676ac79036190d731d5b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libedit-3.1-23.20170329cvs.el8.x86_64.rpm" + }, + "sha256:09128c1b70cb8ea1a9bfbc6f3314dd5a8ba0c1a1886a82cd0fbe6845d48215dc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-0.115-11.el8.x86_64.rpm" + }, + "sha256:0aaaaa29cc1bb4d358142db6eb7d12df9252a8166bf61956203878eed210785c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libteam-1.31-2.el8.x86_64.rpm" + }, + "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/expat-2.2.5-4.el8.x86_64.rpm" + }, + "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-scripts-20200713-1.git51d1222.el8.noarch.rpm" + }, + "sha256:0e9a8a0f823bf0ef948862f0ccb62353460bd07931e756c98f23908c1c526578": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-decorator-4.2.1-2.el8.noarch.rpm" + }, + "sha256:0edde19e0c027c8cff31b82e1f4b0b198c00bf924047fcf4dd610a7d4965ab52": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pytz-2017.2-9.el8.noarch.rpm" + }, + "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-25-17.el8.x86_64.rpm" + }, + "sha256:0feac495306bbe6e3149a352025bea8d23cda512859a230cbd3f510cf48caaf7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonschema-2.6.0-4.el8.noarch.rpm" + }, + "sha256:105beb1a237e66802e64e620f79b357dfc8f3bb8952ac2f293548f1d68ca40b1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libfastjson-0.99.8-2.el8.x86_64.rpm" + }, + "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cpio-2.12-10.el8.x86_64.rpm" + }, + "sha256:1230ddb5d92fe538a0526e3a9f05563a111ae4ff1978fc8e18de889974b5b46c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_autofs-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:142c67cdc69366820a7fc7567e40567b545b52f279d1ff992e4787d3c1ea4956": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-fs-2.24-5.el8.x86_64.rpm" + }, + "sha256:142d4fe6236cdeac3f967517085d99649215d75026fbe00746e0c5214d7d20df": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-policycoreutils-2.9-12.el8.noarch.rpm" + }, + "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-6.1-7.20180224.el8.x86_64.rpm" + }, + "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libblkid-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:15dc15a5be210707852f051f4d09949c063a7283edc7d4ca3d4289eedcc0b509": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gobject-base-3.28.3-2.el8.x86_64.rpm" + }, + "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-libs-25-17.el8.x86_64.rpm" + }, + "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/npth-1.5-4.el8.x86_64.rpm" + }, + "sha256:16b34582f757aebb9bc7b0a0475458cbb186238b5b528ef8fdb099cb739ba383": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-squash-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:173a812d859c70f8db7b014d507c5cacb76c62ab5480c44be217f880465f42c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-server-8.0p1-5.el8.x86_64.rpm" + }, + "sha256:176ffcb2cf0fdcbdd2d8119cbd98eef60a30fdb0fb065a9382d2c95e90c79652": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-chardet-3.0.4-7.el8.noarch.rpm" + }, + "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-c-0.13.1-0.4.el8.x86_64.rpm" + }, + "sha256:1824bc3233b76fabb2305d11bd9bc905cb8e8d7f44006f253164b64808be4b39": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libudisks2-2.9.0-6.el8.x86_64.rpm" + }, + "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-2.02-93.el8.x86_64.rpm" + }, + "sha256:185f36b3af9367e6142233af358df22f23ee623697bc6a45c47091013707872e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpath_utils-0.2.1-39.el8.x86_64.rpm" + }, + "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grubby-8.40-41.el8.x86_64.rpm" + }, + "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-5.3.28-40.el8.x86_64.rpm" + }, + "sha256:19ca7ab9cb2e39ec452ed1424f828ec464266094e31903301680d5a5d0e2ac2c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libmaxminddb-1.2.0-10.el8.x86_64.rpm" + }, + "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.6-26.el8.x86_64.rpm" + }, + "sha256:1b5187e9b694e439a059be58d8de5317f04278371d1195bf000b001ba8699197": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libldb-2.2.0-1.el8.x86_64.rpm" + }, + "sha256:1b53c868277dec628058b31b1a8a8a2ccd8efe832ce9694805b5f82564136eb3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-prettytable-0.7.2-14.el8.noarch.rpm" + }, + "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/freetype-2.9.1-5.el8.x86_64.rpm" + }, + "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kpartx-0.8.4-8.el8.x86_64.rpm" + }, + "sha256:1bd969e0521820374122f5132e5998d9bd2ab185be66565a7266096297419c8e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-configobj-5.0.6-11.el8.noarch.rpm" + }, + "sha256:1c4b186665558747023a60d0d662d3780a1bc49e578062f4b70100c71ab2220c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mokutil-0.3.0-11.el8.x86_64.rpm" + }, + "sha256:1d130b0daf86899c3987d59567303ce7ae44c3273f2d8d0f0625bef7e6bad16d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-base-6.1-7.20180224.el8.noarch.rpm" + }, + "sha256:20874a9d40b12125c9e5b97fe4ccda3f94acbc03da1dec7299123901f5b56631": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-oauthlib-2.1.0-1.el8.noarch.rpm" + }, + "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libunistring-0.9.9-3.el8.x86_64.rpm" + }, + "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-libs-1.1.1g-12.el8_3.x86_64.rpm" + }, + "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-3.5.0-1.el8.x86_64.rpm" + }, + "sha256:226bb890cc85bfc60d874a9cb13cb7f7f1e90d90308c7726e25e14cee5487e66": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-crypto-2.24-5.el8.x86_64.rpm" + }, + "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/acl-2.2.53-1.el8.x86_64.rpm" + }, + "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:2c63399bee449fb6e921671a9bbf3356fda73f890b578820f7d926202e98a479": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libaio-0.3.112-1.el8.x86_64.rpm" + }, + "sha256:2c6dd4f21d9c4bde29f693d32e44f0d1c5dc73d78d013767df531d69bbfc6ed8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_nss_idmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:2d4cf3bd8b8046adfa869fbb5b472294469457f6445db36abcc227959be9adeb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bind-export-libs-9.11.26-2.el8.x86_64.rpm" + }, + "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/filesystem-3.8-4.el8.x86_64.rpm" + }, + "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstdc++-8.4.1-1.el8.x86_64.rpm" + }, + "sha256:2e0b39dbf3b7e68a06f321a04797d4e521b9b484ffc8d6d53f7662613e077065": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-softokn-3.53.1-17.el8_3.x86_64.rpm" + }, + "sha256:2e8d4ee76fa8678b0e4d6c0297b16f96e0116201bf96b36e8924b1b080abcddd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-cli-3.5.0-1.el8.x86_64.rpm" + }, + "sha256:2ebe28be2e0a413af31a0f49b6a2774670067cdbe48e723040b19922ae205d6b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-cryptography-3.2.1-3.el8.x86_64.rpm" + }, + "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-pkcs11-0.4.10-2.el8.x86_64.rpm" + }, + "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-libs-239-44.el8.x86_64.rpm" + }, + "sha256:30fab73ee155f03dbbd99c1e30fe59dfba4ae8fdb2e7213451ccc36d6918bfcc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmnl-1.0.4-6.el8.x86_64.rpm" + }, + "sha256:3162a4a9159994002c3c6f5fe6a12160020e8f3484f1406ff5092311ca639548": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-langpack-en-2.28-147.el8.x86_64.rpm" + }, + "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sed-4.5-2.el8.x86_64.rpm" + }, + "sha256:34321e09964f724b712ed709115f794b1953f4a4d472d655bec0993d27c51a22": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nspr-4.25.0-2.el8_2.x86_64.rpm" + }, + "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gpg-1.13.1-7.el8.x86_64.rpm" + }, + "sha256:370b74a811249b8f0bdfcd34137507f058a85196775e9d0d2bb244c100d194ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_sudo-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:377ad20c1681518bff1f40884589bddc4a692506384c7676f072ddf86ae429f9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_idmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pigz-2.4-4.el8.x86_64.rpm" + }, + "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdnf-0.55.0-2.el8.x86_64.rpm" + }, + "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libffi-3.1-22.el8.x86_64.rpm" + }, + "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-all-langpacks-2.28-147.el8.x86_64.rpm" + }, + "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-libs-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-libs-1.18-1.el8.x86_64.rpm" + }, + "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libfdisk-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:3acd2c8b6ea534811308b3138859b5fa150b89604bb60f16b0650747039d696a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/irqbalance-1.4.0-6.el8.x86_64.rpm" + }, + "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gmp-6.1.2-10.el8.x86_64.rpm" + }, + "sha256:3c6650fd6e32fdc24b8cf1f7a85ae8232661b47bda7019e49fd0eb474683ff23": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hdparm-9.54-3.el8.x86_64.rpm" + }, + "sha256:3cd092e6e03efb4bb49b91dedd52b43f891092d04a2ff040b9f2197ec2082511": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/logrotate-3.14.0-4.el8.x86_64.rpm" + }, + "sha256:3cf4fcd2fe43e6477d5f1c05167c669c247dcbeea1ab37bf3b7d42dcab482565": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-2.24-5.el8.x86_64.rpm" + }, + "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ima-evm-utils-1.3.2-11.el8.x86_64.rpm" + }, + "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-4.4.2-5.el8.noarch.rpm" + }, + "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chkconfig-1.13-2.el8.x86_64.rpm" + }, + "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmartcols-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:3efd6a2548813167fe37718546bc768a5aa8ba59aa80edcecd8ba408bec329b0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/vim-minimal-8.0.1763-15.el8.x86_64.rpm" + }, + "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shared-mime-info-1.9-3.el8.x86_64.rpm" + }, + "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grep-3.1-6.el8.x86_64.rpm" + }, + "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/popt-1.18-1.el8.x86_64.rpm" + }, + "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dosfstools-4.1-6.el8.x86_64.rpm" + }, + "sha256:406aea2bb2a5f83cabee5a50bad08a3516776c3cd42db8b159f926624f61aa42": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libqmi-1.24.0-1.el8.x86_64.rpm" + }, + "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-release-8.4-1.el8.noarch.rpm" + }, + "sha256:41d9c9f8e17c83f73e51e90f02e08927bb9c836d033815c6cdddc6da44e321f0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-libnm-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:4280042747c9027c3252d360fa33d63490aa518858849115b20162a097a37146": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kexec-tools-2.0.20-45.el8.x86_64.rpm" + }, + "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-2.2.20-2.el8.x86_64.rpm" + }, + "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-1.2.0-2.el8.x86_64.rpm" + }, + "sha256:4302361b12eefd5574f57bf0c49c0e5bdc738eddda33634af8b35adfb53a52a1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/yum-4.4.2-5.el8.noarch.rpm" + }, + "sha256:436e93b4c072f8b6f90f41a037d017406be10c18efafc8c634f6da59bbac1105": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-libs-4.3.6-44.0.1.el8.x86_64.rpm" + }, + "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-common-2.28-147.el8.x86_64.rpm" + }, + "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-libs-6.1-7.20180224.el8.x86_64.rpm" + }, + "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tzdata-2021a-1.el8.noarch.rpm" + }, + "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcrypt-1.8.5-4.el8.x86_64.rpm" + }, + "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nettle-3.4.1-2.el8.x86_64.rpm" + }, + "sha256:451d0cb6e2284578e3279b4cbb5ec98e9d98a687556c6b424adf8f1282d4ef58": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libsemanage-2.9-6.el8.x86_64.rpm" + }, + "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-libs-5.33-16.el8.x86_64.rpm" + }, + "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/unbound-libs-1.7.3-15.el8.x86_64.rpm" + }, + "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/basesystem-11-5.el8.noarch.rpm" + }, + "sha256:48bfe66d6f07baf1974355e8a3ebbc44f2d9812b823ddfff1c15f35635a8dc4e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efivar-libs-37-4.el8.x86_64.rpm" + }, + "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libacl-2.2.53-1.el8.x86_64.rpm" + }, + "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-3.14.3-62.el8.noarch.rpm" + }, + "sha256:4a28d9fa9785d7e8515deaf5e1a381a553c37b02a81a20ddd4fa202b33413ac9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-network-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:4c02e3e1808f0189269b242242468a364007a8f12c6e38afc24b599b2848b0fa": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/virt-what-1.18-6.el8.x86_64.rpm" + }, + "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-libs-3.7.0-1.el8.x86_64.rpm" + }, + "sha256:4c5c7f3773c634c054b0a5fc1b40d0a8448b44bb5aff410bfa88facf9e2059ff": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/parted-3.2-38.el8.x86_64.rpm" + }, + "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-3.7.0-1.el8.x86_64.rpm" + }, + "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtirpc-1.1.4-4.el8.x86_64.rpm" + }, + "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-config-0.9.4-2.el8.noarch.rpm" + }, + "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-rpm-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-utils-2.9-5.el8.x86_64.rpm" + }, + "sha256:508e9470ed648c28c1ef5a4a74072b188daa795f2369d10929f1ddbb5d3b5a3f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ModemManager-glib-1.10.8-2.el8.x86_64.rpm" + }, + "sha256:5092704c041bb246eaafd478bedface3f99ce8fa233ada5cf96807f67e980e42": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmbios-2.4.1-2.el8.x86_64.rpm" + }, + "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgomp-8.4.1-1.el8.x86_64.rpm" + }, + "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/curl-7.61.1-18.el8.x86_64.rpm" + }, + "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-pip-9.0.3-19.el8.noarch.rpm" + }, + "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-0.3.15-1.el8.x86_64.rpm" + }, + "sha256:525393e4d658e395c6280bd2ff4afe54999796c4722986325297ba4bfade3ea5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pyyaml-3.12-12.el8.x86_64.rpm" + }, + "sha256:53ae3ecd59ec61852cabbd039c748ed63ceb6a88da98587d4c33323ba4095154": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsysfs-2.1.0-24.el8.x86_64.rpm" + }, + "sha256:5452b96e4b57c275dd41e48d55af1ca4f77ccfb3ae403796e599a039d7382b91": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libbasicobjects-0.1.1-39.el8.x86_64.rpm" + }, + "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libarchive-3.3.3-1.el8.x86_64.rpm" + }, + "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64.rpm" + }, + "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libdnf-0.55.0-2.el8.x86_64.rpm" + }, + "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.3.3-2.el8.x86_64.rpm" + }, + "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libibverbs-32.0-4.el8.x86_64.rpm" + }, + "sha256:59ba5bf69953a5a2e902b0f08b7187b66d84968852d46a3579a059477547d1a0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libselinux-2.9-5.el8.x86_64.rpm" + }, + "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-20200713-1.git51d1222.el8.noarch.rpm" + }, + "sha256:5b7763510f4badd05a1647e1fadf9dc49044b1cf4d754262d0d6d5ee9a8f3b12": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxmlb-0.1.15-1.el8.x86_64.rpm" + }, + "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxml2-2.9.7-9.el8.x86_64.rpm" + }, + "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-iniparse-0.4-31.el8.noarch.rpm" + }, + "sha256:5c0cf0adf7a3ad24ddde58f298ebf4ce741bccdfc8eff0103644115c837f80d6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/volume_key-libs-0.3.11-5.el8.x86_64.rpm" + }, + "sha256:5c68635cb03533a38d4a42f6547c21a1d5f9952351bb01f3cf865d2621a6e634": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lzo-2.08-14.el8.x86_64.rpm" + }, + "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hwdata-0.314-8.7.el8.noarch.rpm" + }, + "sha256:5e24dd39ae59ef7b7a386f28509cc80d8fabb23f0932e52ea365cf064ff76c59": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/numactl-libs-2.0.12-11.el8.x86_64.rpm" + }, + "sha256:5f3d3d3b27b7df75738d1ee31112c60d39c54b8d7f92b6900606187f6cffce1d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chrony-3.5-1.el8.x86_64.rpm" + }, + "sha256:5f45a2ff1a9c9f3d4fcae463c1ca70b1a16caccc59816ce391f064c9d8b9d8ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:5f4f256128dba88a13599d6458908c24c0e9c18d8979ae44bf5734da8e7cab70": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jinja2-2.10.1-2.el8_0.noarch.rpm" + }, + "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxcrypt-4.1.1-4.el8.x86_64.rpm" + }, + "sha256:60b0cbc5e435be346bb06f45f3336f8936d7362022d8bceda80ff16bc3fb7dd2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonpointer-1.10-11.el8.noarch.rpm" + }, + "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/info-6.5-6.el8.x86_64.rpm" + }, + "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-libs-5.2.4-3.el8.x86_64.rpm" + }, + "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gpgme-1.13.1-7.el8.x86_64.rpm" + }, + "sha256:6327624b7b0d726a3c95f2245619efb1df8e70023fadcc8158afed39f57859e7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdhash-0.5.0-39.el8.x86_64.rpm" + }, + "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpsl-0.20.2-6.el8.x86_64.rpm" + }, + "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsepol-2.9-2.el8.x86_64.rpm" + }, + "sha256:63a6b7765828081cc88b36d10c68621acbebf02a7c2e7d7f1a1217c8742ea6ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-1.5.2-4.el8.x86_64.rpm" + }, + "sha256:657db08f58b6776f48fda17d2b734a26918b431253f9e4eba9fd5a46d9f89aef": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-tui-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pip-wheel-9.0.3-19.el8.noarch.rpm" + }, + "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.175-3.el8.x86_64.rpm" + }, + "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20180723-1.el8.noarch.rpm" + }, + "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcom_err-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:6710a1b2f28e5ffd0fff3e74a76d84d12a602be79703e53e1a55166f2f7d141c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fwupd-1.5.5-1.el8.x86_64.rpm" + }, + "sha256:67419432fe7d373f8e5ddaa7b0dd1c25389608bf2f4ee76dbabcc2d96eb8c9d0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-country-20180605-1.el8.noarch.rpm" + }, + "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-smime-2.2.20-2.el8.x86_64.rpm" + }, + "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-0.23.22-1.el8.x86_64.rpm" + }, + "sha256:6aa1e29a4d805fc36c3196788fe78cb4552e2ebec8b3d0f8d32974e6a97025f2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-perf-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:6b740563ba5858573ff3c2d2a827aeaf6e7166178e36066755d2cde4cf8a016f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libref_array-0.1.5-39.el8.x86_64.rpm" + }, + "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsemanage-2.9-6.el8.x86_64.rpm" + }, + "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sqlite-libs-3.26.0-13.el8.x86_64.rpm" + }, + "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-libs-2.9.7-12.el8.x86_64.rpm" + }, + "sha256:6cd7444c22d56201f61fed5fd741b44cfaae18d95b811d25c5f0ffe2f8e55a8f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-kcm-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gzip-1.9-12.el8.x86_64.rpm" + }, + "sha256:708a8fd75f7c6987d66e2d62de664b5a84c6f75fd4e5230e244681897b15a25d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcollection-0.7.0-39.el8.x86_64.rpm" + }, + "sha256:70b5e4e580da72969ad3bb144c15293910b7d679e195c118cee60d8320f01851": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuser-0.62-23.el8.x86_64.rpm" + }, + "sha256:7115a12fad224b469419e19ee5c0d38322f467fe7a1c441c1b0239b197baac2a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-nfs-idmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tpm2-tss-2.3.2-3.el8.x86_64.rpm" + }, + "sha256:71fbed9d1b1f6965b42a5c87c98732bed84a8a2efb43c2218b4d1c59e9eaf190": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-sysinit-3.53.1-17.el8_3.x86_64.rpm" + }, + "sha256:71fcbbec3aa152bc1427cb4d597375b008438f6259b20cfcb68fff21eef80f91": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-anacron-1.5.2-4.el8.x86_64.rpm" + }, + "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libelf-0.182-3.el8.x86_64.rpm" + }, + "sha256:7443e0df4d55a40a0ba3cec4cd4da620200a255605e31a137bee001cb4b43af3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rsync-3.1.3-12.el8.x86_64.rpm" + }, + "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libevent-2.1.8-5.el8.x86_64.rpm" + }, + "sha256:74b842ba3352d7c4ada7e991aeadf8749f058a4d00ccc6f79f1c82a281497cb7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iputils-20180629-6.el8.x86_64.rpm" + }, + "sha256:760141c74870a93505dbba2174034287b6a97b9bb2b12c5ca2b7af056773b45b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-config-generic-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-1.18-1.el8.x86_64.rpm" + }, + "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-targeted-3.14.3-62.el8.noarch.rpm" + }, + "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-239-44.el8.x86_64.rpm" + }, + "sha256:774d214a379c0b729d7e989f9d5094fdfda7df68c1e792ba9200542032f04c91": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-libs-1.44-5.el8.x86_64.rpm" + }, + "sha256:776a182ecaab9f86c7e869db2eb2deea1f291caee701cddbd752da8cd3c57458": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/prefixdevname-0.1.0-6.el8.x86_64.rpm" + }, + "sha256:7800dfd0d4769a898d11db330fdb5b19614533628a45fe91cce406d6cd1f0c71": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cloud-utils-growpart-0.31-1.el8.noarch.rpm" + }, + "sha256:78c43d8a15ca018de1803e4baac5819e1baab1963fd31f1e44e54e8a573acbfc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-idna-2.5-5.el8.noarch.rpm" + }, + "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodulemd-2.9.4-2.el8.x86_64.rpm" + }, + "sha256:79277d872ae6035009a1a40e914ec09bca21aefcac9d73dee65880c86387f3c9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-efi-x64-2.02-93.el8.x86_64.rpm" + }, + "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openldap-2.4.46-16.el8.x86_64.rpm" + }, + "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-data-4.4.2-5.el8.noarch.rpm" + }, + "sha256:7a7963e2052bfb45b8569f64619dc5cb92fe8aeb78c754b7cf948b9784646785": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hostname-3.20-6.el8.x86_64.rpm" + }, + "sha256:7bc2e2a25b04b52a4ec5de2858e75eb07f16495d4de5f7ce926777130302cfe3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libestr-0.1.10-1.el8.x86_64.rpm" + }, + "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libzstd-1.4.4-1.el8.x86_64.rpm" + }, + "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-libs-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libidn2-2.2.0-1.el8.x86_64.rpm" + }, + "sha256:7e2804a4494d4179ed50c0c99da1e30c3a6abf8db889c1412b458943cff0e3e5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gobject-introspection-1.56.1-1.el8.x86_64.rpm" + }, + "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libusbx-1.0.23-4.el8.x86_64.rpm" + }, + "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:7ec48db9e1e9896f29a16cbea53cdeecdd7dd2bc278c06721ebca2e71e9dcd6d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-common-4.3.6-44.0.1.el8.noarch.rpm" + }, + "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libs-3.6.8-36.el8.x86_64.rpm" + }, + "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpcap-1.9.1-5.el8.x86_64.rpm" + }, + "sha256:7f506879c64e0bb4d98782d025f46fb9a07517487ae4cbebbb3985a98f4e2154": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pysocks-1.6.8-3.el8.noarch.rpm" + }, + "sha256:7fa8fbc576f7d54c388fa39fc3ed86bacb7964cac4544c48b3ffabcdcdc27b61": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/initscripts-10.00.12-1.el8.x86_64.rpm" + }, + "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-hmaccalc-1.2.0-2.el8.x86_64.rpm" + }, + "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/findutils-4.6.0-20.el8.x86_64.rpm" + }, + "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcurl-7.61.1-18.el8.x86_64.rpm" + }, + "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-0.19.8.1-17.el8.x86_64.rpm" + }, + "sha256:82ce159a9e4e4b6b4fdce9ad954aa507f67108430bd261a4dcd826e44d0152a4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pyserial-3.1.1-8.el8.noarch.rpm" + }, + "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/util-linux-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libcomps-0.1.11-5.el8.x86_64.rpm" + }, + "sha256:839c62cd7fc7e152decded6f28c80b5f7b8f34a5e319057867b38b26512cee67": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/snappy-1.1.8-3.el8.x86_64.rpm" + }, + "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-gpg-keys-8-2.el8.noarch.rpm" + }, + "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgpg-error-1.31-1.el8.x86_64.rpm" + }, + "sha256:85eb614fc608f3b3f4bbd08d4a3b0ff6af188677ea4e009be021680c521cedae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonpatch-1.21-2.el8.noarch.rpm" + }, + "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcroco-0.6.12-4.el8_2.1.x86_64.rpm" + }, + "sha256:8852282172440cd618c695356449cbc035be4091b2a0833c785c8e42cc1df0e6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnfsidmap-2.3.3-41.el8.x86_64.rpm" + }, + "sha256:8891a9a4707611c13a5693b195201dd940254ffdb03cf5742952329282bb8cb7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pycparser-2.14-14.el8.noarch.rpm" + }, + "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-2.9-5.el8.x86_64.rpm" + }, + "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-udev-239-44.el8.x86_64.rpm" + }, + "sha256:8d3bdefac6c0f39e66e092d62b37efa3076976ae66def1f9dd1f217022406efa": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-swap-2.24-5.el8.x86_64.rpm" + }, + "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:8d6742dce47f8ed65e222864872e919f30c678f5df1e99c134fba8a0fc7f454d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-libs-0.115-11.el8.x86_64.rpm" + }, + "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libss-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-2.28-147.el8.x86_64.rpm" + }, + "sha256:918518368513d162d772dfc5d16536ad2799276bcba2f47514a1c7098de2b43f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtalloc-2.3.1-2.el8.x86_64.rpm" + }, + "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/os-prober-1.74-6.el8.x86_64.rpm" + }, + "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-unbound-1.7.3-15.el8.x86_64.rpm" + }, + "sha256:941a9068b8fa524ecac58d37f941b95fbdcd9e38bd87c7f9d1330c5925a52a20": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-plugins-core-4.0.18-3.el8.noarch.rpm" + }, + "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-setuptools-39.2.0-6.el8.noarch.rpm" + }, + "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-1.02.175-3.el8.x86_64.rpm" + }, + "sha256:947fee92d0c147d832bbb3ab53e0b96817d03c38260429a4ff01856324b160da": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-util-3.53.1-17.el8_3.x86_64.rpm" + }, + "sha256:9664aba8dfd6bd6fda669fcf8f6ff04914305a6373b09d8b675322c7337b9c36": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/teamd-1.31-2.el8.x86_64.rpm" + }, + "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre-8.42-4.el8.x86_64.rpm" + }, + "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libseccomp-2.4.3-1.el8.x86_64.rpm" + }, + "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuuid-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lua-libs-5.3.4-11.el8.x86_64.rpm" + }, + "sha256:98a6386df94fc9595365c3ecbc630708420fa68d1774614a723dec4a55e84b9c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-glib-1.4.4-1.el8.x86_64.rpm" + }, + "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-common-1.12.8-12.el8.noarch.rpm" + }, + "sha256:98f622a37cb22857fdce63d8c97d9711c74cdbd3451e588e2b519532db55a5a2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/udisks2-2.9.0-6.el8.x86_64.rpm" + }, + "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pinentry-1.1.0-2.el8.x86_64.rpm" + }, + "sha256:9c7a5a6f73c8e32559226c54d229cb25304a81a853af22d9f829b9bb09b21f53": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-markupsafe-0.23-19.el8.x86_64.rpm" + }, + "sha256:9c849b1d4fd605ae749fd9d090715b6034520af871c23729cd4003f22e0990de": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/passwd-0.80-3.el8.x86_64.rpm" + }, + "sha256:9d160cdfba107ddc0613e169311bf57077c04e71a052a57704f3bdb64729d565": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/c-ares-1.13.0-5.el8.x86_64.rpm" + }, + "sha256:9dbf3ceb7de5a727f1a36edd5add73dcd96c83f24afc81d78e254b518551da96": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-babel-2.5.1-5.el8.noarch.rpm" + }, + "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/setup-2.12.2-6.el8.noarch.rpm" + }, + "sha256:9e78ec1230b9ec69ef8e3ad0484cbe3b5c36cfc214d90f890a49093b22df2948": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bubblewrap-0.4.0-1.el8.x86_64.rpm" + }, + "sha256:9eb9c1a67c5be04487cc133bdb8498eaf260e4d930a0143d2e1aa772e3d6cf64": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpipeline-1.5.0-2.el8.x86_64.rpm" + }, + "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-common-2.02-93.el8.noarch.rpm" + }, + "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libattr-2.4.48-3.el8.x86_64.rpm" + }, + "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-six-1.11.0-8.el8.noarch.rpm" + }, + "sha256:a06e1d34df03aaf429d290d5c281356fefe0ad510c229189405b88b3c0f40374": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/jansson-2.11-3.el8.x86_64.rpm" + }, + "sha256:a0b6a8d5530f5003f5c8d56211246cd1130a5b4dc1396dc50da70ce0e128b02c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/man-db-2.7.6.1-17.el8.x86_64.rpm" + }, + "sha256:a0c8f83cef355dd98d7750e3d8eb3e9f3e9f8f5e9a3ee441cb4bc4014c647e31": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/squashfs-tools-4.3-19.el8.x86_64.rpm" + }, + "sha256:a1d1bac6c4710e0a1a6e8a507b06a630dda6687f12642be0847768c14ce7271e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-1.44-5.el8.x86_64.rpm" + }, + "sha256:a217b0fbe9757a0225b66d16c1668cdf5cb2aa69c68b89e79783abd507f2e7bf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-libs-1.2.2-1.el8.x86_64.rpm" + }, + "sha256:a2418e8e12144d4e84965298e7bbefedc876c0d0d93771afb9b5c6c2eb139dc0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pip-9.0.3-19.el8.noarch.rpm" + }, + "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xkeyboard-config-2.28-1.el8.noarch.rpm" + }, + "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcomps-0.1.11-5.el8.x86_64.rpm" + }, + "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-legacy-2.0.4-10.el8.noarch.rpm" + }, + "sha256:a456039834ccc5432949120f1d80b18329b552cf44d1b59ea1b60d2192e7bc5c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iproute-5.9.0-2.el8.x86_64.rpm" + }, + "sha256:a5228fc876cffc7dc79769ada5653cb9bfb80d469fb3c9f0acc14a1a0d15782d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtdb-1.4.3-1.el8.x86_64.rpm" + }, + "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-minimal-2.02-93.el8.x86_64.rpm" + }, + "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/zlib-1.2.11-17.el8.x86_64.rpm" + }, + "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xfsprogs-5.0.0-8.el8.x86_64.rpm" + }, + "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-repos-8-2.el8.noarch.rpm" + }, + "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-common-8.30-8.el8.x86_64.rpm" + }, + "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:a9ec13abf63c69913acc1ac7070ab315c8b5a58c6006c3dfc5b27662f7f22260": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-clients-8.0p1-5.el8.x86_64.rpm" + }, + "sha256:aa0007192287faeaecc72d9fa48efdb3108c764d450dc8fea65474476da32c45": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pyudev-0.21.0-7.el8.noarch.rpm" + }, + "sha256:aa1835fd302a37b84ac256db5dd0de09bd9883a5a07775aedb491faf46b18ee0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-urllib3-1.24.2-5.el8.noarch.rpm" + }, + "sha256:aa938dc6f13d0d57ca811b8c299b1017723fa419997b87754f74db770430c2d9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-3.6.8-36.el8.x86_64.rpm" + }, + "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnutls-3.6.14-7.el8_3.x86_64.rpm" + }, + "sha256:ab1be3dcea74c7a7fac49f9a1cad4113fded2d3edabb61b29ed8489a737033fe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-libs-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:ab7bc1a828168006b88934bea949ab2b29b837b0a431f7da1a12147f64f6ddb5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgusb-0.3.0-1.el8.x86_64.rpm" + }, + "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcc-8.4.1-1.el8.x86_64.rpm" + }, + "sha256:addf80c52d794aed47874eb9d5ddbbaa90cb248fda1634d793054a41da0d92d7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-audit-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm" + }, + "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-libs-0.19.8.1-17.el8.x86_64.rpm" + }, + "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-libs-1.5.10-6.el8.x86_64.rpm" + }, + "sha256:b00855013100d3796e9ed6d82b1ab2d4dc7f4a3a3fa2e186f6de8523577974a0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/groff-base-1.22.3-18.el8.x86_64.rpm" + }, + "sha256:b0149d85f0172e98866ff2483660af2cf6c6fa0c8f9cab2c51cc2af479c9e319": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm" + }, + "sha256:b06fa62d0a585a7bc3b9d3341923736b3ee4b6cc6d7ca83bebcb97225ca86ac9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libini_config-1.3.1-39.el8.x86_64.rpm" + }, + "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shadow-utils-4.6-12.el8.x86_64.rpm" + }, + "sha256:b1871d8ac1abaf5e809448c5f37e32487f177aee3080d9033efb4b160f755aba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-client-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-39.2.0-6.el8.noarch.rpm" + }, + "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-tools-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:b2cd2dc5cf9c1c118053e7e650c6d910b1d37e810a38d90de27d80a04b702e39": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dmidecode-3.2-8.el8.x86_64.rpm" + }, + "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pam-1.3.1-14.el8.x86_64.rpm" + }, + "sha256:b3bc3f1c9e8028a177599f1ed9cb6c31d2d6e75111e34623d25e736d3ddcf8fd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tuned-2.15.0-1.el8.noarch.rpm" + }, + "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libassuan-2.5.1-3.el8.x86_64.rpm" + }, + "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsolv-0.7.16-2.el8.x86_64.rpm" + }, + "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/librepo-1.12.0-3.el8.x86_64.rpm" + }, + "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-hawkey-0.55.0-2.el8.x86_64.rpm" + }, + "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib2-2.56.4-9.el8.x86_64.rpm" + }, + "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-1.1.1g-12.el8_3.x86_64.rpm" + }, + "sha256:b8e4cfecbbe7d2d6d9f3003432e826398f6bea21d5aba11a17ee74358cb84a6e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtevent-0.10.2-2.el8.x86_64.rpm" + }, + "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libreport-filesystem-2.9.5-15.el8.x86_64.rpm" + }, + "sha256:bad350fece3f69757d9345ad97acdf1ba72e8d09ed2162fbfe4cc128039594e1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/yum-utils-4.0.18-3.el8.noarch.rpm" + }, + "sha256:bafc2680bd298f0fac70854224ef03b7098d4c46ee35e270f6fd58d2e812ff1b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-schedutils-0.6-6.el8.x86_64.rpm" + }, + "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lz4-libs-1.8.3-2.el8.x86_64.rpm" + }, + "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gawk-4.2.1-2.el8.x86_64.rpm" + }, + "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-ng-0.7.9-5.el8.x86_64.rpm" + }, + "sha256:bce152ddd2f05f892e5ce483a7c12606ba7d2c42108402fc9609ada04048e6df": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/microcode_ctl-20201112-2.el8.x86_64.rpm" + }, + "sha256:bcf25aae89f7368b16346bc1ec92850175bcc2312bf7a5e74bc3c512bcd345b0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crontabs-1.11-17.20190603git.el8.noarch.rpm" + }, + "sha256:be0181770c94141852b6bb618baf56e7b8df9f70524b0c2e0e391e550285231f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-utils-2.24-5.el8.x86_64.rpm" + }, + "sha256:be628d396303d6547b9d7239897fbf4fad7447375cb5e898b394a458f420b550": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/slang-2.3.2-3.el8.x86_64.rpm" + }, + "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hardlink-1.3-6.el8.x86_64.rpm" + }, + "sha256:c11eba3a7ae0ee7ceaea4bbf78edf9a1c3c5d9629b3f40167f5fb8004b2c19a0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-3.53.1-17.el8_3.x86_64.rpm" + }, + "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-2.9-12.el8.x86_64.rpm" + }, + "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-build-libs-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/krb5-libs-1.18.2-8.el8.x86_64.rpm" + }, + "sha256:c357a350aa169402db3c898c7edcfee333e1d11a44f62bbeaba3fd3d2f31644d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libndp-1.7-3.el8.x86_64.rpm" + }, + "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmetalink-0.1.3-7.el8.x86_64.rpm" + }, + "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-5.el8.x86_64.rpm" + }, + "sha256:c44dbbff4fe503f5f49b71ab17db7848c6c67fe19d9a4cc6cef59cc6dd15f1a6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:c4a5df7ec884bdcc929e73e066c7def89cfb8cf53306ffcf9f33a5c9e4ae84c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-plugins-core-4.0.18-3.el8.noarch.rpm" + }, + "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/diffutils-3.6-6.el8.x86_64.rpm" + }, + "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-1.el8.x86_64.rpm" + }, + "sha256:c56cde3b8bc11965fa73b9baf59ab5fa7f6a45a950d5b6b369cf4679c17295ca": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/net-tools-2.0-0.52.20160912git.el8.x86_64.rpm" + }, + "sha256:c5b5967a094ced90899052a82e2c245529b75ba3f46e0ce1a89cfc95edb935ea": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dateutil-2.6.1-6.el8.noarch.rpm" + }, + "sha256:c6f27b6e01d80e756408e3c1451e4af00e7d02da0aa24402644c0785118753fe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-39.2.0-6.el8.noarch.rpm" + }, + "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libutempter-1.1.6-14.el8.x86_64.rpm" + }, + "sha256:c8fc05dd997477fc80e2f3195e719ca2e569fc8997f05a64a13c52c8358e8239": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lsscsi-0.32-2.el8.x86_64.rpm" + }, + "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-modules-2.02-93.el8.noarch.rpm" + }, + "sha256:c99db07c2548246f6b2ec98c1d2b536e40b2f4dbba39f3430044868a27985732": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/langpacks-en-1.0-12.el8.noarch.rpm" + }, + "sha256:c9df7c58da59500e1717e435c565e221daa344212db8e83eb33b6a9c8e9a67bb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/newt-0.52.20-11.el8.x86_64.rpm" + }, + "sha256:ca82090f18d47e454cc512e832bf3ec771edf65299e3c1d56d5df9fab0428869": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/rsyslog-8.1911.0-7.el8.x86_64.rpm" + }, + "sha256:cad76a2802c5f355b527df3cabde70bd58b31ec4b7de3b1ac15a429cda5b9b03": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/linux-firmware-20201218-102.git05789708.el8.noarch.rpm" + }, + "sha256:cad86777bcb265db0da766952ff63e8d33f0fd4f3b90b22d0a1da587a785db44": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-city-20180605-1.el8.noarch.rpm" + }, + "sha256:cb5072917ce75dbde8fe474fa872db85da5dbac59cc1eb4a9125e7b6280f254e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-1.2.2-1.el8.x86_64.rpm" + }, + "sha256:cb6b773c2ac78142736abd8a8f9eaac122f4647aefd3f003a615baf79abbefbb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgudev-232-4.el8.x86_64.rpm" + }, + "sha256:cbcade4487fbf372b487b9f82ed85e04ff037551c96c4b461abc3716338ff9c4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sudo-1.8.29-7.el8.x86_64.rpm" + }, + "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpng-1.6.34-5.el8.x86_64.rpm" + }, + "sha256:ced1d02dd424b1d087347d452420e17ba83af2b926041c794471798dfa5f5868": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-mdraid-2.24-5.el8.x86_64.rpm" + }, + "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-2.26-4.el8.x86_64.rpm" + }, + "sha256:cff4bc30873c62698e4bc2f519bb0aa6814534d7ce99f1ba757dd345b881505f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-softokn-freebl-3.53.1-17.el8_3.x86_64.rpm" + }, + "sha256:d1cc79976965be3fe769cb8c23a281064816eaa195caf6057b8d1da0e9ff7ae5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libbytesize-1.4-3.el8.x86_64.rpm" + }, + "sha256:d1e8c7a00924d1a6dee44ade189025853a501d4f77c73f3bfc006aa907d97daf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-ply-3.9-9.el8.noarch.rpm" + }, + "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-trust-0.23.22-1.el8.x86_64.rpm" + }, + "sha256:d29207af6ff12bec1a5b9712550f2faf7efbff75c597cc2e84b6c9d0dfe2de68": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-loop-2.24-5.el8.x86_64.rpm" + }, + "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-2.02-93.el8.x86_64.rpm" + }, + "sha256:d5c283da0d2666742635754626263f6f78e273cd46d83d2d66ed43730a731685": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/checkpolicy-2.9-1.el8.x86_64.rpm" + }, + "sha256:d655ee126614010e72bac89b7ecaf38b515647181a22940cb774647442d28beb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efi-filesystem-3-3.el8.noarch.rpm" + }, + "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-0.9.4-2.el8.x86_64.rpm" + }, + "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmount-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:d967d6bbb33bf7a295a64807f81875c84e82a8ecc59b6c72fe955141b1660d39": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rootfiles-8.1-22.el8.noarch.rpm" + }, + "sha256:d9d8c21ad40e59b78008f1a569039462e5654a9d4bb08d84cf032e34cf7bde62": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcab1-1.1-1.el8.x86_64.rpm" + }, + "sha256:da77940ecadc9edb5d14aad51e4bf06664e5763fe6e46b20364732ec3aa2e08a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:dae52ddd215b506d1805b66873194df5043fd758d42960dee68f029eab329b42": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdaemon-0.14-15.el8.x86_64.rpm" + }, + "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-2.9.6-15.el8.x86_64.rpm" + }, + "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-libs-1.8.4-17.el8.x86_64.rpm" + }, + "sha256:dc4f0cc77cf4c89469cf0f9c88b52f2c8c2c35f4e6d714bbdae2083440483311": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cloud-init-20.3-10.el8.noarch.rpm" + }, + "sha256:dc835194ecfa6ebda81e0a764c953eff3422a61863e9a3e0dc74ea4cae7a4d94": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-linux-procfs-0.6.3-1.el8.noarch.rpm" + }, + "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ca-certificates-2020.2.41-80.0.el8_2.noarch.rpm" + }, + "sha256:dea18976861575d40ffca814dee08a225376c7828a5afc9e5d0a383edd3d8907": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipcalc-0.2.4-4.el8.x86_64.rpm" + }, + "sha256:df417aae69f2ba5bd4324a14dcfd30dfbfefba440085bbf916c5ef19286cba20": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python36-3.6.8-2.module_el8.4.0+666+456f5f48.x86_64.rpm" + }, + "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bash-4.4.19-14.el8.x86_64.rpm" + }, + "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-utils-5.3.28-40.el8.x86_64.rpm" + }, + "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.182-3.el8.x86_64.rpm" + }, + "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxkbcommon-0.9.1-1.el8.x86_64.rpm" + }, + "sha256:e1133a81512bfba8d4bf06bc12aafee7fe13d6319fc8690b81e6f46d978930eb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libatasmart-0.19-14.el8.x86_64.rpm" + }, + "sha256:e2549a249d537f80f6595816a1094532c3feb0a730585d102c580583cc1dfde4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmbim-1.20.2-1.el8.x86_64.rpm" + }, + "sha256:e308e1ebc85889742a002fd9892d71894fd6fae473320fbc7b1ffb94248602cd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-part-2.24-5.el8.x86_64.rpm" + }, + "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/brotli-1.0.6-3.el8.x86_64.rpm" + }, + "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libksba-1.3.5-7.el8.x86_64.rpm" + }, + "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm" + }, + "sha256:e7ee4b6d6456cb7da0332f5a6fb8a7c47df977bcf616f12f0455413765367e89": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-pkla-compat-0.1-12.el8.x86_64.rpm" + }, + "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mpfr-3.1.6-1.el8.x86_64.rpm" + }, + "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtasn1-4.13-3.el8.x86_64.rpm" + }, + "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-4.4.2-5.el8.noarch.rpm" + }, + "sha256:ebeb05a4a9cdd5d060859eabac1349029c0120615c98fc939e26664c030655c1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-jwt-1.6.1-2.el8.noarch.rpm" + }, + "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tar-1.30-5.el8.x86_64.rpm" + }, + "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/which-2.21-12.el8.x86_64.rpm" + }, + "sha256:ef2734017b25f7e9e1abf67315a7d1c97216642b5dfb979c19b1a3f74cff1e54": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_certmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-misc-2.0.4-10.el8.noarch.rpm" + }, + "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/memstrack-0.1.11-1.el8.x86_64.rpm" + }, + "sha256:f0346c485da9a7e8c8d93624f335cbb25790a7f37c6c03e43232517bb73bbacb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shim-x64-15-15.el8_2.x86_64.rpm" + }, + "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rdma-core-32.0-4.el8.x86_64.rpm" + }, + "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-extra-2.02-93.el8.x86_64.rpm" + }, + "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-15.el8.x86_64.rpm" + }, + "sha256:f56992135d789147285215cb062960fedcdf4b3296c62658fa430caa2c20165c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setools-4.3.0-2.el8.x86_64.rpm" + }, + "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/procps-ng-3.3.15-6.el8.x86_64.rpm" + }, + "sha256:f60f24ba76f7f9d9f42421153d296a279fb616165a27cf2c71657a901a425bb1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-team-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:f6f7907ccf8faa83a93e6d48801970aa45181a3a3c05ad7102b540a07534e318": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/qemu-img-4.2.0-35.module_el8.4.0+547+a85d02ba.x86_64.rpm" + }, + "sha256:f7e6debd0279cb07f0c805d90b707c187bb55b9ee34643898eec800b79fa6b1b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ethtool-5.8-5.el8.x86_64.rpm" + }, + "sha256:f86fec6c6a844fbbfbf7c806d79dd7e72e4eef9c804472547a6d3ecf34cddca6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-glib-0.110-2.el8.x86_64.rpm" + }, + "sha256:f8bdaf5211c6fc72c8f60c7ddd59b8ca124ab26d2670ee6490a7fabb5177d919": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-8.0p1-5.el8.x86_64.rpm" + }, + "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsecret-0.18.6-1.el8.x86_64.rpm" + }, + "sha256:f94172554b8ceeab97b560d0b05c2e2df4b2e737471adce6eca82fd3209be254": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/less-530-1.el8.x86_64.rpm" + }, + "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-0.3.0-5.el8.x86_64.rpm" + }, + "sha256:fa0b90c4da7f7ca8bf40055be5641a2c57708931fec5f760a2f8944325669fe9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdisk-1.0.3-6.el8.x86_64.rpm" + }, + "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre2-10.32-2.el8.x86_64.rpm" + }, + "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-daemon-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:fda078d8edd4e0902246dd3121efb6c57cb8231dbb975380f9249c64163f0d88": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lshw-B.02.19.2-5.el8.x86_64.rpm" + }, + "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-8.30-8.el8.x86_64.rpm" + }, + "sha256:fe944d9dd89d550d2aa44d33cfeb11c803b074bfcda0dbbad486c392bf1cc9d0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-common-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/readline-7.0-10.el8.x86_64.rpm" + }, + "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-pam-239-44.el8.x86_64.rpm" + }, + "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-lib-0.3.15-1.el8.x86_64.rpm" + } + } + } + }, + "pipeline": { + "build": { + "pipeline": { + "stages": [ + { + "name": "org.osbuild.rpm", + "options": { + "gpgkeys": [ + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n" + ], + "packages": [ + { + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "checksum": "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af", + "check_gpg": true + }, + { + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "checksum": "sha256:2c63399bee449fb6e921671a9bbf3356fda73f890b578820f7d926202e98a479", + "check_gpg": true + }, + { + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "checksum": "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178", + "check_gpg": true + }, + { + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "checksum": "sha256:c6f27b6e01d80e756408e3c1451e4af00e7d02da0aa24402644c0785118753fe", + "check_gpg": true + }, + { + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "checksum": "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393", + "check_gpg": true + }, + { + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "checksum": "sha256:a2418e8e12144d4e84965298e7bbefedc876c0d0d93771afb9b5c6c2eb139dc0", + "check_gpg": true + }, + { + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "checksum": "sha256:df417aae69f2ba5bd4324a14dcfd30dfbfefba440085bbf916c5ef19286cba20", + "check_gpg": true + }, + { + "checksum": "sha256:f6f7907ccf8faa83a93e6d48801970aa45181a3a3c05ad7102b540a07534e318", + "check_gpg": true + }, + { + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ] + } + }, + { + "name": "org.osbuild.selinux", + "options": { + "file_contexts": "etc/selinux/targeted/contexts/files/file_contexts" + } + } + ] + }, + "runner": "org.osbuild.centos8" + }, + "stages": [ + { + "name": "org.osbuild.rpm", + "options": { + "gpgkeys": [ + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n" + ], + "packages": [ + { + "checksum": "sha256:508e9470ed648c28c1ef5a4a74072b188daa795f2369d10929f1ddbb5d3b5a3f", + "check_gpg": true + }, + { + "checksum": "sha256:1d130b0daf86899c3987d59567303ce7ae44c3273f2d8d0f0625bef7e6bad16d", + "check_gpg": true + }, + { + "checksum": "sha256:41d9c9f8e17c83f73e51e90f02e08927bb9c836d033815c6cdddc6da44e321f0", + "check_gpg": true + }, + { + "checksum": "sha256:f60f24ba76f7f9d9f42421153d296a279fb616165a27cf2c71657a901a425bb1", + "check_gpg": true + }, + { + "checksum": "sha256:657db08f58b6776f48fda17d2b734a26918b431253f9e4eba9fd5a46d9f89aef", + "check_gpg": true + }, + { + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "checksum": "sha256:b0149d85f0172e98866ff2483660af2cf6c6fa0c8f9cab2c51cc2af479c9e319", + "check_gpg": true + }, + { + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "checksum": "sha256:cb5072917ce75dbde8fe474fa872db85da5dbac59cc1eb4a9125e7b6280f254e", + "check_gpg": true + }, + { + "checksum": "sha256:a217b0fbe9757a0225b66d16c1668cdf5cb2aa69c68b89e79783abd507f2e7bf", + "check_gpg": true + }, + { + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "checksum": "sha256:2d4cf3bd8b8046adfa869fbb5b472294469457f6445db36abcc227959be9adeb", + "check_gpg": true + }, + { + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "checksum": "sha256:9e78ec1230b9ec69ef8e3ad0484cbe3b5c36cfc214d90f890a49093b22df2948", + "check_gpg": true + }, + { + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "checksum": "sha256:9d160cdfba107ddc0613e169311bf57077c04e71a052a57704f3bdb64729d565", + "check_gpg": true + }, + { + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "checksum": "sha256:d5c283da0d2666742635754626263f6f78e273cd46d83d2d66ed43730a731685", + "check_gpg": true + }, + { + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "checksum": "sha256:5f3d3d3b27b7df75738d1ee31112c60d39c54b8d7f92b6900606187f6cffce1d", + "check_gpg": true + }, + { + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "checksum": "sha256:63a6b7765828081cc88b36d10c68621acbebf02a7c2e7d7f1a1217c8742ea6ae", + "check_gpg": true + }, + { + "checksum": "sha256:71fcbbec3aa152bc1427cb4d597375b008438f6259b20cfcb68fff21eef80f91", + "check_gpg": true + }, + { + "checksum": "sha256:bcf25aae89f7368b16346bc1ec92850175bcc2312bf7a5e74bc3c512bcd345b0", + "check_gpg": true + }, + { + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "checksum": "sha256:f86fec6c6a844fbbfbf7c806d79dd7e72e4eef9c804472547a6d3ecf34cddca6", + "check_gpg": true + }, + { + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "checksum": "sha256:084c55bef75a2ce2ab67aa4eeb6726ca59ea6d7c2b23bc6e4084f11aac7e17f8", + "check_gpg": true + }, + { + "checksum": "sha256:7ec48db9e1e9896f29a16cbea53cdeecdd7dd2bc278c06721ebca2e71e9dcd6d", + "check_gpg": true + }, + { + "checksum": "sha256:436e93b4c072f8b6f90f41a037d017406be10c18efafc8c634f6da59bbac1105", + "check_gpg": true + }, + { + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "checksum": "sha256:b2cd2dc5cf9c1c118053e7e650c6d910b1d37e810a38d90de27d80a04b702e39", + "check_gpg": true + }, + { + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "checksum": "sha256:c4a5df7ec884bdcc929e73e066c7def89cfb8cf53306ffcf9f33a5c9e4ae84c7", + "check_gpg": true + }, + { + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "checksum": "sha256:760141c74870a93505dbba2174034287b6a97b9bb2b12c5ca2b7af056773b45b", + "check_gpg": true + }, + { + "checksum": "sha256:4a28d9fa9785d7e8515deaf5e1a381a553c37b02a81a20ddd4fa202b33413ac9", + "check_gpg": true + }, + { + "checksum": "sha256:16b34582f757aebb9bc7b0a0475458cbb186238b5b528ef8fdb099cb739ba383", + "check_gpg": true + }, + { + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "checksum": "sha256:d655ee126614010e72bac89b7ecaf38b515647181a22940cb774647442d28beb", + "check_gpg": true + }, + { + "checksum": "sha256:48bfe66d6f07baf1974355e8a3ebbc44f2d9812b823ddfff1c15f35635a8dc4e", + "check_gpg": true + }, + { + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "checksum": "sha256:f7e6debd0279cb07f0c805d90b707c187bb55b9ee34643898eec800b79fa6b1b", + "check_gpg": true + }, + { + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "checksum": "sha256:6710a1b2f28e5ffd0fff3e74a76d84d12a602be79703e53e1a55166f2f7d141c", + "check_gpg": true + }, + { + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "checksum": "sha256:fa0b90c4da7f7ca8bf40055be5641a2c57708931fec5f760a2f8944325669fe9", + "check_gpg": true + }, + { + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "checksum": "sha256:3162a4a9159994002c3c6f5fe6a12160020e8f3484f1406ff5092311ca639548", + "check_gpg": true + }, + { + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "checksum": "sha256:7e2804a4494d4179ed50c0c99da1e30c3a6abf8db889c1412b458943cff0e3e5", + "check_gpg": true + }, + { + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "checksum": "sha256:b00855013100d3796e9ed6d82b1ab2d4dc7f4a3a3fa2e186f6de8523577974a0", + "check_gpg": true + }, + { + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "checksum": "sha256:79277d872ae6035009a1a40e914ec09bca21aefcac9d73dee65880c86387f3c9", + "check_gpg": true + }, + { + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "checksum": "sha256:3c6650fd6e32fdc24b8cf1f7a85ae8232661b47bda7019e49fd0eb474683ff23", + "check_gpg": true + }, + { + "checksum": "sha256:7a7963e2052bfb45b8569f64619dc5cb92fe8aeb78c754b7cf948b9784646785", + "check_gpg": true + }, + { + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "checksum": "sha256:7fa8fbc576f7d54c388fa39fc3ed86bacb7964cac4544c48b3ffabcdcdc27b61", + "check_gpg": true + }, + { + "checksum": "sha256:dea18976861575d40ffca814dee08a225376c7828a5afc9e5d0a383edd3d8907", + "check_gpg": true + }, + { + "checksum": "sha256:a456039834ccc5432949120f1d80b18329b552cf44d1b59ea1b60d2192e7bc5c", + "check_gpg": true + }, + { + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "checksum": "sha256:74b842ba3352d7c4ada7e991aeadf8749f058a4d00ccc6f79f1c82a281497cb7", + "check_gpg": true + }, + { + "checksum": "sha256:3acd2c8b6ea534811308b3138859b5fa150b89604bb60f16b0650747039d696a", + "check_gpg": true + }, + { + "checksum": "sha256:a06e1d34df03aaf429d290d5c281356fefe0ad510c229189405b88b3c0f40374", + "check_gpg": true + }, + { + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "checksum": "sha256:98a6386df94fc9595365c3ecbc630708420fa68d1774614a723dec4a55e84b9c", + "check_gpg": true + }, + { + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "checksum": "sha256:c44dbbff4fe503f5f49b71ab17db7848c6c67fe19d9a4cc6cef59cc6dd15f1a6", + "check_gpg": true + }, + { + "checksum": "sha256:aa938dc6f13d0d57ca811b8c299b1017723fa419997b87754f74db770430c2d9", + "check_gpg": true + }, + { + "checksum": "sha256:da77940ecadc9edb5d14aad51e4bf06664e5763fe6e46b20364732ec3aa2e08a", + "check_gpg": true + }, + { + "checksum": "sha256:5f45a2ff1a9c9f3d4fcae463c1ca70b1a16caccc59816ce391f064c9d8b9d8ae", + "check_gpg": true + }, + { + "checksum": "sha256:ab1be3dcea74c7a7fac49f9a1cad4113fded2d3edabb61b29ed8489a737033fe", + "check_gpg": true + }, + { + "checksum": "sha256:4280042747c9027c3252d360fa33d63490aa518858849115b20162a097a37146", + "check_gpg": true + }, + { + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "checksum": "sha256:f94172554b8ceeab97b560d0b05c2e2df4b2e737471adce6eca82fd3209be254", + "check_gpg": true + }, + { + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "checksum": "sha256:5452b96e4b57c275dd41e48d55af1ca4f77ccfb3ae403796e599a039d7382b91", + "check_gpg": true + }, + { + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "checksum": "sha256:708a8fd75f7c6987d66e2d62de664b5a84c6f75fd4e5230e244681897b15a25d", + "check_gpg": true + }, + { + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "checksum": "sha256:dae52ddd215b506d1805b66873194df5043fd758d42960dee68f029eab329b42", + "check_gpg": true + }, + { + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "checksum": "sha256:6327624b7b0d726a3c95f2245619efb1df8e70023fadcc8158afed39f57859e7", + "check_gpg": true + }, + { + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "checksum": "sha256:08b76b0af07db4d3b27776a96bb7d0dc0f02b7219569676ac79036190d731d5b", + "check_gpg": true + }, + { + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "checksum": "sha256:d9d8c21ad40e59b78008f1a569039462e5654a9d4bb08d84cf032e34cf7bde62", + "check_gpg": true + }, + { + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "checksum": "sha256:cb6b773c2ac78142736abd8a8f9eaac122f4647aefd3f003a615baf79abbefbb", + "check_gpg": true + }, + { + "checksum": "sha256:ab7bc1a828168006b88934bea949ab2b29b837b0a431f7da1a12147f64f6ddb5", + "check_gpg": true + }, + { + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "checksum": "sha256:b06fa62d0a585a7bc3b9d3341923736b3ee4b6cc6d7ca83bebcb97225ca86ac9", + "check_gpg": true + }, + { + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "checksum": "sha256:1b5187e9b694e439a059be58d8de5317f04278371d1195bf000b001ba8699197", + "check_gpg": true + }, + { + "checksum": "sha256:e2549a249d537f80f6595816a1094532c3feb0a730585d102c580583cc1dfde4", + "check_gpg": true + }, + { + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "checksum": "sha256:30fab73ee155f03dbbd99c1e30fe59dfba4ae8fdb2e7213451ccc36d6918bfcc", + "check_gpg": true + }, + { + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "checksum": "sha256:c357a350aa169402db3c898c7edcfee333e1d11a44f62bbeaba3fd3d2f31644d", + "check_gpg": true + }, + { + "checksum": "sha256:8852282172440cd618c695356449cbc035be4091b2a0833c785c8e42cc1df0e6", + "check_gpg": true + }, + { + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "checksum": "sha256:2e8d4ee76fa8678b0e4d6c0297b16f96e0116201bf96b36e8924b1b080abcddd", + "check_gpg": true + }, + { + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "checksum": "sha256:185f36b3af9367e6142233af358df22f23ee623697bc6a45c47091013707872e", + "check_gpg": true + }, + { + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "checksum": "sha256:9eb9c1a67c5be04487cc133bdb8498eaf260e4d930a0143d2e1aa772e3d6cf64", + "check_gpg": true + }, + { + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "checksum": "sha256:406aea2bb2a5f83cabee5a50bad08a3516776c3cd42db8b159f926624f61aa42", + "check_gpg": true + }, + { + "checksum": "sha256:6b740563ba5858573ff3c2d2a827aeaf6e7166178e36066755d2cde4cf8a016f", + "check_gpg": true + }, + { + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "checksum": "sha256:5092704c041bb246eaafd478bedface3f99ce8fa233ada5cf96807f67e980e42", + "check_gpg": true + }, + { + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "checksum": "sha256:1230ddb5d92fe538a0526e3a9f05563a111ae4ff1978fc8e18de889974b5b46c", + "check_gpg": true + }, + { + "checksum": "sha256:ef2734017b25f7e9e1abf67315a7d1c97216642b5dfb979c19b1a3f74cff1e54", + "check_gpg": true + }, + { + "checksum": "sha256:377ad20c1681518bff1f40884589bddc4a692506384c7676f072ddf86ae429f9", + "check_gpg": true + }, + { + "checksum": "sha256:2c6dd4f21d9c4bde29f693d32e44f0d1c5dc73d78d013767df531d69bbfc6ed8", + "check_gpg": true + }, + { + "checksum": "sha256:370b74a811249b8f0bdfcd34137507f058a85196775e9d0d2bb244c100d194ae", + "check_gpg": true + }, + { + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "checksum": "sha256:53ae3ecd59ec61852cabbd039c748ed63ceb6a88da98587d4c33323ba4095154", + "check_gpg": true + }, + { + "checksum": "sha256:918518368513d162d772dfc5d16536ad2799276bcba2f47514a1c7098de2b43f", + "check_gpg": true + }, + { + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "checksum": "sha256:a5228fc876cffc7dc79769ada5653cb9bfb80d469fb3c9f0acc14a1a0d15782d", + "check_gpg": true + }, + { + "checksum": "sha256:0aaaaa29cc1bb4d358142db6eb7d12df9252a8166bf61956203878eed210785c", + "check_gpg": true + }, + { + "checksum": "sha256:b8e4cfecbbe7d2d6d9f3003432e826398f6bea21d5aba11a17ee74358cb84a6e", + "check_gpg": true + }, + { + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "checksum": "sha256:70b5e4e580da72969ad3bb144c15293910b7d679e195c118cee60d8320f01851", + "check_gpg": true + }, + { + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "checksum": "sha256:5b7763510f4badd05a1647e1fadf9dc49044b1cf4d754262d0d6d5ee9a8f3b12", + "check_gpg": true + }, + { + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "checksum": "sha256:cad76a2802c5f355b527df3cabde70bd58b31ec4b7de3b1ac15a429cda5b9b03", + "check_gpg": true + }, + { + "checksum": "sha256:0064a3aeff41fb7345c061956c35e4b9d0b8802954e717491fb6eb51028d22fd", + "check_gpg": true + }, + { + "checksum": "sha256:3cd092e6e03efb4bb49b91dedd52b43f891092d04a2ff040b9f2197ec2082511", + "check_gpg": true + }, + { + "checksum": "sha256:fda078d8edd4e0902246dd3121efb6c57cb8231dbb975380f9249c64163f0d88", + "check_gpg": true + }, + { + "checksum": "sha256:c8fc05dd997477fc80e2f3195e719ca2e569fc8997f05a64a13c52c8358e8239", + "check_gpg": true + }, + { + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "checksum": "sha256:5c68635cb03533a38d4a42f6547c21a1d5f9952351bb01f3cf865d2621a6e634", + "check_gpg": true + }, + { + "checksum": "sha256:a0b6a8d5530f5003f5c8d56211246cd1130a5b4dc1396dc50da70ce0e128b02c", + "check_gpg": true + }, + { + "checksum": "sha256:0560d3b3e915221aad94ddf83169bd680b1f0da9aa8ec8e9360bcb8fe071483e", + "check_gpg": true + }, + { + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "checksum": "sha256:bce152ddd2f05f892e5ce483a7c12606ba7d2c42108402fc9609ada04048e6df", + "check_gpg": true + }, + { + "checksum": "sha256:1c4b186665558747023a60d0d662d3780a1bc49e578062f4b70100c71ab2220c", + "check_gpg": true + }, + { + "checksum": "sha256:03b50a4ea5cf5655c67e2358fabb6e563eec4e7929e7fc6c4e92c92694f60fa0", + "check_gpg": true + }, + { + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "checksum": "sha256:c56cde3b8bc11965fa73b9baf59ab5fa7f6a45a950d5b6b369cf4679c17295ca", + "check_gpg": true + }, + { + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "checksum": "sha256:c9df7c58da59500e1717e435c565e221daa344212db8e83eb33b6a9c8e9a67bb", + "check_gpg": true + }, + { + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "checksum": "sha256:5e24dd39ae59ef7b7a386f28509cc80d8fabb23f0932e52ea365cf064ff76c59", + "check_gpg": true + }, + { + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "checksum": "sha256:f8bdaf5211c6fc72c8f60c7ddd59b8ca124ab26d2670ee6490a7fabb5177d919", + "check_gpg": true + }, + { + "checksum": "sha256:a9ec13abf63c69913acc1ac7070ab315c8b5a58c6006c3dfc5b27662f7f22260", + "check_gpg": true + }, + { + "checksum": "sha256:173a812d859c70f8db7b014d507c5cacb76c62ab5480c44be217f880465f42c7", + "check_gpg": true + }, + { + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "checksum": "sha256:4c5c7f3773c634c054b0a5fc1b40d0a8448b44bb5aff410bfa88facf9e2059ff", + "check_gpg": true + }, + { + "checksum": "sha256:9c849b1d4fd605ae749fd9d090715b6034520af871c23729cd4003f22e0990de", + "check_gpg": true + }, + { + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "checksum": "sha256:09128c1b70cb8ea1a9bfbc6f3314dd5a8ba0c1a1886a82cd0fbe6845d48215dc", + "check_gpg": true + }, + { + "checksum": "sha256:8d6742dce47f8ed65e222864872e919f30c678f5df1e99c134fba8a0fc7f454d", + "check_gpg": true + }, + { + "checksum": "sha256:e7ee4b6d6456cb7da0332f5a6fb8a7c47df977bcf616f12f0455413765367e89", + "check_gpg": true + }, + { + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "checksum": "sha256:776a182ecaab9f86c7e869db2eb2deea1f291caee701cddbd752da8cd3c57458", + "check_gpg": true + }, + { + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "checksum": "sha256:addf80c52d794aed47874eb9d5ddbbaa90cb248fda1634d793054a41da0d92d7", + "check_gpg": true + }, + { + "checksum": "sha256:07ed1209e898552e6aeac0e6d148271d562c576f7d903cb7a99a697643068f58", + "check_gpg": true + }, + { + "checksum": "sha256:176ffcb2cf0fdcbdd2d8119cbd98eef60a30fdb0fb065a9382d2c95e90c79652", + "check_gpg": true + }, + { + "checksum": "sha256:1bd969e0521820374122f5132e5998d9bd2ab185be66565a7266096297419c8e", + "check_gpg": true + }, + { + "checksum": "sha256:2ebe28be2e0a413af31a0f49b6a2774670067cdbe48e723040b19922ae205d6b", + "check_gpg": true + }, + { + "checksum": "sha256:c5b5967a094ced90899052a82e2c245529b75ba3f46e0ce1a89cfc95edb935ea", + "check_gpg": true + }, + { + "checksum": "sha256:066f254f9ac7712b44214816de907a87eb8dfd0d2ea9570a7513db9a6617ba26", + "check_gpg": true + }, + { + "checksum": "sha256:0e9a8a0f823bf0ef948862f0ccb62353460bd07931e756c98f23908c1c526578", + "check_gpg": true + }, + { + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "checksum": "sha256:941a9068b8fa524ecac58d37f941b95fbdcd9e38bd87c7f9d1330c5925a52a20", + "check_gpg": true + }, + { + "checksum": "sha256:15dc15a5be210707852f051f4d09949c063a7283edc7d4ca3d4289eedcc0b509", + "check_gpg": true + }, + { + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "checksum": "sha256:78c43d8a15ca018de1803e4baac5819e1baab1963fd31f1e44e54e8a573acbfc", + "check_gpg": true + }, + { + "checksum": "sha256:ebeb05a4a9cdd5d060859eabac1349029c0120615c98fc939e26664c030655c1", + "check_gpg": true + }, + { + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "checksum": "sha256:59ba5bf69953a5a2e902b0f08b7187b66d84968852d46a3579a059477547d1a0", + "check_gpg": true + }, + { + "checksum": "sha256:451d0cb6e2284578e3279b4cbb5ec98e9d98a687556c6b424adf8f1282d4ef58", + "check_gpg": true + }, + { + "checksum": "sha256:dc835194ecfa6ebda81e0a764c953eff3422a61863e9a3e0dc74ea4cae7a4d94", + "check_gpg": true + }, + { + "checksum": "sha256:20874a9d40b12125c9e5b97fe4ccda3f94acbc03da1dec7299123901f5b56631", + "check_gpg": true + }, + { + "checksum": "sha256:6aa1e29a4d805fc36c3196788fe78cb4552e2ebec8b3d0f8d32974e6a97025f2", + "check_gpg": true + }, + { + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "checksum": "sha256:d1e8c7a00924d1a6dee44ade189025853a501d4f77c73f3bfc006aa907d97daf", + "check_gpg": true + }, + { + "checksum": "sha256:142d4fe6236cdeac3f967517085d99649215d75026fbe00746e0c5214d7d20df", + "check_gpg": true + }, + { + "checksum": "sha256:8891a9a4707611c13a5693b195201dd940254ffdb03cf5742952329282bb8cb7", + "check_gpg": true + }, + { + "checksum": "sha256:7f506879c64e0bb4d98782d025f46fb9a07517487ae4cbebbb3985a98f4e2154", + "check_gpg": true + }, + { + "checksum": "sha256:aa0007192287faeaecc72d9fa48efdb3108c764d450dc8fea65474476da32c45", + "check_gpg": true + }, + { + "checksum": "sha256:525393e4d658e395c6280bd2ff4afe54999796c4722986325297ba4bfade3ea5", + "check_gpg": true + }, + { + "checksum": "sha256:003ee19ec5b88de212c3246bdfdb3e97a9910a25a219fd7cf5030b7bc666fea9", + "check_gpg": true + }, + { + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "checksum": "sha256:bafc2680bd298f0fac70854224ef03b7098d4c46ee35e270f6fd58d2e812ff1b", + "check_gpg": true + }, + { + "checksum": "sha256:f56992135d789147285215cb062960fedcdf4b3296c62658fa430caa2c20165c", + "check_gpg": true + }, + { + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "checksum": "sha256:017e78c5e23f98d6ee299255fc7be5381dba63d169e3f5dcb1de9d21b5d30ba5", + "check_gpg": true + }, + { + "checksum": "sha256:aa1835fd302a37b84ac256db5dd0de09bd9883a5a07775aedb491faf46b18ee0", + "check_gpg": true + }, + { + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "checksum": "sha256:d967d6bbb33bf7a295a64807f81875c84e82a8ecc59b6c72fe955141b1660d39", + "check_gpg": true + }, + { + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "checksum": "sha256:7443e0df4d55a40a0ba3cec4cd4da620200a255605e31a137bee001cb4b43af3", + "check_gpg": true + }, + { + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "checksum": "sha256:a1d1bac6c4710e0a1a6e8a507b06a630dda6687f12642be0847768c14ce7271e", + "check_gpg": true + }, + { + "checksum": "sha256:774d214a379c0b729d7e989f9d5094fdfda7df68c1e792ba9200542032f04c91", + "check_gpg": true + }, + { + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "checksum": "sha256:f0346c485da9a7e8c8d93624f335cbb25790a7f37c6c03e43232517bb73bbacb", + "check_gpg": true + }, + { + "checksum": "sha256:be628d396303d6547b9d7239897fbf4fad7447375cb5e898b394a458f420b550", + "check_gpg": true + }, + { + "checksum": "sha256:839c62cd7fc7e152decded6f28c80b5f7b8f34a5e319057867b38b26512cee67", + "check_gpg": true + }, + { + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "checksum": "sha256:a0c8f83cef355dd98d7750e3d8eb3e9f3e9f8f5e9a3ee441cb4bc4014c647e31", + "check_gpg": true + }, + { + "checksum": "sha256:b1871d8ac1abaf5e809448c5f37e32487f177aee3080d9033efb4b160f755aba", + "check_gpg": true + }, + { + "checksum": "sha256:fe944d9dd89d550d2aa44d33cfeb11c803b074bfcda0dbbad486c392bf1cc9d0", + "check_gpg": true + }, + { + "checksum": "sha256:6cd7444c22d56201f61fed5fd741b44cfaae18d95b811d25c5f0ffe2f8e55a8f", + "check_gpg": true + }, + { + "checksum": "sha256:7115a12fad224b469419e19ee5c0d38322f467fe7a1c441c1b0239b197baac2a", + "check_gpg": true + }, + { + "checksum": "sha256:cbcade4487fbf372b487b9f82ed85e04ff037551c96c4b461abc3716338ff9c4", + "check_gpg": true + }, + { + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "checksum": "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393", + "check_gpg": true + }, + { + "checksum": "sha256:9664aba8dfd6bd6fda669fcf8f6ff04914305a6373b09d8b675322c7337b9c36", + "check_gpg": true + }, + { + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "checksum": "sha256:b3bc3f1c9e8028a177599f1ed9cb6c31d2d6e75111e34623d25e736d3ddcf8fd", + "check_gpg": true + }, + { + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "checksum": "sha256:3efd6a2548813167fe37718546bc768a5aa8ba59aa80edcecd8ba408bec329b0", + "check_gpg": true + }, + { + "checksum": "sha256:4c02e3e1808f0189269b242242468a364007a8f12c6e38afc24b599b2848b0fa", + "check_gpg": true + }, + { + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "checksum": "sha256:4302361b12eefd5574f57bf0c49c0e5bdc738eddda33634af8b35adfb53a52a1", + "check_gpg": true + }, + { + "checksum": "sha256:bad350fece3f69757d9345ad97acdf1ba72e8d09ed2162fbfe4cc128039594e1", + "check_gpg": true + }, + { + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "checksum": "sha256:dc4f0cc77cf4c89469cf0f9c88b52f2c8c2c35f4e6d714bbdae2083440483311", + "check_gpg": true + }, + { + "checksum": "sha256:7800dfd0d4769a898d11db330fdb5b19614533628a45fe91cce406d6cd1f0c71", + "check_gpg": true + }, + { + "checksum": "sha256:cad86777bcb265db0da766952ff63e8d33f0fd4f3b90b22d0a1da587a785db44", + "check_gpg": true + }, + { + "checksum": "sha256:67419432fe7d373f8e5ddaa7b0dd1c25389608bf2f4ee76dbabcc2d96eb8c9d0", + "check_gpg": true + }, + { + "checksum": "sha256:c99db07c2548246f6b2ec98c1d2b536e40b2f4dbba39f3430044868a27985732", + "check_gpg": true + }, + { + "checksum": "sha256:e1133a81512bfba8d4bf06bc12aafee7fe13d6319fc8690b81e6f46d978930eb", + "check_gpg": true + }, + { + "checksum": "sha256:3cf4fcd2fe43e6477d5f1c05167c669c247dcbeea1ab37bf3b7d42dcab482565", + "check_gpg": true + }, + { + "checksum": "sha256:226bb890cc85bfc60d874a9cb13cb7f7f1e90d90308c7726e25e14cee5487e66", + "check_gpg": true + }, + { + "checksum": "sha256:142c67cdc69366820a7fc7567e40567b545b52f279d1ff992e4787d3c1ea4956", + "check_gpg": true + }, + { + "checksum": "sha256:d29207af6ff12bec1a5b9712550f2faf7efbff75c597cc2e84b6c9d0dfe2de68", + "check_gpg": true + }, + { + "checksum": "sha256:ced1d02dd424b1d087347d452420e17ba83af2b926041c794471798dfa5f5868", + "check_gpg": true + }, + { + "checksum": "sha256:e308e1ebc85889742a002fd9892d71894fd6fae473320fbc7b1ffb94248602cd", + "check_gpg": true + }, + { + "checksum": "sha256:8d3bdefac6c0f39e66e092d62b37efa3076976ae66def1f9dd1f217022406efa", + "check_gpg": true + }, + { + "checksum": "sha256:be0181770c94141852b6bb618baf56e7b8df9f70524b0c2e0e391e550285231f", + "check_gpg": true + }, + { + "checksum": "sha256:d1cc79976965be3fe769cb8c23a281064816eaa195caf6057b8d1da0e9ff7ae5", + "check_gpg": true + }, + { + "checksum": "sha256:7bc2e2a25b04b52a4ec5de2858e75eb07f16495d4de5f7ce926777130302cfe3", + "check_gpg": true + }, + { + "checksum": "sha256:105beb1a237e66802e64e620f79b357dfc8f3bb8952ac2f293548f1d68ca40b1", + "check_gpg": true + }, + { + "checksum": "sha256:19ca7ab9cb2e39ec452ed1424f828ec464266094e31903301680d5a5d0e2ac2c", + "check_gpg": true + }, + { + "checksum": "sha256:1824bc3233b76fabb2305d11bd9bc905cb8e8d7f44006f253164b64808be4b39", + "check_gpg": true + }, + { + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "checksum": "sha256:34321e09964f724b712ed709115f794b1953f4a4d472d655bec0993d27c51a22", + "check_gpg": true + }, + { + "checksum": "sha256:c11eba3a7ae0ee7ceaea4bbf78edf9a1c3c5d9629b3f40167f5fb8004b2c19a0", + "check_gpg": true + }, + { + "checksum": "sha256:2e0b39dbf3b7e68a06f321a04797d4e521b9b484ffc8d6d53f7662613e077065", + "check_gpg": true + }, + { + "checksum": "sha256:cff4bc30873c62698e4bc2f519bb0aa6814534d7ce99f1ba757dd345b881505f", + "check_gpg": true + }, + { + "checksum": "sha256:71fbed9d1b1f6965b42a5c87c98732bed84a8a2efb43c2218b4d1c59e9eaf190", + "check_gpg": true + }, + { + "checksum": "sha256:947fee92d0c147d832bbb3ab53e0b96817d03c38260429a4ff01856324b160da", + "check_gpg": true + }, + { + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "checksum": "sha256:9dbf3ceb7de5a727f1a36edd5add73dcd96c83f24afc81d78e254b518551da96", + "check_gpg": true + }, + { + "checksum": "sha256:5f4f256128dba88a13599d6458908c24c0e9c18d8979ae44bf5734da8e7cab70", + "check_gpg": true + }, + { + "checksum": "sha256:85eb614fc608f3b3f4bbd08d4a3b0ff6af188677ea4e009be021680c521cedae", + "check_gpg": true + }, + { + "checksum": "sha256:60b0cbc5e435be346bb06f45f3336f8936d7362022d8bceda80ff16bc3fb7dd2", + "check_gpg": true + }, + { + "checksum": "sha256:0feac495306bbe6e3149a352025bea8d23cda512859a230cbd3f510cf48caaf7", + "check_gpg": true + }, + { + "checksum": "sha256:9c7a5a6f73c8e32559226c54d229cb25304a81a853af22d9f829b9bb09b21f53", + "check_gpg": true + }, + { + "checksum": "sha256:1b53c868277dec628058b31b1a8a8a2ccd8efe832ce9694805b5f82564136eb3", + "check_gpg": true + }, + { + "checksum": "sha256:82ce159a9e4e4b6b4fdce9ad954aa507f67108430bd261a4dcd826e44d0152a4", + "check_gpg": true + }, + { + "checksum": "sha256:0edde19e0c027c8cff31b82e1f4b0b198c00bf924047fcf4dd610a7d4965ab52", + "check_gpg": true + }, + { + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "checksum": "sha256:ca82090f18d47e454cc512e832bf3ec771edf65299e3c1d56d5df9fab0428869", + "check_gpg": true + }, + { + "checksum": "sha256:98f622a37cb22857fdce63d8c97d9711c74cdbd3451e588e2b519532db55a5a2", + "check_gpg": true + }, + { + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "checksum": "sha256:5c0cf0adf7a3ad24ddde58f298ebf4ce741bccdfc8eff0103644115c837f80d6", + "check_gpg": true + }, + { + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ] + } + }, + { + "name": "org.osbuild.fix-bls", + "options": {} + }, + { + "name": "org.osbuild.fstab", + "options": { + "filesystems": [ + { + "uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "vfs_type": "xfs", + "path": "/", + "options": "defaults" + }, + { + "uuid": "7B77-95E7", + "vfs_type": "vfat", + "path": "/boot/efi", + "options": "defaults,uid=0,gid=0,umask=077,shortname=winnt", + "passno": 2 + } + ] + } + }, + { + "name": "org.osbuild.grub2", + "options": { + "root_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "kernel_opts": "console=ttyS0,115200n8 console=tty0 net.ifnames=0 rd.blacklist=nouveau nvme_core.io_timeout=4294967295 crashkernel=auto", + "legacy": "i386-pc", + "uefi": { + "vendor": "centos" + } + } + }, + { + "name": "org.osbuild.locale", + "options": { + "language": "en_US" + } + }, + { + "name": "org.osbuild.timezone", + "options": { + "zone": "America/New_York" + } + }, + { + "name": "org.osbuild.systemd", + "options": { + "default_target": "multi-user.target" + } + }, + { + "name": "org.osbuild.selinux", + "options": { + "file_contexts": "etc/selinux/targeted/contexts/files/file_contexts" + } + }, + { + "name": "org.osbuild.sysconfig", + "options": { + "kernel": { + "update_default": true, + "default_kernel": "kernel" + }, + "network": { + "networking": true, + "no_zero_conf": true + } + } + } + ], + "assembler": { + "name": "org.osbuild.qemu", + "options": { + "bootloader": { + "type": "grub2" + }, + "format": "raw", + "filename": "image.raw", + "size": 6442450944, + "ptuuid": "D209C89E-EA5E-4FBD-B161-B461CCE297E0", + "pttype": "gpt", + "partitions": [ + { + "start": 2048, + "size": 2048, + "type": "21686148-6449-6E6F-744E-656564454649", + "bootable": true, + "uuid": "FAC7F1FB-3E8D-4137-A512-961DE09A5549" + }, + { + "start": 4096, + "size": 204800, + "type": "C12A7328-F81F-11D2-BA4B-00A0C93EC93B", + "uuid": "68B2905B-DF3E-4FB3-80FA-49D1E773AA33", + "filesystem": { + "type": "vfat", + "uuid": "7B77-95E7", + "mountpoint": "/boot/efi" + } + }, + { + "start": 208896, + "type": "0FC63DAF-8483-4772-8E79-3D69D8477DE4", + "uuid": "6264D520-3FB9-423F-8AB8-7A0A8E3D3562", + "filesystem": { + "type": "xfs", + "uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "label": "root", + "mountpoint": "/" + } + } + ] + } + } + } + }, + "rpmmd": { + "build-packages": [ + { + "name": "acl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/acl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "name": "audit-libs", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "name": "basesystem", + "epoch": 0, + "version": "11", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/basesystem-11-5.el8.noarch.rpm", + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "name": "bash", + "epoch": 0, + "version": "4.4.19", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bash-4.4.19-14.el8.x86_64.rpm", + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "name": "brotli", + "epoch": 0, + "version": "1.0.6", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/brotli-1.0.6-3.el8.x86_64.rpm", + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "name": "bzip2-libs", + "epoch": 0, + "version": "1.0.6", + "release": "26.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.6-26.el8.x86_64.rpm", + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "name": "ca-certificates", + "epoch": 0, + "version": "2020.2.41", + "release": "80.0.el8_2", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ca-certificates-2020.2.41-80.0.el8_2.noarch.rpm", + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "name": "centos-gpg-keys", + "epoch": 1, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-gpg-keys-8-2.el8.noarch.rpm", + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "name": "centos-stream-release", + "epoch": 0, + "version": "8.4", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-release-8.4-1.el8.noarch.rpm", + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "name": "centos-stream-repos", + "epoch": 0, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-repos-8-2.el8.noarch.rpm", + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "name": "chkconfig", + "epoch": 0, + "version": "1.13", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chkconfig-1.13-2.el8.x86_64.rpm", + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "name": "coreutils", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "name": "coreutils-common", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-common-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "name": "cpio", + "epoch": 0, + "version": "2.12", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cpio-2.12-10.el8.x86_64.rpm", + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "name": "cracklib", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "name": "cracklib-dicts", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "name": "crypto-policies", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "name": "crypto-policies-scripts", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-scripts-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "name": "cryptsetup-libs", + "epoch": 0, + "version": "2.3.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.3.3-2.el8.x86_64.rpm", + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "name": "curl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/curl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "name": "cyrus-sasl-lib", + "epoch": 0, + "version": "2.1.27", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-5.el8.x86_64.rpm", + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "name": "dbus", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "name": "dbus-common", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-common-1.12.8-12.el8.noarch.rpm", + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "name": "dbus-daemon", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-daemon-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "name": "dbus-libs", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-libs-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "name": "dbus-tools", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-tools-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "name": "device-mapper", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "name": "device-mapper-libs", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "name": "diffutils", + "epoch": 0, + "version": "3.6", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/diffutils-3.6-6.el8.x86_64.rpm", + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "name": "dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "name": "dnf-data", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-data-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "name": "dosfstools", + "epoch": 0, + "version": "4.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dosfstools-4.1-6.el8.x86_64.rpm", + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "name": "dracut", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "name": "e2fsprogs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "name": "e2fsprogs-libs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "name": "elfutils-debuginfod-client", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "name": "elfutils-default-yama-scope", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.182-3.el8.noarch.rpm", + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "name": "elfutils-libelf", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libelf-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "name": "elfutils-libs", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libs-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "name": "expat", + "epoch": 0, + "version": "2.2.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/expat-2.2.5-4.el8.x86_64.rpm", + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "name": "file", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "name": "file-libs", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-libs-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "name": "filesystem", + "epoch": 0, + "version": "3.8", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/filesystem-3.8-4.el8.x86_64.rpm", + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "name": "findutils", + "epoch": 1, + "version": "4.6.0", + "release": "20.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/findutils-4.6.0-20.el8.x86_64.rpm", + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "name": "freetype", + "epoch": 0, + "version": "2.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/freetype-2.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "name": "fuse-libs", + "epoch": 0, + "version": "2.9.7", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-libs-2.9.7-12.el8.x86_64.rpm", + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "name": "gawk", + "epoch": 0, + "version": "4.2.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gawk-4.2.1-2.el8.x86_64.rpm", + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "name": "gdbm", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "name": "gdbm-libs", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-libs-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "name": "gettext", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "name": "gettext-libs", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-libs-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "name": "glib2", + "epoch": 0, + "version": "2.56.4", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib2-2.56.4-9.el8.x86_64.rpm", + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "name": "glibc", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "name": "glibc-all-langpacks", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-all-langpacks-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af", + "check_gpg": true + }, + { + "name": "glibc-common", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-common-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "name": "gmp", + "epoch": 1, + "version": "6.1.2", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gmp-6.1.2-10.el8.x86_64.rpm", + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "name": "gnupg2", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "name": "gnupg2-smime", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-smime-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "name": "gnutls", + "epoch": 0, + "version": "3.6.14", + "release": "7.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnutls-3.6.14-7.el8_3.x86_64.rpm", + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "name": "gpgme", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gpgme-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "name": "grep", + "epoch": 0, + "version": "3.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grep-3.1-6.el8.x86_64.rpm", + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "name": "grub2-common", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-common-2.02-93.el8.noarch.rpm", + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "name": "grub2-pc", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "name": "grub2-pc-modules", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-modules-2.02-93.el8.noarch.rpm", + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "name": "grub2-tools", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "name": "grub2-tools-extra", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-extra-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "name": "grub2-tools-minimal", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-minimal-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "name": "grubby", + "epoch": 0, + "version": "8.40", + "release": "41.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grubby-8.40-41.el8.x86_64.rpm", + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "name": "gzip", + "epoch": 0, + "version": "1.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gzip-1.9-12.el8.x86_64.rpm", + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "name": "hardlink", + "epoch": 1, + "version": "1.3", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hardlink-1.3-6.el8.x86_64.rpm", + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "name": "hwdata", + "epoch": 0, + "version": "0.314", + "release": "8.7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hwdata-0.314-8.7.el8.noarch.rpm", + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "name": "ima-evm-utils", + "epoch": 0, + "version": "1.3.2", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ima-evm-utils-1.3.2-11.el8.x86_64.rpm", + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "name": "info", + "epoch": 0, + "version": "6.5", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/info-6.5-6.el8.x86_64.rpm", + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "name": "iptables-libs", + "epoch": 0, + "version": "1.8.4", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-libs-1.8.4-17.el8.x86_64.rpm", + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "name": "json-c", + "epoch": 0, + "version": "0.13.1", + "release": "0.4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-c-0.13.1-0.4.el8.x86_64.rpm", + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "name": "kbd", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-2.0.4-10.el8.x86_64.rpm", + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "name": "kbd-legacy", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-legacy-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "name": "kbd-misc", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-misc-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "name": "keyutils-libs", + "epoch": 0, + "version": "1.5.10", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-libs-1.5.10-6.el8.x86_64.rpm", + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "name": "kmod", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-25-17.el8.x86_64.rpm", + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "name": "kmod-libs", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-libs-25-17.el8.x86_64.rpm", + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "name": "kpartx", + "epoch": 0, + "version": "0.8.4", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kpartx-0.8.4-8.el8.x86_64.rpm", + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "name": "krb5-libs", + "epoch": 0, + "version": "1.18.2", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/krb5-libs-1.18.2-8.el8.x86_64.rpm", + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "name": "libacl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libacl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "name": "libaio", + "epoch": 0, + "version": "0.3.112", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libaio-0.3.112-1.el8.x86_64.rpm", + "checksum": "sha256:2c63399bee449fb6e921671a9bbf3356fda73f890b578820f7d926202e98a479", + "check_gpg": true + }, + { + "name": "libarchive", + "epoch": 0, + "version": "3.3.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libarchive-3.3.3-1.el8.x86_64.rpm", + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "name": "libassuan", + "epoch": 0, + "version": "2.5.1", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libassuan-2.5.1-3.el8.x86_64.rpm", + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "name": "libattr", + "epoch": 0, + "version": "2.4.48", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libattr-2.4.48-3.el8.x86_64.rpm", + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "name": "libblkid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libblkid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "name": "libcap", + "epoch": 0, + "version": "2.26", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-2.26-4.el8.x86_64.rpm", + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "name": "libcap-ng", + "epoch": 0, + "version": "0.7.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-ng-0.7.9-5.el8.x86_64.rpm", + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "name": "libcom_err", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcom_err-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "name": "libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "name": "libcroco", + "epoch": 0, + "version": "0.6.12", + "release": "4.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcroco-0.6.12-4.el8_2.1.x86_64.rpm", + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "name": "libcurl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcurl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "name": "libdb", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "name": "libdb-utils", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-utils-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "name": "libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "name": "libevent", + "epoch": 0, + "version": "2.1.8", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libevent-2.1.8-5.el8.x86_64.rpm", + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "name": "libfdisk", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libfdisk-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "name": "libffi", + "epoch": 0, + "version": "3.1", + "release": "22.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libffi-3.1-22.el8.x86_64.rpm", + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "name": "libgcc", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcc-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "name": "libgcrypt", + "epoch": 0, + "version": "1.8.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcrypt-1.8.5-4.el8.x86_64.rpm", + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "name": "libgomp", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgomp-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "name": "libgpg-error", + "epoch": 0, + "version": "1.31", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgpg-error-1.31-1.el8.x86_64.rpm", + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "name": "libibverbs", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libibverbs-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "name": "libidn2", + "epoch": 0, + "version": "2.2.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libidn2-2.2.0-1.el8.x86_64.rpm", + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "name": "libkcapi", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "name": "libkcapi-hmaccalc", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-hmaccalc-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "name": "libksba", + "epoch": 0, + "version": "1.3.5", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libksba-1.3.5-7.el8.x86_64.rpm", + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "name": "libmetalink", + "epoch": 0, + "version": "0.1.3", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmetalink-0.1.3-7.el8.x86_64.rpm", + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "name": "libmodulemd", + "epoch": 0, + "version": "2.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodulemd-2.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "name": "libmount", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmount-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "name": "libnghttp2", + "epoch": 0, + "version": "1.33.0", + "release": "3.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnghttp2-1.33.0-3.el8_2.1.x86_64.rpm", + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "name": "libnl3", + "epoch": 0, + "version": "3.5.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-3.5.0-1.el8.x86_64.rpm", + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "name": "libnsl2", + "epoch": 0, + "version": "1.2.0", + "release": "2.20180605git4a062cf.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64.rpm", + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "name": "libpcap", + "epoch": 14, + "version": "1.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpcap-1.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "name": "libpng", + "epoch": 2, + "version": "1.6.34", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpng-1.6.34-5.el8.x86_64.rpm", + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "name": "libpsl", + "epoch": 0, + "version": "0.20.2", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpsl-0.20.2-6.el8.x86_64.rpm", + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "name": "libpwquality", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "name": "librepo", + "epoch": 0, + "version": "1.12.0", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/librepo-1.12.0-3.el8.x86_64.rpm", + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "name": "libreport-filesystem", + "epoch": 0, + "version": "2.9.5", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libreport-filesystem-2.9.5-15.el8.x86_64.rpm", + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "name": "libseccomp", + "epoch": 0, + "version": "2.4.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libseccomp-2.4.3-1.el8.x86_64.rpm", + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "name": "libsecret", + "epoch": 0, + "version": "0.18.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsecret-0.18.6-1.el8.x86_64.rpm", + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "name": "libselinux", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "name": "libselinux-utils", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-utils-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "name": "libsemanage", + "epoch": 0, + "version": "2.9", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsemanage-2.9-6.el8.x86_64.rpm", + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "name": "libsepol", + "epoch": 0, + "version": "2.9", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsepol-2.9-2.el8.x86_64.rpm", + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "name": "libsigsegv", + "epoch": 0, + "version": "2.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsigsegv-2.11-5.el8.x86_64.rpm", + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "name": "libsmartcols", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmartcols-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "name": "libsolv", + "epoch": 0, + "version": "0.7.16", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsolv-0.7.16-2.el8.x86_64.rpm", + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "name": "libss", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libss-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "name": "libssh", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-0.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "name": "libssh-config", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-config-0.9.4-2.el8.noarch.rpm", + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "name": "libstdc++", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstdc++-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "name": "libtasn1", + "epoch": 0, + "version": "4.13", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtasn1-4.13-3.el8.x86_64.rpm", + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "name": "libtirpc", + "epoch": 0, + "version": "1.1.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtirpc-1.1.4-4.el8.x86_64.rpm", + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "name": "libunistring", + "epoch": 0, + "version": "0.9.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libunistring-0.9.9-3.el8.x86_64.rpm", + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "name": "libusbx", + "epoch": 0, + "version": "1.0.23", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libusbx-1.0.23-4.el8.x86_64.rpm", + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "name": "libutempter", + "epoch": 0, + "version": "1.1.6", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libutempter-1.1.6-14.el8.x86_64.rpm", + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "name": "libuuid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuuid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "name": "libverto", + "epoch": 0, + "version": "0.3.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-0.3.0-5.el8.x86_64.rpm", + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "name": "libxcrypt", + "epoch": 0, + "version": "4.1.1", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxcrypt-4.1.1-4.el8.x86_64.rpm", + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "name": "libxml2", + "epoch": 0, + "version": "2.9.7", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxml2-2.9.7-9.el8.x86_64.rpm", + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "name": "libyaml", + "epoch": 0, + "version": "0.1.7", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libyaml-0.1.7-5.el8.x86_64.rpm", + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "name": "libzstd", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libzstd-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "name": "lua-libs", + "epoch": 0, + "version": "5.3.4", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lua-libs-5.3.4-11.el8.x86_64.rpm", + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "name": "lz4-libs", + "epoch": 0, + "version": "1.8.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lz4-libs-1.8.3-2.el8.x86_64.rpm", + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "name": "memstrack", + "epoch": 0, + "version": "0.1.11", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/memstrack-0.1.11-1.el8.x86_64.rpm", + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "name": "mpfr", + "epoch": 0, + "version": "3.1.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mpfr-3.1.6-1.el8.x86_64.rpm", + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "name": "ncurses", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "name": "ncurses-base", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-base-6.1-7.20180224.el8.noarch.rpm", + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "name": "ncurses-libs", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-libs-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "name": "nettle", + "epoch": 0, + "version": "3.4.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nettle-3.4.1-2.el8.x86_64.rpm", + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "name": "npth", + "epoch": 0, + "version": "1.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/npth-1.5-4.el8.x86_64.rpm", + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "name": "openldap", + "epoch": 0, + "version": "2.4.46", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openldap-2.4.46-16.el8.x86_64.rpm", + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "name": "openssl", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "name": "openssl-libs", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-libs-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "name": "openssl-pkcs11", + "epoch": 0, + "version": "0.4.10", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-pkcs11-0.4.10-2.el8.x86_64.rpm", + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "name": "os-prober", + "epoch": 0, + "version": "1.74", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/os-prober-1.74-6.el8.x86_64.rpm", + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "name": "p11-kit", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "name": "p11-kit-trust", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-trust-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "name": "pam", + "epoch": 0, + "version": "1.3.1", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pam-1.3.1-14.el8.x86_64.rpm", + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "name": "pciutils", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "name": "pciutils-libs", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-libs-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "name": "pcre", + "epoch": 0, + "version": "8.42", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre-8.42-4.el8.x86_64.rpm", + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "name": "pcre2", + "epoch": 0, + "version": "10.32", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre2-10.32-2.el8.x86_64.rpm", + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "name": "pigz", + "epoch": 0, + "version": "2.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pigz-2.4-4.el8.x86_64.rpm", + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "name": "platform-python", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "name": "platform-python-pip", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-pip-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "name": "platform-python-setuptools", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-setuptools-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "name": "policycoreutils", + "epoch": 0, + "version": "2.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-2.9-12.el8.x86_64.rpm", + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "name": "popt", + "epoch": 0, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/popt-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "name": "procps-ng", + "epoch": 0, + "version": "3.3.15", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/procps-ng-3.3.15-6.el8.x86_64.rpm", + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "name": "publicsuffix-list-dafsa", + "epoch": 0, + "version": "20180723", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20180723-1.el8.noarch.rpm", + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "name": "python3-dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "name": "python3-gpg", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gpg-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "name": "python3-hawkey", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-hawkey-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "name": "python3-iniparse", + "epoch": 0, + "version": "0.4", + "release": "31.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-iniparse-0.4-31.el8.noarch.rpm", + "checksum": "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178", + "check_gpg": true + }, + { + "name": "python3-libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "name": "python3-libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "name": "python3-libs", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libs-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "name": "python3-pip-wheel", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pip-wheel-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "name": "python3-rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "name": "python3-setuptools", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:c6f27b6e01d80e756408e3c1451e4af00e7d02da0aa24402644c0785118753fe", + "check_gpg": true + }, + { + "name": "python3-setuptools-wheel", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "name": "python3-six", + "epoch": 0, + "version": "1.11.0", + "release": "8.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-six-1.11.0-8.el8.noarch.rpm", + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "name": "rdma-core", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rdma-core-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "name": "readline", + "epoch": 0, + "version": "7.0", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/readline-7.0-10.el8.x86_64.rpm", + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "name": "rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "name": "rpm-build-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-build-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "name": "rpm-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "name": "rpm-plugin-selinux", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "name": "rpm-plugin-systemd-inhibit", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "name": "sed", + "epoch": 0, + "version": "4.5", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sed-4.5-2.el8.x86_64.rpm", + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "name": "selinux-policy", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "name": "selinux-policy-targeted", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-targeted-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "name": "setup", + "epoch": 0, + "version": "2.12.2", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/setup-2.12.2-6.el8.noarch.rpm", + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "name": "shadow-utils", + "epoch": 2, + "version": "4.6", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shadow-utils-4.6-12.el8.x86_64.rpm", + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "name": "shared-mime-info", + "epoch": 0, + "version": "1.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shared-mime-info-1.9-3.el8.x86_64.rpm", + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "name": "sqlite-libs", + "epoch": 0, + "version": "3.26.0", + "release": "13.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sqlite-libs-3.26.0-13.el8.x86_64.rpm", + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "name": "systemd", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-239-44.el8.x86_64.rpm", + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "name": "systemd-libs", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-libs-239-44.el8.x86_64.rpm", + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "name": "systemd-pam", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-pam-239-44.el8.x86_64.rpm", + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "name": "systemd-udev", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-udev-239-44.el8.x86_64.rpm", + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "name": "tar", + "epoch": 2, + "version": "1.30", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tar-1.30-5.el8.x86_64.rpm", + "checksum": "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393", + "check_gpg": true + }, + { + "name": "tpm2-tss", + "epoch": 0, + "version": "2.3.2", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tpm2-tss-2.3.2-3.el8.x86_64.rpm", + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "name": "trousers", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "name": "trousers-lib", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-lib-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "name": "tzdata", + "epoch": 0, + "version": "2021a", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tzdata-2021a-1.el8.noarch.rpm", + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "name": "util-linux", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/util-linux-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "name": "which", + "epoch": 0, + "version": "2.21", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/which-2.21-12.el8.x86_64.rpm", + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "name": "xfsprogs", + "epoch": 0, + "version": "5.0.0", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xfsprogs-5.0.0-8.el8.x86_64.rpm", + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "name": "xz", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "name": "xz-libs", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-libs-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "name": "zlib", + "epoch": 0, + "version": "1.2.11", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/zlib-1.2.11-17.el8.x86_64.rpm", + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "name": "libxkbcommon", + "epoch": 0, + "version": "0.9.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxkbcommon-0.9.1-1.el8.x86_64.rpm", + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "name": "pinentry", + "epoch": 0, + "version": "1.1.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pinentry-1.1.0-2.el8.x86_64.rpm", + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "name": "python3-pip", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pip-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:a2418e8e12144d4e84965298e7bbefedc876c0d0d93771afb9b5c6c2eb139dc0", + "check_gpg": true + }, + { + "name": "python3-unbound", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-unbound-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "name": "python36", + "epoch": 0, + "version": "3.6.8", + "release": "2.module_el8.4.0+666+456f5f48", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python36-3.6.8-2.module_el8.4.0+666+456f5f48.x86_64.rpm", + "checksum": "sha256:df417aae69f2ba5bd4324a14dcfd30dfbfefba440085bbf916c5ef19286cba20", + "check_gpg": true + }, + { + "name": "qemu-img", + "epoch": 15, + "version": "4.2.0", + "release": "35.module_el8.4.0+547+a85d02ba", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/qemu-img-4.2.0-35.module_el8.4.0+547+a85d02ba.x86_64.rpm", + "checksum": "sha256:f6f7907ccf8faa83a93e6d48801970aa45181a3a3c05ad7102b540a07534e318", + "check_gpg": true + }, + { + "name": "unbound-libs", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/unbound-libs-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "name": "xkeyboard-config", + "epoch": 0, + "version": "2.28", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xkeyboard-config-2.28-1.el8.noarch.rpm", + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ], + "packages": [ + { + "name": "ModemManager-glib", + "epoch": 0, + "version": "1.10.8", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ModemManager-glib-1.10.8-2.el8.x86_64.rpm", + "checksum": "sha256:508e9470ed648c28c1ef5a4a74072b188daa795f2369d10929f1ddbb5d3b5a3f", + "check_gpg": true + }, + { + "name": "NetworkManager", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:1d130b0daf86899c3987d59567303ce7ae44c3273f2d8d0f0625bef7e6bad16d", + "check_gpg": true + }, + { + "name": "NetworkManager-libnm", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-libnm-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:41d9c9f8e17c83f73e51e90f02e08927bb9c836d033815c6cdddc6da44e321f0", + "check_gpg": true + }, + { + "name": "NetworkManager-team", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-team-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:f60f24ba76f7f9d9f42421153d296a279fb616165a27cf2c71657a901a425bb1", + "check_gpg": true + }, + { + "name": "NetworkManager-tui", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-tui-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:657db08f58b6776f48fda17d2b734a26918b431253f9e4eba9fd5a46d9f89aef", + "check_gpg": true + }, + { + "name": "acl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/acl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "name": "audit", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:b0149d85f0172e98866ff2483660af2cf6c6fa0c8f9cab2c51cc2af479c9e319", + "check_gpg": true + }, + { + "name": "audit-libs", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "name": "authselect", + "epoch": 0, + "version": "1.2.2", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-1.2.2-1.el8.x86_64.rpm", + "checksum": "sha256:cb5072917ce75dbde8fe474fa872db85da5dbac59cc1eb4a9125e7b6280f254e", + "check_gpg": true + }, + { + "name": "authselect-libs", + "epoch": 0, + "version": "1.2.2", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-libs-1.2.2-1.el8.x86_64.rpm", + "checksum": "sha256:a217b0fbe9757a0225b66d16c1668cdf5cb2aa69c68b89e79783abd507f2e7bf", + "check_gpg": true + }, + { + "name": "basesystem", + "epoch": 0, + "version": "11", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/basesystem-11-5.el8.noarch.rpm", + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "name": "bash", + "epoch": 0, + "version": "4.4.19", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bash-4.4.19-14.el8.x86_64.rpm", + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "name": "bind-export-libs", + "epoch": 32, + "version": "9.11.26", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bind-export-libs-9.11.26-2.el8.x86_64.rpm", + "checksum": "sha256:2d4cf3bd8b8046adfa869fbb5b472294469457f6445db36abcc227959be9adeb", + "check_gpg": true + }, + { + "name": "brotli", + "epoch": 0, + "version": "1.0.6", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/brotli-1.0.6-3.el8.x86_64.rpm", + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "name": "bubblewrap", + "epoch": 0, + "version": "0.4.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bubblewrap-0.4.0-1.el8.x86_64.rpm", + "checksum": "sha256:9e78ec1230b9ec69ef8e3ad0484cbe3b5c36cfc214d90f890a49093b22df2948", + "check_gpg": true + }, + { + "name": "bzip2-libs", + "epoch": 0, + "version": "1.0.6", + "release": "26.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.6-26.el8.x86_64.rpm", + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "name": "c-ares", + "epoch": 0, + "version": "1.13.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/c-ares-1.13.0-5.el8.x86_64.rpm", + "checksum": "sha256:9d160cdfba107ddc0613e169311bf57077c04e71a052a57704f3bdb64729d565", + "check_gpg": true + }, + { + "name": "ca-certificates", + "epoch": 0, + "version": "2020.2.41", + "release": "80.0.el8_2", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ca-certificates-2020.2.41-80.0.el8_2.noarch.rpm", + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "name": "centos-gpg-keys", + "epoch": 1, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-gpg-keys-8-2.el8.noarch.rpm", + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "name": "centos-stream-release", + "epoch": 0, + "version": "8.4", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-release-8.4-1.el8.noarch.rpm", + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "name": "centos-stream-repos", + "epoch": 0, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-repos-8-2.el8.noarch.rpm", + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "name": "checkpolicy", + "epoch": 0, + "version": "2.9", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/checkpolicy-2.9-1.el8.x86_64.rpm", + "checksum": "sha256:d5c283da0d2666742635754626263f6f78e273cd46d83d2d66ed43730a731685", + "check_gpg": true + }, + { + "name": "chkconfig", + "epoch": 0, + "version": "1.13", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chkconfig-1.13-2.el8.x86_64.rpm", + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "name": "chrony", + "epoch": 0, + "version": "3.5", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chrony-3.5-1.el8.x86_64.rpm", + "checksum": "sha256:5f3d3d3b27b7df75738d1ee31112c60d39c54b8d7f92b6900606187f6cffce1d", + "check_gpg": true + }, + { + "name": "coreutils", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "name": "coreutils-common", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-common-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "name": "cpio", + "epoch": 0, + "version": "2.12", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cpio-2.12-10.el8.x86_64.rpm", + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "name": "cracklib", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "name": "cracklib-dicts", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "name": "cronie", + "epoch": 0, + "version": "1.5.2", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-1.5.2-4.el8.x86_64.rpm", + "checksum": "sha256:63a6b7765828081cc88b36d10c68621acbebf02a7c2e7d7f1a1217c8742ea6ae", + "check_gpg": true + }, + { + "name": "cronie-anacron", + "epoch": 0, + "version": "1.5.2", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-anacron-1.5.2-4.el8.x86_64.rpm", + "checksum": "sha256:71fcbbec3aa152bc1427cb4d597375b008438f6259b20cfcb68fff21eef80f91", + "check_gpg": true + }, + { + "name": "crontabs", + "epoch": 0, + "version": "1.11", + "release": "17.20190603git.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crontabs-1.11-17.20190603git.el8.noarch.rpm", + "checksum": "sha256:bcf25aae89f7368b16346bc1ec92850175bcc2312bf7a5e74bc3c512bcd345b0", + "check_gpg": true + }, + { + "name": "crypto-policies", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "name": "crypto-policies-scripts", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-scripts-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "name": "cryptsetup-libs", + "epoch": 0, + "version": "2.3.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.3.3-2.el8.x86_64.rpm", + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "name": "curl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/curl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "name": "cyrus-sasl-lib", + "epoch": 0, + "version": "2.1.27", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-5.el8.x86_64.rpm", + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "name": "dbus", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "name": "dbus-common", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-common-1.12.8-12.el8.noarch.rpm", + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "name": "dbus-daemon", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-daemon-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "name": "dbus-glib", + "epoch": 0, + "version": "0.110", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-glib-0.110-2.el8.x86_64.rpm", + "checksum": "sha256:f86fec6c6a844fbbfbf7c806d79dd7e72e4eef9c804472547a6d3ecf34cddca6", + "check_gpg": true + }, + { + "name": "dbus-libs", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-libs-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "name": "dbus-tools", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-tools-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "name": "device-mapper", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "name": "device-mapper-libs", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "name": "dhcp-client", + "epoch": 12, + "version": "4.3.6", + "release": "44.0.1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-client-4.3.6-44.0.1.el8.x86_64.rpm", + "checksum": "sha256:084c55bef75a2ce2ab67aa4eeb6726ca59ea6d7c2b23bc6e4084f11aac7e17f8", + "check_gpg": true + }, + { + "name": "dhcp-common", + "epoch": 12, + "version": "4.3.6", + "release": "44.0.1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-common-4.3.6-44.0.1.el8.noarch.rpm", + "checksum": "sha256:7ec48db9e1e9896f29a16cbea53cdeecdd7dd2bc278c06721ebca2e71e9dcd6d", + "check_gpg": true + }, + { + "name": "dhcp-libs", + "epoch": 12, + "version": "4.3.6", + "release": "44.0.1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-libs-4.3.6-44.0.1.el8.x86_64.rpm", + "checksum": "sha256:436e93b4c072f8b6f90f41a037d017406be10c18efafc8c634f6da59bbac1105", + "check_gpg": true + }, + { + "name": "diffutils", + "epoch": 0, + "version": "3.6", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/diffutils-3.6-6.el8.x86_64.rpm", + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "name": "dmidecode", + "epoch": 1, + "version": "3.2", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dmidecode-3.2-8.el8.x86_64.rpm", + "checksum": "sha256:b2cd2dc5cf9c1c118053e7e650c6d910b1d37e810a38d90de27d80a04b702e39", + "check_gpg": true + }, + { + "name": "dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "name": "dnf-data", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-data-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "name": "dnf-plugins-core", + "epoch": 0, + "version": "4.0.18", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-plugins-core-4.0.18-3.el8.noarch.rpm", + "checksum": "sha256:c4a5df7ec884bdcc929e73e066c7def89cfb8cf53306ffcf9f33a5c9e4ae84c7", + "check_gpg": true + }, + { + "name": "dosfstools", + "epoch": 0, + "version": "4.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dosfstools-4.1-6.el8.x86_64.rpm", + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "name": "dracut", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "name": "dracut-config-generic", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-config-generic-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:760141c74870a93505dbba2174034287b6a97b9bb2b12c5ca2b7af056773b45b", + "check_gpg": true + }, + { + "name": "dracut-network", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-network-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:4a28d9fa9785d7e8515deaf5e1a381a553c37b02a81a20ddd4fa202b33413ac9", + "check_gpg": true + }, + { + "name": "dracut-squash", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-squash-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:16b34582f757aebb9bc7b0a0475458cbb186238b5b528ef8fdb099cb739ba383", + "check_gpg": true + }, + { + "name": "e2fsprogs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "name": "e2fsprogs-libs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "name": "efi-filesystem", + "epoch": 0, + "version": "3", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efi-filesystem-3-3.el8.noarch.rpm", + "checksum": "sha256:d655ee126614010e72bac89b7ecaf38b515647181a22940cb774647442d28beb", + "check_gpg": true + }, + { + "name": "efivar-libs", + "epoch": 0, + "version": "37", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efivar-libs-37-4.el8.x86_64.rpm", + "checksum": "sha256:48bfe66d6f07baf1974355e8a3ebbc44f2d9812b823ddfff1c15f35635a8dc4e", + "check_gpg": true + }, + { + "name": "elfutils-debuginfod-client", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "name": "elfutils-default-yama-scope", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.182-3.el8.noarch.rpm", + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "name": "elfutils-libelf", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libelf-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "name": "elfutils-libs", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libs-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "name": "ethtool", + "epoch": 2, + "version": "5.8", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ethtool-5.8-5.el8.x86_64.rpm", + "checksum": "sha256:f7e6debd0279cb07f0c805d90b707c187bb55b9ee34643898eec800b79fa6b1b", + "check_gpg": true + }, + { + "name": "expat", + "epoch": 0, + "version": "2.2.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/expat-2.2.5-4.el8.x86_64.rpm", + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "name": "file", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "name": "file-libs", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-libs-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "name": "filesystem", + "epoch": 0, + "version": "3.8", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/filesystem-3.8-4.el8.x86_64.rpm", + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "name": "findutils", + "epoch": 1, + "version": "4.6.0", + "release": "20.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/findutils-4.6.0-20.el8.x86_64.rpm", + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "name": "freetype", + "epoch": 0, + "version": "2.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/freetype-2.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "name": "fuse-libs", + "epoch": 0, + "version": "2.9.7", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-libs-2.9.7-12.el8.x86_64.rpm", + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "name": "fwupd", + "epoch": 0, + "version": "1.5.5", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fwupd-1.5.5-1.el8.x86_64.rpm", + "checksum": "sha256:6710a1b2f28e5ffd0fff3e74a76d84d12a602be79703e53e1a55166f2f7d141c", + "check_gpg": true + }, + { + "name": "gawk", + "epoch": 0, + "version": "4.2.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gawk-4.2.1-2.el8.x86_64.rpm", + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "name": "gdbm", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "name": "gdbm-libs", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-libs-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "name": "gdisk", + "epoch": 0, + "version": "1.0.3", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdisk-1.0.3-6.el8.x86_64.rpm", + "checksum": "sha256:fa0b90c4da7f7ca8bf40055be5641a2c57708931fec5f760a2f8944325669fe9", + "check_gpg": true + }, + { + "name": "gettext", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "name": "gettext-libs", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-libs-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "name": "glib2", + "epoch": 0, + "version": "2.56.4", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib2-2.56.4-9.el8.x86_64.rpm", + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "name": "glibc", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "name": "glibc-common", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-common-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "name": "glibc-langpack-en", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-langpack-en-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:3162a4a9159994002c3c6f5fe6a12160020e8f3484f1406ff5092311ca639548", + "check_gpg": true + }, + { + "name": "gmp", + "epoch": 1, + "version": "6.1.2", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gmp-6.1.2-10.el8.x86_64.rpm", + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "name": "gnupg2", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "name": "gnupg2-smime", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-smime-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "name": "gnutls", + "epoch": 0, + "version": "3.6.14", + "release": "7.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnutls-3.6.14-7.el8_3.x86_64.rpm", + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "name": "gobject-introspection", + "epoch": 0, + "version": "1.56.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gobject-introspection-1.56.1-1.el8.x86_64.rpm", + "checksum": "sha256:7e2804a4494d4179ed50c0c99da1e30c3a6abf8db889c1412b458943cff0e3e5", + "check_gpg": true + }, + { + "name": "gpgme", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gpgme-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "name": "grep", + "epoch": 0, + "version": "3.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grep-3.1-6.el8.x86_64.rpm", + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "name": "groff-base", + "epoch": 0, + "version": "1.22.3", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/groff-base-1.22.3-18.el8.x86_64.rpm", + "checksum": "sha256:b00855013100d3796e9ed6d82b1ab2d4dc7f4a3a3fa2e186f6de8523577974a0", + "check_gpg": true + }, + { + "name": "grub2-common", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-common-2.02-93.el8.noarch.rpm", + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "name": "grub2-efi-x64", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-efi-x64-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:79277d872ae6035009a1a40e914ec09bca21aefcac9d73dee65880c86387f3c9", + "check_gpg": true + }, + { + "name": "grub2-pc", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "name": "grub2-pc-modules", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-modules-2.02-93.el8.noarch.rpm", + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "name": "grub2-tools", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "name": "grub2-tools-extra", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-extra-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "name": "grub2-tools-minimal", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-minimal-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "name": "grubby", + "epoch": 0, + "version": "8.40", + "release": "41.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grubby-8.40-41.el8.x86_64.rpm", + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "name": "gzip", + "epoch": 0, + "version": "1.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gzip-1.9-12.el8.x86_64.rpm", + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "name": "hardlink", + "epoch": 1, + "version": "1.3", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hardlink-1.3-6.el8.x86_64.rpm", + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "name": "hdparm", + "epoch": 0, + "version": "9.54", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hdparm-9.54-3.el8.x86_64.rpm", + "checksum": "sha256:3c6650fd6e32fdc24b8cf1f7a85ae8232661b47bda7019e49fd0eb474683ff23", + "check_gpg": true + }, + { + "name": "hostname", + "epoch": 0, + "version": "3.20", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hostname-3.20-6.el8.x86_64.rpm", + "checksum": "sha256:7a7963e2052bfb45b8569f64619dc5cb92fe8aeb78c754b7cf948b9784646785", + "check_gpg": true + }, + { + "name": "hwdata", + "epoch": 0, + "version": "0.314", + "release": "8.7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hwdata-0.314-8.7.el8.noarch.rpm", + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "name": "ima-evm-utils", + "epoch": 0, + "version": "1.3.2", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ima-evm-utils-1.3.2-11.el8.x86_64.rpm", + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "name": "info", + "epoch": 0, + "version": "6.5", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/info-6.5-6.el8.x86_64.rpm", + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "name": "initscripts", + "epoch": 0, + "version": "10.00.12", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/initscripts-10.00.12-1.el8.x86_64.rpm", + "checksum": "sha256:7fa8fbc576f7d54c388fa39fc3ed86bacb7964cac4544c48b3ffabcdcdc27b61", + "check_gpg": true + }, + { + "name": "ipcalc", + "epoch": 0, + "version": "0.2.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipcalc-0.2.4-4.el8.x86_64.rpm", + "checksum": "sha256:dea18976861575d40ffca814dee08a225376c7828a5afc9e5d0a383edd3d8907", + "check_gpg": true + }, + { + "name": "iproute", + "epoch": 0, + "version": "5.9.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iproute-5.9.0-2.el8.x86_64.rpm", + "checksum": "sha256:a456039834ccc5432949120f1d80b18329b552cf44d1b59ea1b60d2192e7bc5c", + "check_gpg": true + }, + { + "name": "iptables-libs", + "epoch": 0, + "version": "1.8.4", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-libs-1.8.4-17.el8.x86_64.rpm", + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "name": "iputils", + "epoch": 0, + "version": "20180629", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iputils-20180629-6.el8.x86_64.rpm", + "checksum": "sha256:74b842ba3352d7c4ada7e991aeadf8749f058a4d00ccc6f79f1c82a281497cb7", + "check_gpg": true + }, + { + "name": "irqbalance", + "epoch": 2, + "version": "1.4.0", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/irqbalance-1.4.0-6.el8.x86_64.rpm", + "checksum": "sha256:3acd2c8b6ea534811308b3138859b5fa150b89604bb60f16b0650747039d696a", + "check_gpg": true + }, + { + "name": "jansson", + "epoch": 0, + "version": "2.11", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/jansson-2.11-3.el8.x86_64.rpm", + "checksum": "sha256:a06e1d34df03aaf429d290d5c281356fefe0ad510c229189405b88b3c0f40374", + "check_gpg": true + }, + { + "name": "json-c", + "epoch": 0, + "version": "0.13.1", + "release": "0.4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-c-0.13.1-0.4.el8.x86_64.rpm", + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "name": "json-glib", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-glib-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:98a6386df94fc9595365c3ecbc630708420fa68d1774614a723dec4a55e84b9c", + "check_gpg": true + }, + { + "name": "kbd", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-2.0.4-10.el8.x86_64.rpm", + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "name": "kbd-legacy", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-legacy-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "name": "kbd-misc", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-misc-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "name": "kernel", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:c44dbbff4fe503f5f49b71ab17db7848c6c67fe19d9a4cc6cef59cc6dd15f1a6", + "check_gpg": true + }, + { + "name": "kernel-core", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:aa938dc6f13d0d57ca811b8c299b1017723fa419997b87754f74db770430c2d9", + "check_gpg": true + }, + { + "name": "kernel-modules", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:da77940ecadc9edb5d14aad51e4bf06664e5763fe6e46b20364732ec3aa2e08a", + "check_gpg": true + }, + { + "name": "kernel-tools", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:5f45a2ff1a9c9f3d4fcae463c1ca70b1a16caccc59816ce391f064c9d8b9d8ae", + "check_gpg": true + }, + { + "name": "kernel-tools-libs", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-libs-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:ab1be3dcea74c7a7fac49f9a1cad4113fded2d3edabb61b29ed8489a737033fe", + "check_gpg": true + }, + { + "name": "kexec-tools", + "epoch": 0, + "version": "2.0.20", + "release": "45.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kexec-tools-2.0.20-45.el8.x86_64.rpm", + "checksum": "sha256:4280042747c9027c3252d360fa33d63490aa518858849115b20162a097a37146", + "check_gpg": true + }, + { + "name": "keyutils-libs", + "epoch": 0, + "version": "1.5.10", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-libs-1.5.10-6.el8.x86_64.rpm", + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "name": "kmod", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-25-17.el8.x86_64.rpm", + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "name": "kmod-libs", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-libs-25-17.el8.x86_64.rpm", + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "name": "kpartx", + "epoch": 0, + "version": "0.8.4", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kpartx-0.8.4-8.el8.x86_64.rpm", + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "name": "krb5-libs", + "epoch": 0, + "version": "1.18.2", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/krb5-libs-1.18.2-8.el8.x86_64.rpm", + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "name": "less", + "epoch": 0, + "version": "530", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/less-530-1.el8.x86_64.rpm", + "checksum": "sha256:f94172554b8ceeab97b560d0b05c2e2df4b2e737471adce6eca82fd3209be254", + "check_gpg": true + }, + { + "name": "libacl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libacl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "name": "libarchive", + "epoch": 0, + "version": "3.3.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libarchive-3.3.3-1.el8.x86_64.rpm", + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "name": "libassuan", + "epoch": 0, + "version": "2.5.1", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libassuan-2.5.1-3.el8.x86_64.rpm", + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "name": "libattr", + "epoch": 0, + "version": "2.4.48", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libattr-2.4.48-3.el8.x86_64.rpm", + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "name": "libbasicobjects", + "epoch": 0, + "version": "0.1.1", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libbasicobjects-0.1.1-39.el8.x86_64.rpm", + "checksum": "sha256:5452b96e4b57c275dd41e48d55af1ca4f77ccfb3ae403796e599a039d7382b91", + "check_gpg": true + }, + { + "name": "libblkid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libblkid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "name": "libcap", + "epoch": 0, + "version": "2.26", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-2.26-4.el8.x86_64.rpm", + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "name": "libcap-ng", + "epoch": 0, + "version": "0.7.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-ng-0.7.9-5.el8.x86_64.rpm", + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "name": "libcollection", + "epoch": 0, + "version": "0.7.0", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcollection-0.7.0-39.el8.x86_64.rpm", + "checksum": "sha256:708a8fd75f7c6987d66e2d62de664b5a84c6f75fd4e5230e244681897b15a25d", + "check_gpg": true + }, + { + "name": "libcom_err", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcom_err-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "name": "libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "name": "libcroco", + "epoch": 0, + "version": "0.6.12", + "release": "4.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcroco-0.6.12-4.el8_2.1.x86_64.rpm", + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "name": "libcurl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcurl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "name": "libdaemon", + "epoch": 0, + "version": "0.14", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdaemon-0.14-15.el8.x86_64.rpm", + "checksum": "sha256:dae52ddd215b506d1805b66873194df5043fd758d42960dee68f029eab329b42", + "check_gpg": true + }, + { + "name": "libdb", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "name": "libdb-utils", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-utils-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "name": "libdhash", + "epoch": 0, + "version": "0.5.0", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdhash-0.5.0-39.el8.x86_64.rpm", + "checksum": "sha256:6327624b7b0d726a3c95f2245619efb1df8e70023fadcc8158afed39f57859e7", + "check_gpg": true + }, + { + "name": "libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "name": "libedit", + "epoch": 0, + "version": "3.1", + "release": "23.20170329cvs.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libedit-3.1-23.20170329cvs.el8.x86_64.rpm", + "checksum": "sha256:08b76b0af07db4d3b27776a96bb7d0dc0f02b7219569676ac79036190d731d5b", + "check_gpg": true + }, + { + "name": "libevent", + "epoch": 0, + "version": "2.1.8", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libevent-2.1.8-5.el8.x86_64.rpm", + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "name": "libfdisk", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libfdisk-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "name": "libffi", + "epoch": 0, + "version": "3.1", + "release": "22.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libffi-3.1-22.el8.x86_64.rpm", + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "name": "libgcab1", + "epoch": 0, + "version": "1.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcab1-1.1-1.el8.x86_64.rpm", + "checksum": "sha256:d9d8c21ad40e59b78008f1a569039462e5654a9d4bb08d84cf032e34cf7bde62", + "check_gpg": true + }, + { + "name": "libgcc", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcc-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "name": "libgcrypt", + "epoch": 0, + "version": "1.8.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcrypt-1.8.5-4.el8.x86_64.rpm", + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "name": "libgomp", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgomp-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "name": "libgpg-error", + "epoch": 0, + "version": "1.31", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgpg-error-1.31-1.el8.x86_64.rpm", + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "name": "libgudev", + "epoch": 0, + "version": "232", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgudev-232-4.el8.x86_64.rpm", + "checksum": "sha256:cb6b773c2ac78142736abd8a8f9eaac122f4647aefd3f003a615baf79abbefbb", + "check_gpg": true + }, + { + "name": "libgusb", + "epoch": 0, + "version": "0.3.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgusb-0.3.0-1.el8.x86_64.rpm", + "checksum": "sha256:ab7bc1a828168006b88934bea949ab2b29b837b0a431f7da1a12147f64f6ddb5", + "check_gpg": true + }, + { + "name": "libibverbs", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libibverbs-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "name": "libidn2", + "epoch": 0, + "version": "2.2.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libidn2-2.2.0-1.el8.x86_64.rpm", + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "name": "libini_config", + "epoch": 0, + "version": "1.3.1", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libini_config-1.3.1-39.el8.x86_64.rpm", + "checksum": "sha256:b06fa62d0a585a7bc3b9d3341923736b3ee4b6cc6d7ca83bebcb97225ca86ac9", + "check_gpg": true + }, + { + "name": "libkcapi", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "name": "libkcapi-hmaccalc", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-hmaccalc-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "name": "libksba", + "epoch": 0, + "version": "1.3.5", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libksba-1.3.5-7.el8.x86_64.rpm", + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "name": "libldb", + "epoch": 0, + "version": "2.2.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libldb-2.2.0-1.el8.x86_64.rpm", + "checksum": "sha256:1b5187e9b694e439a059be58d8de5317f04278371d1195bf000b001ba8699197", + "check_gpg": true + }, + { + "name": "libmbim", + "epoch": 0, + "version": "1.20.2", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmbim-1.20.2-1.el8.x86_64.rpm", + "checksum": "sha256:e2549a249d537f80f6595816a1094532c3feb0a730585d102c580583cc1dfde4", + "check_gpg": true + }, + { + "name": "libmetalink", + "epoch": 0, + "version": "0.1.3", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmetalink-0.1.3-7.el8.x86_64.rpm", + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "name": "libmnl", + "epoch": 0, + "version": "1.0.4", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmnl-1.0.4-6.el8.x86_64.rpm", + "checksum": "sha256:30fab73ee155f03dbbd99c1e30fe59dfba4ae8fdb2e7213451ccc36d6918bfcc", + "check_gpg": true + }, + { + "name": "libmodulemd", + "epoch": 0, + "version": "2.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodulemd-2.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "name": "libmount", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmount-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "name": "libndp", + "epoch": 0, + "version": "1.7", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libndp-1.7-3.el8.x86_64.rpm", + "checksum": "sha256:c357a350aa169402db3c898c7edcfee333e1d11a44f62bbeaba3fd3d2f31644d", + "check_gpg": true + }, + { + "name": "libnfsidmap", + "epoch": 1, + "version": "2.3.3", + "release": "41.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnfsidmap-2.3.3-41.el8.x86_64.rpm", + "checksum": "sha256:8852282172440cd618c695356449cbc035be4091b2a0833c785c8e42cc1df0e6", + "check_gpg": true + }, + { + "name": "libnghttp2", + "epoch": 0, + "version": "1.33.0", + "release": "3.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnghttp2-1.33.0-3.el8_2.1.x86_64.rpm", + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "name": "libnl3", + "epoch": 0, + "version": "3.5.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-3.5.0-1.el8.x86_64.rpm", + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "name": "libnl3-cli", + "epoch": 0, + "version": "3.5.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-cli-3.5.0-1.el8.x86_64.rpm", + "checksum": "sha256:2e8d4ee76fa8678b0e4d6c0297b16f96e0116201bf96b36e8924b1b080abcddd", + "check_gpg": true + }, + { + "name": "libnsl2", + "epoch": 0, + "version": "1.2.0", + "release": "2.20180605git4a062cf.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64.rpm", + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "name": "libpath_utils", + "epoch": 0, + "version": "0.2.1", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpath_utils-0.2.1-39.el8.x86_64.rpm", + "checksum": "sha256:185f36b3af9367e6142233af358df22f23ee623697bc6a45c47091013707872e", + "check_gpg": true + }, + { + "name": "libpcap", + "epoch": 14, + "version": "1.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpcap-1.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "name": "libpipeline", + "epoch": 0, + "version": "1.5.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpipeline-1.5.0-2.el8.x86_64.rpm", + "checksum": "sha256:9eb9c1a67c5be04487cc133bdb8498eaf260e4d930a0143d2e1aa772e3d6cf64", + "check_gpg": true + }, + { + "name": "libpng", + "epoch": 2, + "version": "1.6.34", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpng-1.6.34-5.el8.x86_64.rpm", + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "name": "libpsl", + "epoch": 0, + "version": "0.20.2", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpsl-0.20.2-6.el8.x86_64.rpm", + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "name": "libpwquality", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "name": "libqmi", + "epoch": 0, + "version": "1.24.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libqmi-1.24.0-1.el8.x86_64.rpm", + "checksum": "sha256:406aea2bb2a5f83cabee5a50bad08a3516776c3cd42db8b159f926624f61aa42", + "check_gpg": true + }, + { + "name": "libref_array", + "epoch": 0, + "version": "0.1.5", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libref_array-0.1.5-39.el8.x86_64.rpm", + "checksum": "sha256:6b740563ba5858573ff3c2d2a827aeaf6e7166178e36066755d2cde4cf8a016f", + "check_gpg": true + }, + { + "name": "librepo", + "epoch": 0, + "version": "1.12.0", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/librepo-1.12.0-3.el8.x86_64.rpm", + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "name": "libreport-filesystem", + "epoch": 0, + "version": "2.9.5", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libreport-filesystem-2.9.5-15.el8.x86_64.rpm", + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "name": "libseccomp", + "epoch": 0, + "version": "2.4.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libseccomp-2.4.3-1.el8.x86_64.rpm", + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "name": "libsecret", + "epoch": 0, + "version": "0.18.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsecret-0.18.6-1.el8.x86_64.rpm", + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "name": "libselinux", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "name": "libselinux-utils", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-utils-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "name": "libsemanage", + "epoch": 0, + "version": "2.9", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsemanage-2.9-6.el8.x86_64.rpm", + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "name": "libsepol", + "epoch": 0, + "version": "2.9", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsepol-2.9-2.el8.x86_64.rpm", + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "name": "libsigsegv", + "epoch": 0, + "version": "2.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsigsegv-2.11-5.el8.x86_64.rpm", + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "name": "libsmartcols", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmartcols-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "name": "libsmbios", + "epoch": 0, + "version": "2.4.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmbios-2.4.1-2.el8.x86_64.rpm", + "checksum": "sha256:5092704c041bb246eaafd478bedface3f99ce8fa233ada5cf96807f67e980e42", + "check_gpg": true + }, + { + "name": "libsolv", + "epoch": 0, + "version": "0.7.16", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsolv-0.7.16-2.el8.x86_64.rpm", + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "name": "libss", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libss-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "name": "libssh", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-0.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "name": "libssh-config", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-config-0.9.4-2.el8.noarch.rpm", + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "name": "libsss_autofs", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_autofs-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:1230ddb5d92fe538a0526e3a9f05563a111ae4ff1978fc8e18de889974b5b46c", + "check_gpg": true + }, + { + "name": "libsss_certmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_certmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:ef2734017b25f7e9e1abf67315a7d1c97216642b5dfb979c19b1a3f74cff1e54", + "check_gpg": true + }, + { + "name": "libsss_idmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_idmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:377ad20c1681518bff1f40884589bddc4a692506384c7676f072ddf86ae429f9", + "check_gpg": true + }, + { + "name": "libsss_nss_idmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_nss_idmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:2c6dd4f21d9c4bde29f693d32e44f0d1c5dc73d78d013767df531d69bbfc6ed8", + "check_gpg": true + }, + { + "name": "libsss_sudo", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_sudo-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:370b74a811249b8f0bdfcd34137507f058a85196775e9d0d2bb244c100d194ae", + "check_gpg": true + }, + { + "name": "libstdc++", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstdc++-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "name": "libsysfs", + "epoch": 0, + "version": "2.1.0", + "release": "24.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsysfs-2.1.0-24.el8.x86_64.rpm", + "checksum": "sha256:53ae3ecd59ec61852cabbd039c748ed63ceb6a88da98587d4c33323ba4095154", + "check_gpg": true + }, + { + "name": "libtalloc", + "epoch": 0, + "version": "2.3.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtalloc-2.3.1-2.el8.x86_64.rpm", + "checksum": "sha256:918518368513d162d772dfc5d16536ad2799276bcba2f47514a1c7098de2b43f", + "check_gpg": true + }, + { + "name": "libtasn1", + "epoch": 0, + "version": "4.13", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtasn1-4.13-3.el8.x86_64.rpm", + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "name": "libtdb", + "epoch": 0, + "version": "1.4.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtdb-1.4.3-1.el8.x86_64.rpm", + "checksum": "sha256:a5228fc876cffc7dc79769ada5653cb9bfb80d469fb3c9f0acc14a1a0d15782d", + "check_gpg": true + }, + { + "name": "libteam", + "epoch": 0, + "version": "1.31", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libteam-1.31-2.el8.x86_64.rpm", + "checksum": "sha256:0aaaaa29cc1bb4d358142db6eb7d12df9252a8166bf61956203878eed210785c", + "check_gpg": true + }, + { + "name": "libtevent", + "epoch": 0, + "version": "0.10.2", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtevent-0.10.2-2.el8.x86_64.rpm", + "checksum": "sha256:b8e4cfecbbe7d2d6d9f3003432e826398f6bea21d5aba11a17ee74358cb84a6e", + "check_gpg": true + }, + { + "name": "libtirpc", + "epoch": 0, + "version": "1.1.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtirpc-1.1.4-4.el8.x86_64.rpm", + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "name": "libunistring", + "epoch": 0, + "version": "0.9.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libunistring-0.9.9-3.el8.x86_64.rpm", + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "name": "libusbx", + "epoch": 0, + "version": "1.0.23", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libusbx-1.0.23-4.el8.x86_64.rpm", + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "name": "libuser", + "epoch": 0, + "version": "0.62", + "release": "23.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuser-0.62-23.el8.x86_64.rpm", + "checksum": "sha256:70b5e4e580da72969ad3bb144c15293910b7d679e195c118cee60d8320f01851", + "check_gpg": true + }, + { + "name": "libutempter", + "epoch": 0, + "version": "1.1.6", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libutempter-1.1.6-14.el8.x86_64.rpm", + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "name": "libuuid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuuid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "name": "libverto", + "epoch": 0, + "version": "0.3.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-0.3.0-5.el8.x86_64.rpm", + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "name": "libxcrypt", + "epoch": 0, + "version": "4.1.1", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxcrypt-4.1.1-4.el8.x86_64.rpm", + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "name": "libxml2", + "epoch": 0, + "version": "2.9.7", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxml2-2.9.7-9.el8.x86_64.rpm", + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "name": "libxmlb", + "epoch": 0, + "version": "0.1.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxmlb-0.1.15-1.el8.x86_64.rpm", + "checksum": "sha256:5b7763510f4badd05a1647e1fadf9dc49044b1cf4d754262d0d6d5ee9a8f3b12", + "check_gpg": true + }, + { + "name": "libyaml", + "epoch": 0, + "version": "0.1.7", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libyaml-0.1.7-5.el8.x86_64.rpm", + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "name": "libzstd", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libzstd-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "name": "linux-firmware", + "epoch": 0, + "version": "20201218", + "release": "102.git05789708.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/linux-firmware-20201218-102.git05789708.el8.noarch.rpm", + "checksum": "sha256:cad76a2802c5f355b527df3cabde70bd58b31ec4b7de3b1ac15a429cda5b9b03", + "check_gpg": true + }, + { + "name": "lmdb-libs", + "epoch": 0, + "version": "0.9.24", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lmdb-libs-0.9.24-1.el8.x86_64.rpm", + "checksum": "sha256:0064a3aeff41fb7345c061956c35e4b9d0b8802954e717491fb6eb51028d22fd", + "check_gpg": true + }, + { + "name": "logrotate", + "epoch": 0, + "version": "3.14.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/logrotate-3.14.0-4.el8.x86_64.rpm", + "checksum": "sha256:3cd092e6e03efb4bb49b91dedd52b43f891092d04a2ff040b9f2197ec2082511", + "check_gpg": true + }, + { + "name": "lshw", + "epoch": 0, + "version": "B.02.19.2", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lshw-B.02.19.2-5.el8.x86_64.rpm", + "checksum": "sha256:fda078d8edd4e0902246dd3121efb6c57cb8231dbb975380f9249c64163f0d88", + "check_gpg": true + }, + { + "name": "lsscsi", + "epoch": 0, + "version": "0.32", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lsscsi-0.32-2.el8.x86_64.rpm", + "checksum": "sha256:c8fc05dd997477fc80e2f3195e719ca2e569fc8997f05a64a13c52c8358e8239", + "check_gpg": true + }, + { + "name": "lua-libs", + "epoch": 0, + "version": "5.3.4", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lua-libs-5.3.4-11.el8.x86_64.rpm", + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "name": "lz4-libs", + "epoch": 0, + "version": "1.8.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lz4-libs-1.8.3-2.el8.x86_64.rpm", + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "name": "lzo", + "epoch": 0, + "version": "2.08", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lzo-2.08-14.el8.x86_64.rpm", + "checksum": "sha256:5c68635cb03533a38d4a42f6547c21a1d5f9952351bb01f3cf865d2621a6e634", + "check_gpg": true + }, + { + "name": "man-db", + "epoch": 0, + "version": "2.7.6.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/man-db-2.7.6.1-17.el8.x86_64.rpm", + "checksum": "sha256:a0b6a8d5530f5003f5c8d56211246cd1130a5b4dc1396dc50da70ce0e128b02c", + "check_gpg": true + }, + { + "name": "mdadm", + "epoch": 0, + "version": "4.1", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mdadm-4.1-15.el8.x86_64.rpm", + "checksum": "sha256:0560d3b3e915221aad94ddf83169bd680b1f0da9aa8ec8e9360bcb8fe071483e", + "check_gpg": true + }, + { + "name": "memstrack", + "epoch": 0, + "version": "0.1.11", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/memstrack-0.1.11-1.el8.x86_64.rpm", + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "name": "microcode_ctl", + "epoch": 4, + "version": "20201112", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/microcode_ctl-20201112-2.el8.x86_64.rpm", + "checksum": "sha256:bce152ddd2f05f892e5ce483a7c12606ba7d2c42108402fc9609ada04048e6df", + "check_gpg": true + }, + { + "name": "mokutil", + "epoch": 1, + "version": "0.3.0", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mokutil-0.3.0-11.el8.x86_64.rpm", + "checksum": "sha256:1c4b186665558747023a60d0d662d3780a1bc49e578062f4b70100c71ab2220c", + "check_gpg": true + }, + { + "name": "mozjs60", + "epoch": 0, + "version": "60.9.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mozjs60-60.9.0-4.el8.x86_64.rpm", + "checksum": "sha256:03b50a4ea5cf5655c67e2358fabb6e563eec4e7929e7fc6c4e92c92694f60fa0", + "check_gpg": true + }, + { + "name": "mpfr", + "epoch": 0, + "version": "3.1.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mpfr-3.1.6-1.el8.x86_64.rpm", + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "name": "ncurses", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "name": "ncurses-base", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-base-6.1-7.20180224.el8.noarch.rpm", + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "name": "ncurses-libs", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-libs-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "name": "net-tools", + "epoch": 0, + "version": "2.0", + "release": "0.52.20160912git.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/net-tools-2.0-0.52.20160912git.el8.x86_64.rpm", + "checksum": "sha256:c56cde3b8bc11965fa73b9baf59ab5fa7f6a45a950d5b6b369cf4679c17295ca", + "check_gpg": true + }, + { + "name": "nettle", + "epoch": 0, + "version": "3.4.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nettle-3.4.1-2.el8.x86_64.rpm", + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "name": "newt", + "epoch": 0, + "version": "0.52.20", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/newt-0.52.20-11.el8.x86_64.rpm", + "checksum": "sha256:c9df7c58da59500e1717e435c565e221daa344212db8e83eb33b6a9c8e9a67bb", + "check_gpg": true + }, + { + "name": "npth", + "epoch": 0, + "version": "1.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/npth-1.5-4.el8.x86_64.rpm", + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "name": "numactl-libs", + "epoch": 0, + "version": "2.0.12", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/numactl-libs-2.0.12-11.el8.x86_64.rpm", + "checksum": "sha256:5e24dd39ae59ef7b7a386f28509cc80d8fabb23f0932e52ea365cf064ff76c59", + "check_gpg": true + }, + { + "name": "openldap", + "epoch": 0, + "version": "2.4.46", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openldap-2.4.46-16.el8.x86_64.rpm", + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "name": "openssh", + "epoch": 0, + "version": "8.0p1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-8.0p1-5.el8.x86_64.rpm", + "checksum": "sha256:f8bdaf5211c6fc72c8f60c7ddd59b8ca124ab26d2670ee6490a7fabb5177d919", + "check_gpg": true + }, + { + "name": "openssh-clients", + "epoch": 0, + "version": "8.0p1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-clients-8.0p1-5.el8.x86_64.rpm", + "checksum": "sha256:a9ec13abf63c69913acc1ac7070ab315c8b5a58c6006c3dfc5b27662f7f22260", + "check_gpg": true + }, + { + "name": "openssh-server", + "epoch": 0, + "version": "8.0p1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-server-8.0p1-5.el8.x86_64.rpm", + "checksum": "sha256:173a812d859c70f8db7b014d507c5cacb76c62ab5480c44be217f880465f42c7", + "check_gpg": true + }, + { + "name": "openssl", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "name": "openssl-libs", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-libs-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "name": "openssl-pkcs11", + "epoch": 0, + "version": "0.4.10", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-pkcs11-0.4.10-2.el8.x86_64.rpm", + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "name": "os-prober", + "epoch": 0, + "version": "1.74", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/os-prober-1.74-6.el8.x86_64.rpm", + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "name": "p11-kit", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "name": "p11-kit-trust", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-trust-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "name": "pam", + "epoch": 0, + "version": "1.3.1", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pam-1.3.1-14.el8.x86_64.rpm", + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "name": "parted", + "epoch": 0, + "version": "3.2", + "release": "38.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/parted-3.2-38.el8.x86_64.rpm", + "checksum": "sha256:4c5c7f3773c634c054b0a5fc1b40d0a8448b44bb5aff410bfa88facf9e2059ff", + "check_gpg": true + }, + { + "name": "passwd", + "epoch": 0, + "version": "0.80", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/passwd-0.80-3.el8.x86_64.rpm", + "checksum": "sha256:9c849b1d4fd605ae749fd9d090715b6034520af871c23729cd4003f22e0990de", + "check_gpg": true + }, + { + "name": "pciutils", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "name": "pciutils-libs", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-libs-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "name": "pcre", + "epoch": 0, + "version": "8.42", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre-8.42-4.el8.x86_64.rpm", + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "name": "pcre2", + "epoch": 0, + "version": "10.32", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre2-10.32-2.el8.x86_64.rpm", + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "name": "pigz", + "epoch": 0, + "version": "2.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pigz-2.4-4.el8.x86_64.rpm", + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "name": "platform-python", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "name": "platform-python-pip", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-pip-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "name": "platform-python-setuptools", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-setuptools-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "name": "policycoreutils", + "epoch": 0, + "version": "2.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-2.9-12.el8.x86_64.rpm", + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "name": "polkit", + "epoch": 0, + "version": "0.115", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-0.115-11.el8.x86_64.rpm", + "checksum": "sha256:09128c1b70cb8ea1a9bfbc6f3314dd5a8ba0c1a1886a82cd0fbe6845d48215dc", + "check_gpg": true + }, + { + "name": "polkit-libs", + "epoch": 0, + "version": "0.115", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-libs-0.115-11.el8.x86_64.rpm", + "checksum": "sha256:8d6742dce47f8ed65e222864872e919f30c678f5df1e99c134fba8a0fc7f454d", + "check_gpg": true + }, + { + "name": "polkit-pkla-compat", + "epoch": 0, + "version": "0.1", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-pkla-compat-0.1-12.el8.x86_64.rpm", + "checksum": "sha256:e7ee4b6d6456cb7da0332f5a6fb8a7c47df977bcf616f12f0455413765367e89", + "check_gpg": true + }, + { + "name": "popt", + "epoch": 0, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/popt-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "name": "prefixdevname", + "epoch": 0, + "version": "0.1.0", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/prefixdevname-0.1.0-6.el8.x86_64.rpm", + "checksum": "sha256:776a182ecaab9f86c7e869db2eb2deea1f291caee701cddbd752da8cd3c57458", + "check_gpg": true + }, + { + "name": "procps-ng", + "epoch": 0, + "version": "3.3.15", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/procps-ng-3.3.15-6.el8.x86_64.rpm", + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "name": "publicsuffix-list-dafsa", + "epoch": 0, + "version": "20180723", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20180723-1.el8.noarch.rpm", + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "name": "python3-audit", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-audit-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:addf80c52d794aed47874eb9d5ddbbaa90cb248fda1634d793054a41da0d92d7", + "check_gpg": true + }, + { + "name": "python3-cffi", + "epoch": 0, + "version": "1.11.5", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-cffi-1.11.5-5.el8.x86_64.rpm", + "checksum": "sha256:07ed1209e898552e6aeac0e6d148271d562c576f7d903cb7a99a697643068f58", + "check_gpg": true + }, + { + "name": "python3-chardet", + "epoch": 0, + "version": "3.0.4", + "release": "7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-chardet-3.0.4-7.el8.noarch.rpm", + "checksum": "sha256:176ffcb2cf0fdcbdd2d8119cbd98eef60a30fdb0fb065a9382d2c95e90c79652", + "check_gpg": true + }, + { + "name": "python3-configobj", + "epoch": 0, + "version": "5.0.6", + "release": "11.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-configobj-5.0.6-11.el8.noarch.rpm", + "checksum": "sha256:1bd969e0521820374122f5132e5998d9bd2ab185be66565a7266096297419c8e", + "check_gpg": true + }, + { + "name": "python3-cryptography", + "epoch": 0, + "version": "3.2.1", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-cryptography-3.2.1-3.el8.x86_64.rpm", + "checksum": "sha256:2ebe28be2e0a413af31a0f49b6a2774670067cdbe48e723040b19922ae205d6b", + "check_gpg": true + }, + { + "name": "python3-dateutil", + "epoch": 1, + "version": "2.6.1", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dateutil-2.6.1-6.el8.noarch.rpm", + "checksum": "sha256:c5b5967a094ced90899052a82e2c245529b75ba3f46e0ce1a89cfc95edb935ea", + "check_gpg": true + }, + { + "name": "python3-dbus", + "epoch": 0, + "version": "1.2.4", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dbus-1.2.4-15.el8.x86_64.rpm", + "checksum": "sha256:066f254f9ac7712b44214816de907a87eb8dfd0d2ea9570a7513db9a6617ba26", + "check_gpg": true + }, + { + "name": "python3-decorator", + "epoch": 0, + "version": "4.2.1", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-decorator-4.2.1-2.el8.noarch.rpm", + "checksum": "sha256:0e9a8a0f823bf0ef948862f0ccb62353460bd07931e756c98f23908c1c526578", + "check_gpg": true + }, + { + "name": "python3-dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "name": "python3-dnf-plugins-core", + "epoch": 0, + "version": "4.0.18", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-plugins-core-4.0.18-3.el8.noarch.rpm", + "checksum": "sha256:941a9068b8fa524ecac58d37f941b95fbdcd9e38bd87c7f9d1330c5925a52a20", + "check_gpg": true + }, + { + "name": "python3-gobject-base", + "epoch": 0, + "version": "3.28.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gobject-base-3.28.3-2.el8.x86_64.rpm", + "checksum": "sha256:15dc15a5be210707852f051f4d09949c063a7283edc7d4ca3d4289eedcc0b509", + "check_gpg": true + }, + { + "name": "python3-gpg", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gpg-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "name": "python3-hawkey", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-hawkey-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "name": "python3-idna", + "epoch": 0, + "version": "2.5", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-idna-2.5-5.el8.noarch.rpm", + "checksum": "sha256:78c43d8a15ca018de1803e4baac5819e1baab1963fd31f1e44e54e8a573acbfc", + "check_gpg": true + }, + { + "name": "python3-jwt", + "epoch": 0, + "version": "1.6.1", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-jwt-1.6.1-2.el8.noarch.rpm", + "checksum": "sha256:ebeb05a4a9cdd5d060859eabac1349029c0120615c98fc939e26664c030655c1", + "check_gpg": true + }, + { + "name": "python3-libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "name": "python3-libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "name": "python3-libs", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libs-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "name": "python3-libselinux", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libselinux-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:59ba5bf69953a5a2e902b0f08b7187b66d84968852d46a3579a059477547d1a0", + "check_gpg": true + }, + { + "name": "python3-libsemanage", + "epoch": 0, + "version": "2.9", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libsemanage-2.9-6.el8.x86_64.rpm", + "checksum": "sha256:451d0cb6e2284578e3279b4cbb5ec98e9d98a687556c6b424adf8f1282d4ef58", + "check_gpg": true + }, + { + "name": "python3-linux-procfs", + "epoch": 0, + "version": "0.6.3", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-linux-procfs-0.6.3-1.el8.noarch.rpm", + "checksum": "sha256:dc835194ecfa6ebda81e0a764c953eff3422a61863e9a3e0dc74ea4cae7a4d94", + "check_gpg": true + }, + { + "name": "python3-oauthlib", + "epoch": 0, + "version": "2.1.0", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-oauthlib-2.1.0-1.el8.noarch.rpm", + "checksum": "sha256:20874a9d40b12125c9e5b97fe4ccda3f94acbc03da1dec7299123901f5b56631", + "check_gpg": true + }, + { + "name": "python3-perf", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-perf-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:6aa1e29a4d805fc36c3196788fe78cb4552e2ebec8b3d0f8d32974e6a97025f2", + "check_gpg": true + }, + { + "name": "python3-pip-wheel", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pip-wheel-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "name": "python3-ply", + "epoch": 0, + "version": "3.9", + "release": "9.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-ply-3.9-9.el8.noarch.rpm", + "checksum": "sha256:d1e8c7a00924d1a6dee44ade189025853a501d4f77c73f3bfc006aa907d97daf", + "check_gpg": true + }, + { + "name": "python3-policycoreutils", + "epoch": 0, + "version": "2.9", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-policycoreutils-2.9-12.el8.noarch.rpm", + "checksum": "sha256:142d4fe6236cdeac3f967517085d99649215d75026fbe00746e0c5214d7d20df", + "check_gpg": true + }, + { + "name": "python3-pycparser", + "epoch": 0, + "version": "2.14", + "release": "14.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pycparser-2.14-14.el8.noarch.rpm", + "checksum": "sha256:8891a9a4707611c13a5693b195201dd940254ffdb03cf5742952329282bb8cb7", + "check_gpg": true + }, + { + "name": "python3-pysocks", + "epoch": 0, + "version": "1.6.8", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pysocks-1.6.8-3.el8.noarch.rpm", + "checksum": "sha256:7f506879c64e0bb4d98782d025f46fb9a07517487ae4cbebbb3985a98f4e2154", + "check_gpg": true + }, + { + "name": "python3-pyudev", + "epoch": 0, + "version": "0.21.0", + "release": "7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pyudev-0.21.0-7.el8.noarch.rpm", + "checksum": "sha256:aa0007192287faeaecc72d9fa48efdb3108c764d450dc8fea65474476da32c45", + "check_gpg": true + }, + { + "name": "python3-pyyaml", + "epoch": 0, + "version": "3.12", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pyyaml-3.12-12.el8.x86_64.rpm", + "checksum": "sha256:525393e4d658e395c6280bd2ff4afe54999796c4722986325297ba4bfade3ea5", + "check_gpg": true + }, + { + "name": "python3-requests", + "epoch": 0, + "version": "2.20.0", + "release": "2.1.el8_1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-requests-2.20.0-2.1.el8_1.noarch.rpm", + "checksum": "sha256:003ee19ec5b88de212c3246bdfdb3e97a9910a25a219fd7cf5030b7bc666fea9", + "check_gpg": true + }, + { + "name": "python3-rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "name": "python3-schedutils", + "epoch": 0, + "version": "0.6", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-schedutils-0.6-6.el8.x86_64.rpm", + "checksum": "sha256:bafc2680bd298f0fac70854224ef03b7098d4c46ee35e270f6fd58d2e812ff1b", + "check_gpg": true + }, + { + "name": "python3-setools", + "epoch": 0, + "version": "4.3.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setools-4.3.0-2.el8.x86_64.rpm", + "checksum": "sha256:f56992135d789147285215cb062960fedcdf4b3296c62658fa430caa2c20165c", + "check_gpg": true + }, + { + "name": "python3-setuptools-wheel", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "name": "python3-six", + "epoch": 0, + "version": "1.11.0", + "release": "8.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-six-1.11.0-8.el8.noarch.rpm", + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "name": "python3-syspurpose", + "epoch": 0, + "version": "1.28.10", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-syspurpose-1.28.10-1.el8.x86_64.rpm", + "checksum": "sha256:017e78c5e23f98d6ee299255fc7be5381dba63d169e3f5dcb1de9d21b5d30ba5", + "check_gpg": true + }, + { + "name": "python3-urllib3", + "epoch": 0, + "version": "1.24.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-urllib3-1.24.2-5.el8.noarch.rpm", + "checksum": "sha256:aa1835fd302a37b84ac256db5dd0de09bd9883a5a07775aedb491faf46b18ee0", + "check_gpg": true + }, + { + "name": "rdma-core", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rdma-core-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "name": "readline", + "epoch": 0, + "version": "7.0", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/readline-7.0-10.el8.x86_64.rpm", + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "name": "rootfiles", + "epoch": 0, + "version": "8.1", + "release": "22.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rootfiles-8.1-22.el8.noarch.rpm", + "checksum": "sha256:d967d6bbb33bf7a295a64807f81875c84e82a8ecc59b6c72fe955141b1660d39", + "check_gpg": true + }, + { + "name": "rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "name": "rpm-build-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-build-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "name": "rpm-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "name": "rpm-plugin-selinux", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "name": "rpm-plugin-systemd-inhibit", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "name": "rsync", + "epoch": 0, + "version": "3.1.3", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rsync-3.1.3-12.el8.x86_64.rpm", + "checksum": "sha256:7443e0df4d55a40a0ba3cec4cd4da620200a255605e31a137bee001cb4b43af3", + "check_gpg": true + }, + { + "name": "sed", + "epoch": 0, + "version": "4.5", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sed-4.5-2.el8.x86_64.rpm", + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "name": "selinux-policy", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "name": "selinux-policy-targeted", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-targeted-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "name": "setup", + "epoch": 0, + "version": "2.12.2", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/setup-2.12.2-6.el8.noarch.rpm", + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "name": "sg3_utils", + "epoch": 0, + "version": "1.44", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-1.44-5.el8.x86_64.rpm", + "checksum": "sha256:a1d1bac6c4710e0a1a6e8a507b06a630dda6687f12642be0847768c14ce7271e", + "check_gpg": true + }, + { + "name": "sg3_utils-libs", + "epoch": 0, + "version": "1.44", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-libs-1.44-5.el8.x86_64.rpm", + "checksum": "sha256:774d214a379c0b729d7e989f9d5094fdfda7df68c1e792ba9200542032f04c91", + "check_gpg": true + }, + { + "name": "shadow-utils", + "epoch": 2, + "version": "4.6", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shadow-utils-4.6-12.el8.x86_64.rpm", + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "name": "shared-mime-info", + "epoch": 0, + "version": "1.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shared-mime-info-1.9-3.el8.x86_64.rpm", + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "name": "shim-x64", + "epoch": 0, + "version": "15", + "release": "15.el8_2", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shim-x64-15-15.el8_2.x86_64.rpm", + "checksum": "sha256:f0346c485da9a7e8c8d93624f335cbb25790a7f37c6c03e43232517bb73bbacb", + "check_gpg": true + }, + { + "name": "slang", + "epoch": 0, + "version": "2.3.2", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/slang-2.3.2-3.el8.x86_64.rpm", + "checksum": "sha256:be628d396303d6547b9d7239897fbf4fad7447375cb5e898b394a458f420b550", + "check_gpg": true + }, + { + "name": "snappy", + "epoch": 0, + "version": "1.1.8", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/snappy-1.1.8-3.el8.x86_64.rpm", + "checksum": "sha256:839c62cd7fc7e152decded6f28c80b5f7b8f34a5e319057867b38b26512cee67", + "check_gpg": true + }, + { + "name": "sqlite-libs", + "epoch": 0, + "version": "3.26.0", + "release": "13.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sqlite-libs-3.26.0-13.el8.x86_64.rpm", + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "name": "squashfs-tools", + "epoch": 0, + "version": "4.3", + "release": "19.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/squashfs-tools-4.3-19.el8.x86_64.rpm", + "checksum": "sha256:a0c8f83cef355dd98d7750e3d8eb3e9f3e9f8f5e9a3ee441cb4bc4014c647e31", + "check_gpg": true + }, + { + "name": "sssd-client", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-client-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:b1871d8ac1abaf5e809448c5f37e32487f177aee3080d9033efb4b160f755aba", + "check_gpg": true + }, + { + "name": "sssd-common", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-common-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:fe944d9dd89d550d2aa44d33cfeb11c803b074bfcda0dbbad486c392bf1cc9d0", + "check_gpg": true + }, + { + "name": "sssd-kcm", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-kcm-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:6cd7444c22d56201f61fed5fd741b44cfaae18d95b811d25c5f0ffe2f8e55a8f", + "check_gpg": true + }, + { + "name": "sssd-nfs-idmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-nfs-idmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:7115a12fad224b469419e19ee5c0d38322f467fe7a1c441c1b0239b197baac2a", + "check_gpg": true + }, + { + "name": "sudo", + "epoch": 0, + "version": "1.8.29", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sudo-1.8.29-7.el8.x86_64.rpm", + "checksum": "sha256:cbcade4487fbf372b487b9f82ed85e04ff037551c96c4b461abc3716338ff9c4", + "check_gpg": true + }, + { + "name": "systemd", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-239-44.el8.x86_64.rpm", + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "name": "systemd-libs", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-libs-239-44.el8.x86_64.rpm", + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "name": "systemd-pam", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-pam-239-44.el8.x86_64.rpm", + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "name": "systemd-udev", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-udev-239-44.el8.x86_64.rpm", + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "name": "tar", + "epoch": 2, + "version": "1.30", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tar-1.30-5.el8.x86_64.rpm", + "checksum": "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393", + "check_gpg": true + }, + { + "name": "teamd", + "epoch": 0, + "version": "1.31", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/teamd-1.31-2.el8.x86_64.rpm", + "checksum": "sha256:9664aba8dfd6bd6fda669fcf8f6ff04914305a6373b09d8b675322c7337b9c36", + "check_gpg": true + }, + { + "name": "tpm2-tss", + "epoch": 0, + "version": "2.3.2", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tpm2-tss-2.3.2-3.el8.x86_64.rpm", + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "name": "trousers", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "name": "trousers-lib", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-lib-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "name": "tuned", + "epoch": 0, + "version": "2.15.0", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tuned-2.15.0-1.el8.noarch.rpm", + "checksum": "sha256:b3bc3f1c9e8028a177599f1ed9cb6c31d2d6e75111e34623d25e736d3ddcf8fd", + "check_gpg": true + }, + { + "name": "tzdata", + "epoch": 0, + "version": "2021a", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tzdata-2021a-1.el8.noarch.rpm", + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "name": "util-linux", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/util-linux-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "name": "vim-minimal", + "epoch": 2, + "version": "8.0.1763", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/vim-minimal-8.0.1763-15.el8.x86_64.rpm", + "checksum": "sha256:3efd6a2548813167fe37718546bc768a5aa8ba59aa80edcecd8ba408bec329b0", + "check_gpg": true + }, + { + "name": "virt-what", + "epoch": 0, + "version": "1.18", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/virt-what-1.18-6.el8.x86_64.rpm", + "checksum": "sha256:4c02e3e1808f0189269b242242468a364007a8f12c6e38afc24b599b2848b0fa", + "check_gpg": true + }, + { + "name": "which", + "epoch": 0, + "version": "2.21", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/which-2.21-12.el8.x86_64.rpm", + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "name": "xfsprogs", + "epoch": 0, + "version": "5.0.0", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xfsprogs-5.0.0-8.el8.x86_64.rpm", + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "name": "xz", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "name": "xz-libs", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-libs-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "name": "yum", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/yum-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:4302361b12eefd5574f57bf0c49c0e5bdc738eddda33634af8b35adfb53a52a1", + "check_gpg": true + }, + { + "name": "yum-utils", + "epoch": 0, + "version": "4.0.18", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/yum-utils-4.0.18-3.el8.noarch.rpm", + "checksum": "sha256:bad350fece3f69757d9345ad97acdf1ba72e8d09ed2162fbfe4cc128039594e1", + "check_gpg": true + }, + { + "name": "zlib", + "epoch": 0, + "version": "1.2.11", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/zlib-1.2.11-17.el8.x86_64.rpm", + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "name": "cloud-init", + "epoch": 0, + "version": "20.3", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cloud-init-20.3-10.el8.noarch.rpm", + "checksum": "sha256:dc4f0cc77cf4c89469cf0f9c88b52f2c8c2c35f4e6d714bbdae2083440483311", + "check_gpg": true + }, + { + "name": "cloud-utils-growpart", + "epoch": 0, + "version": "0.31", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cloud-utils-growpart-0.31-1.el8.noarch.rpm", + "checksum": "sha256:7800dfd0d4769a898d11db330fdb5b19614533628a45fe91cce406d6cd1f0c71", + "check_gpg": true + }, + { + "name": "geolite2-city", + "epoch": 0, + "version": "20180605", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-city-20180605-1.el8.noarch.rpm", + "checksum": "sha256:cad86777bcb265db0da766952ff63e8d33f0fd4f3b90b22d0a1da587a785db44", + "check_gpg": true + }, + { + "name": "geolite2-country", + "epoch": 0, + "version": "20180605", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-country-20180605-1.el8.noarch.rpm", + "checksum": "sha256:67419432fe7d373f8e5ddaa7b0dd1c25389608bf2f4ee76dbabcc2d96eb8c9d0", + "check_gpg": true + }, + { + "name": "langpacks-en", + "epoch": 0, + "version": "1.0", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/langpacks-en-1.0-12.el8.noarch.rpm", + "checksum": "sha256:c99db07c2548246f6b2ec98c1d2b536e40b2f4dbba39f3430044868a27985732", + "check_gpg": true + }, + { + "name": "libatasmart", + "epoch": 0, + "version": "0.19", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libatasmart-0.19-14.el8.x86_64.rpm", + "checksum": "sha256:e1133a81512bfba8d4bf06bc12aafee7fe13d6319fc8690b81e6f46d978930eb", + "check_gpg": true + }, + { + "name": "libblockdev", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:3cf4fcd2fe43e6477d5f1c05167c669c247dcbeea1ab37bf3b7d42dcab482565", + "check_gpg": true + }, + { + "name": "libblockdev-crypto", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-crypto-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:226bb890cc85bfc60d874a9cb13cb7f7f1e90d90308c7726e25e14cee5487e66", + "check_gpg": true + }, + { + "name": "libblockdev-fs", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-fs-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:142c67cdc69366820a7fc7567e40567b545b52f279d1ff992e4787d3c1ea4956", + "check_gpg": true + }, + { + "name": "libblockdev-loop", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-loop-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:d29207af6ff12bec1a5b9712550f2faf7efbff75c597cc2e84b6c9d0dfe2de68", + "check_gpg": true + }, + { + "name": "libblockdev-mdraid", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-mdraid-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:ced1d02dd424b1d087347d452420e17ba83af2b926041c794471798dfa5f5868", + "check_gpg": true + }, + { + "name": "libblockdev-part", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-part-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:e308e1ebc85889742a002fd9892d71894fd6fae473320fbc7b1ffb94248602cd", + "check_gpg": true + }, + { + "name": "libblockdev-swap", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-swap-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:8d3bdefac6c0f39e66e092d62b37efa3076976ae66def1f9dd1f217022406efa", + "check_gpg": true + }, + { + "name": "libblockdev-utils", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-utils-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:be0181770c94141852b6bb618baf56e7b8df9f70524b0c2e0e391e550285231f", + "check_gpg": true + }, + { + "name": "libbytesize", + "epoch": 0, + "version": "1.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libbytesize-1.4-3.el8.x86_64.rpm", + "checksum": "sha256:d1cc79976965be3fe769cb8c23a281064816eaa195caf6057b8d1da0e9ff7ae5", + "check_gpg": true + }, + { + "name": "libestr", + "epoch": 0, + "version": "0.1.10", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libestr-0.1.10-1.el8.x86_64.rpm", + "checksum": "sha256:7bc2e2a25b04b52a4ec5de2858e75eb07f16495d4de5f7ce926777130302cfe3", + "check_gpg": true + }, + { + "name": "libfastjson", + "epoch": 0, + "version": "0.99.8", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libfastjson-0.99.8-2.el8.x86_64.rpm", + "checksum": "sha256:105beb1a237e66802e64e620f79b357dfc8f3bb8952ac2f293548f1d68ca40b1", + "check_gpg": true + }, + { + "name": "libmaxminddb", + "epoch": 0, + "version": "1.2.0", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libmaxminddb-1.2.0-10.el8.x86_64.rpm", + "checksum": "sha256:19ca7ab9cb2e39ec452ed1424f828ec464266094e31903301680d5a5d0e2ac2c", + "check_gpg": true + }, + { + "name": "libudisks2", + "epoch": 0, + "version": "2.9.0", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libudisks2-2.9.0-6.el8.x86_64.rpm", + "checksum": "sha256:1824bc3233b76fabb2305d11bd9bc905cb8e8d7f44006f253164b64808be4b39", + "check_gpg": true + }, + { + "name": "libxkbcommon", + "epoch": 0, + "version": "0.9.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxkbcommon-0.9.1-1.el8.x86_64.rpm", + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "name": "nspr", + "epoch": 0, + "version": "4.25.0", + "release": "2.el8_2", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nspr-4.25.0-2.el8_2.x86_64.rpm", + "checksum": "sha256:34321e09964f724b712ed709115f794b1953f4a4d472d655bec0993d27c51a22", + "check_gpg": true + }, + { + "name": "nss", + "epoch": 0, + "version": "3.53.1", + "release": "17.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-3.53.1-17.el8_3.x86_64.rpm", + "checksum": "sha256:c11eba3a7ae0ee7ceaea4bbf78edf9a1c3c5d9629b3f40167f5fb8004b2c19a0", + "check_gpg": true + }, + { + "name": "nss-softokn", + "epoch": 0, + "version": "3.53.1", + "release": "17.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-softokn-3.53.1-17.el8_3.x86_64.rpm", + "checksum": "sha256:2e0b39dbf3b7e68a06f321a04797d4e521b9b484ffc8d6d53f7662613e077065", + "check_gpg": true + }, + { + "name": "nss-softokn-freebl", + "epoch": 0, + "version": "3.53.1", + "release": "17.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-softokn-freebl-3.53.1-17.el8_3.x86_64.rpm", + "checksum": "sha256:cff4bc30873c62698e4bc2f519bb0aa6814534d7ce99f1ba757dd345b881505f", + "check_gpg": true + }, + { + "name": "nss-sysinit", + "epoch": 0, + "version": "3.53.1", + "release": "17.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-sysinit-3.53.1-17.el8_3.x86_64.rpm", + "checksum": "sha256:71fbed9d1b1f6965b42a5c87c98732bed84a8a2efb43c2218b4d1c59e9eaf190", + "check_gpg": true + }, + { + "name": "nss-util", + "epoch": 0, + "version": "3.53.1", + "release": "17.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-util-3.53.1-17.el8_3.x86_64.rpm", + "checksum": "sha256:947fee92d0c147d832bbb3ab53e0b96817d03c38260429a4ff01856324b160da", + "check_gpg": true + }, + { + "name": "pinentry", + "epoch": 0, + "version": "1.1.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pinentry-1.1.0-2.el8.x86_64.rpm", + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "name": "python3-babel", + "epoch": 0, + "version": "2.5.1", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-babel-2.5.1-5.el8.noarch.rpm", + "checksum": "sha256:9dbf3ceb7de5a727f1a36edd5add73dcd96c83f24afc81d78e254b518551da96", + "check_gpg": true + }, + { + "name": "python3-jinja2", + "epoch": 0, + "version": "2.10.1", + "release": "2.el8_0", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jinja2-2.10.1-2.el8_0.noarch.rpm", + "checksum": "sha256:5f4f256128dba88a13599d6458908c24c0e9c18d8979ae44bf5734da8e7cab70", + "check_gpg": true + }, + { + "name": "python3-jsonpatch", + "epoch": 0, + "version": "1.21", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonpatch-1.21-2.el8.noarch.rpm", + "checksum": "sha256:85eb614fc608f3b3f4bbd08d4a3b0ff6af188677ea4e009be021680c521cedae", + "check_gpg": true + }, + { + "name": "python3-jsonpointer", + "epoch": 0, + "version": "1.10", + "release": "11.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonpointer-1.10-11.el8.noarch.rpm", + "checksum": "sha256:60b0cbc5e435be346bb06f45f3336f8936d7362022d8bceda80ff16bc3fb7dd2", + "check_gpg": true + }, + { + "name": "python3-jsonschema", + "epoch": 0, + "version": "2.6.0", + "release": "4.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonschema-2.6.0-4.el8.noarch.rpm", + "checksum": "sha256:0feac495306bbe6e3149a352025bea8d23cda512859a230cbd3f510cf48caaf7", + "check_gpg": true + }, + { + "name": "python3-markupsafe", + "epoch": 0, + "version": "0.23", + "release": "19.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-markupsafe-0.23-19.el8.x86_64.rpm", + "checksum": "sha256:9c7a5a6f73c8e32559226c54d229cb25304a81a853af22d9f829b9bb09b21f53", + "check_gpg": true + }, + { + "name": "python3-prettytable", + "epoch": 0, + "version": "0.7.2", + "release": "14.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-prettytable-0.7.2-14.el8.noarch.rpm", + "checksum": "sha256:1b53c868277dec628058b31b1a8a8a2ccd8efe832ce9694805b5f82564136eb3", + "check_gpg": true + }, + { + "name": "python3-pyserial", + "epoch": 0, + "version": "3.1.1", + "release": "8.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pyserial-3.1.1-8.el8.noarch.rpm", + "checksum": "sha256:82ce159a9e4e4b6b4fdce9ad954aa507f67108430bd261a4dcd826e44d0152a4", + "check_gpg": true + }, + { + "name": "python3-pytz", + "epoch": 0, + "version": "2017.2", + "release": "9.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pytz-2017.2-9.el8.noarch.rpm", + "checksum": "sha256:0edde19e0c027c8cff31b82e1f4b0b198c00bf924047fcf4dd610a7d4965ab52", + "check_gpg": true + }, + { + "name": "python3-unbound", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-unbound-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "name": "rsyslog", + "epoch": 0, + "version": "8.1911.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/rsyslog-8.1911.0-7.el8.x86_64.rpm", + "checksum": "sha256:ca82090f18d47e454cc512e832bf3ec771edf65299e3c1d56d5df9fab0428869", + "check_gpg": true + }, + { + "name": "udisks2", + "epoch": 0, + "version": "2.9.0", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/udisks2-2.9.0-6.el8.x86_64.rpm", + "checksum": "sha256:98f622a37cb22857fdce63d8c97d9711c74cdbd3451e588e2b519532db55a5a2", + "check_gpg": true + }, + { + "name": "unbound-libs", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/unbound-libs-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "name": "volume_key-libs", + "epoch": 0, + "version": "0.3.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/volume_key-libs-0.3.11-5.el8.x86_64.rpm", + "checksum": "sha256:5c0cf0adf7a3ad24ddde58f298ebf4ce741bccdfc8eff0103644115c837f80d6", + "check_gpg": true + }, + { + "name": "xkeyboard-config", + "epoch": 0, + "version": "2.28", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xkeyboard-config-2.28-1.el8.noarch.rpm", + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ], + "checksums": { + "0": "sha256:06fa6273454f85c58ca743a0ef0202bed4cac267393049dc447839cdb39f4a54", + "1": "sha256:5b16e44261a7beffd5d7bf961fe269da407bd57abb1faac407c46a81969dfd63" + } + }, + "image-info": { + "boot-environment": { + "kernelopts": "root=UUID=0194fdc2-fa2f-4cc0-81d3-ff12045b73c8 console=ttyS0,115200n8 console=tty0 net.ifnames=0 rd.blacklist=nouveau nvme_core.io_timeout=4294967295 crashkernel=auto" + }, + "bootloader": "grub", + "bootmenu": [ + { + "grub_arg": "--unrestricted", + "grub_class": "kernel", + "grub_users": "$grub_users", + "id": "centos-20210203204355-4.18.0-277.el8.x86_64", + "initrd": "/boot/initramfs-4.18.0-277.el8.x86_64.img $tuned_initrd", + "linux": "/boot/vmlinuz-4.18.0-277.el8.x86_64", + "options": "$kernelopts $tuned_params", + "title": "CentOS Stream (4.18.0-277.el8.x86_64) 8", + "version": "4.18.0-277.el8.x86_64" + } + ], + "default-target": "multi-user.target", + "fstab": [ + [ + "UUID=0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "/", + "xfs", + "defaults", + "0", + "0" + ], + [ + "UUID=7B77-95E7", + "/boot/efi", + "vfat", + "defaults,uid=0,gid=0,umask=077,shortname=winnt", + "0", + "2" + ] + ], + "groups": [ + "adm:x:4:", + "audio:x:63:", + "bin:x:1:", + "cdrom:x:11:", + "chrony:x:992:", + "daemon:x:2:", + "dbus:x:81:", + "dialout:x:18:", + "disk:x:6:", + "floppy:x:19:", + "ftp:x:50:", + "games:x:20:", + "input:x:999:", + "kmem:x:9:", + "kvm:x:36:", + "lock:x:54:", + "lp:x:7:", + "mail:x:12:", + "man:x:15:", + "mem:x:8:", + "nobody:x:65534:", + "polkitd:x:996:", + "render:x:998:", + "root:x:0:", + "ssh_keys:x:995:", + "sshd:x:74:", + "sssd:x:993:", + "sys:x:3:", + "systemd-coredump:x:997:", + "systemd-journal:x:190:", + "systemd-resolve:x:193:", + "tape:x:33:", + "tss:x:59:", + "tty:x:5:", + "unbound:x:994:", + "users:x:100:", + "utempter:x:35:", + "utmp:x:22:", + "video:x:39:", + "wheel:x:10:" + ], + "image-format": "raw", + "os-release": { + "ANSI_COLOR": "0;31", + "BUG_REPORT_URL": "https://bugzilla.redhat.com/", + "CPE_NAME": "cpe:/o:centos:centos:8", + "HOME_URL": "https://centos.org/", + "ID": "centos", + "ID_LIKE": "rhel fedora", + "NAME": "CentOS Stream", + "PLATFORM_ID": "platform:el8", + "PRETTY_NAME": "CentOS Stream 8", + "REDHAT_SUPPORT_PRODUCT": "Red Hat Enterprise Linux 8", + "REDHAT_SUPPORT_PRODUCT_VERSION": "CentOS Stream", + "VERSION": "8", + "VERSION_ID": "8" + }, + "packages": [ + "ModemManager-glib-1.10.8-2.el8.x86_64", + "NetworkManager-1.30.0-0.9.el8.x86_64", + "NetworkManager-libnm-1.30.0-0.9.el8.x86_64", + "NetworkManager-team-1.30.0-0.9.el8.x86_64", + "NetworkManager-tui-1.30.0-0.9.el8.x86_64", + "acl-2.2.53-1.el8.x86_64", + "audit-3.0-0.17.20191104git1c2f876.el8.x86_64", + "audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64", + "authselect-1.2.2-1.el8.x86_64", + "authselect-libs-1.2.2-1.el8.x86_64", + "basesystem-11-5.el8.noarch", + "bash-4.4.19-14.el8.x86_64", + "bind-export-libs-9.11.26-2.el8.x86_64", + "brotli-1.0.6-3.el8.x86_64", + "bubblewrap-0.4.0-1.el8.x86_64", + "bzip2-libs-1.0.6-26.el8.x86_64", + "c-ares-1.13.0-5.el8.x86_64", + "ca-certificates-2020.2.41-80.0.el8_2.noarch", + "centos-gpg-keys-8-2.el8.noarch", + "centos-stream-release-8.4-1.el8.noarch", + "centos-stream-repos-8-2.el8.noarch", + "checkpolicy-2.9-1.el8.x86_64", + "chkconfig-1.13-2.el8.x86_64", + "chrony-3.5-1.el8.x86_64", + "cloud-init-20.3-10.el8.noarch", + "cloud-utils-growpart-0.31-1.el8.noarch", + "coreutils-8.30-8.el8.x86_64", + "coreutils-common-8.30-8.el8.x86_64", + "cpio-2.12-10.el8.x86_64", + "cracklib-2.9.6-15.el8.x86_64", + "cracklib-dicts-2.9.6-15.el8.x86_64", + "cronie-1.5.2-4.el8.x86_64", + "cronie-anacron-1.5.2-4.el8.x86_64", + "crontabs-1.11-17.20190603git.el8.noarch", + "crypto-policies-20200713-1.git51d1222.el8.noarch", + "crypto-policies-scripts-20200713-1.git51d1222.el8.noarch", + "cryptsetup-libs-2.3.3-2.el8.x86_64", + "curl-7.61.1-18.el8.x86_64", + "cyrus-sasl-lib-2.1.27-5.el8.x86_64", + "dbus-1.12.8-12.el8.x86_64", + "dbus-common-1.12.8-12.el8.noarch", + "dbus-daemon-1.12.8-12.el8.x86_64", + "dbus-glib-0.110-2.el8.x86_64", + "dbus-libs-1.12.8-12.el8.x86_64", + "dbus-tools-1.12.8-12.el8.x86_64", + "device-mapper-1.02.175-3.el8.x86_64", + "device-mapper-libs-1.02.175-3.el8.x86_64", + "dhcp-client-4.3.6-44.0.1.el8.x86_64", + "dhcp-common-4.3.6-44.0.1.el8.noarch", + "dhcp-libs-4.3.6-44.0.1.el8.x86_64", + "diffutils-3.6-6.el8.x86_64", + "dmidecode-3.2-8.el8.x86_64", + "dnf-4.4.2-5.el8.noarch", + "dnf-data-4.4.2-5.el8.noarch", + "dnf-plugins-core-4.0.18-3.el8.noarch", + "dosfstools-4.1-6.el8.x86_64", + "dracut-049-133.git20210112.el8.x86_64", + "dracut-config-generic-049-133.git20210112.el8.x86_64", + "dracut-network-049-133.git20210112.el8.x86_64", + "dracut-squash-049-133.git20210112.el8.x86_64", + "e2fsprogs-1.45.6-1.el8.x86_64", + "e2fsprogs-libs-1.45.6-1.el8.x86_64", + "efi-filesystem-3-3.el8.noarch", + "efivar-libs-37-4.el8.x86_64", + "elfutils-debuginfod-client-0.182-3.el8.x86_64", + "elfutils-default-yama-scope-0.182-3.el8.noarch", + "elfutils-libelf-0.182-3.el8.x86_64", + "elfutils-libs-0.182-3.el8.x86_64", + "ethtool-5.8-5.el8.x86_64", + "expat-2.2.5-4.el8.x86_64", + "file-5.33-16.el8.x86_64", + "file-libs-5.33-16.el8.x86_64", + "filesystem-3.8-4.el8.x86_64", + "findutils-4.6.0-20.el8.x86_64", + "freetype-2.9.1-5.el8.x86_64", + "fuse-libs-2.9.7-12.el8.x86_64", + "fwupd-1.5.5-1.el8.x86_64", + "gawk-4.2.1-2.el8.x86_64", + "gdbm-1.18-1.el8.x86_64", + "gdbm-libs-1.18-1.el8.x86_64", + "gdisk-1.0.3-6.el8.x86_64", + "geolite2-city-20180605-1.el8.noarch", + "geolite2-country-20180605-1.el8.noarch", + "gettext-0.19.8.1-17.el8.x86_64", + "gettext-libs-0.19.8.1-17.el8.x86_64", + "glib2-2.56.4-9.el8.x86_64", + "glibc-2.28-147.el8.x86_64", + "glibc-common-2.28-147.el8.x86_64", + "glibc-langpack-en-2.28-147.el8.x86_64", + "gmp-6.1.2-10.el8.x86_64", + "gnupg2-2.2.20-2.el8.x86_64", + "gnupg2-smime-2.2.20-2.el8.x86_64", + "gnutls-3.6.14-7.el8_3.x86_64", + "gobject-introspection-1.56.1-1.el8.x86_64", + "gpg-pubkey-8483c65d-5ccc5b19", + "gpgme-1.13.1-7.el8.x86_64", + "grep-3.1-6.el8.x86_64", + "groff-base-1.22.3-18.el8.x86_64", + "grub2-common-2.02-93.el8.noarch", + "grub2-efi-x64-2.02-93.el8.x86_64", + "grub2-pc-2.02-93.el8.x86_64", + "grub2-pc-modules-2.02-93.el8.noarch", + "grub2-tools-2.02-93.el8.x86_64", + "grub2-tools-extra-2.02-93.el8.x86_64", + "grub2-tools-minimal-2.02-93.el8.x86_64", + "grubby-8.40-41.el8.x86_64", + "gzip-1.9-12.el8.x86_64", + "hardlink-1.3-6.el8.x86_64", + "hdparm-9.54-3.el8.x86_64", + "hostname-3.20-6.el8.x86_64", + "hwdata-0.314-8.7.el8.noarch", + "ima-evm-utils-1.3.2-11.el8.x86_64", + "info-6.5-6.el8.x86_64", + "initscripts-10.00.12-1.el8.x86_64", + "ipcalc-0.2.4-4.el8.x86_64", + "iproute-5.9.0-2.el8.x86_64", + "iptables-libs-1.8.4-17.el8.x86_64", + "iputils-20180629-6.el8.x86_64", + "irqbalance-1.4.0-6.el8.x86_64", + "jansson-2.11-3.el8.x86_64", + "json-c-0.13.1-0.4.el8.x86_64", + "json-glib-1.4.4-1.el8.x86_64", + "kbd-2.0.4-10.el8.x86_64", + "kbd-legacy-2.0.4-10.el8.noarch", + "kbd-misc-2.0.4-10.el8.noarch", + "kernel-4.18.0-277.el8.x86_64", + "kernel-core-4.18.0-277.el8.x86_64", + "kernel-modules-4.18.0-277.el8.x86_64", + "kernel-tools-4.18.0-277.el8.x86_64", + "kernel-tools-libs-4.18.0-277.el8.x86_64", + "kexec-tools-2.0.20-45.el8.x86_64", + "keyutils-libs-1.5.10-6.el8.x86_64", + "kmod-25-17.el8.x86_64", + "kmod-libs-25-17.el8.x86_64", + "kpartx-0.8.4-8.el8.x86_64", + "krb5-libs-1.18.2-8.el8.x86_64", + "langpacks-en-1.0-12.el8.noarch", + "less-530-1.el8.x86_64", + "libacl-2.2.53-1.el8.x86_64", + "libarchive-3.3.3-1.el8.x86_64", + "libassuan-2.5.1-3.el8.x86_64", + "libatasmart-0.19-14.el8.x86_64", + "libattr-2.4.48-3.el8.x86_64", + "libbasicobjects-0.1.1-39.el8.x86_64", + "libblkid-2.32.1-27.el8.x86_64", + "libblockdev-2.24-5.el8.x86_64", + "libblockdev-crypto-2.24-5.el8.x86_64", + "libblockdev-fs-2.24-5.el8.x86_64", + "libblockdev-loop-2.24-5.el8.x86_64", + "libblockdev-mdraid-2.24-5.el8.x86_64", + "libblockdev-part-2.24-5.el8.x86_64", + "libblockdev-swap-2.24-5.el8.x86_64", + "libblockdev-utils-2.24-5.el8.x86_64", + "libbytesize-1.4-3.el8.x86_64", + "libcap-2.26-4.el8.x86_64", + "libcap-ng-0.7.9-5.el8.x86_64", + "libcollection-0.7.0-39.el8.x86_64", + "libcom_err-1.45.6-1.el8.x86_64", + "libcomps-0.1.11-5.el8.x86_64", + "libcroco-0.6.12-4.el8_2.1.x86_64", + "libcurl-7.61.1-18.el8.x86_64", + "libdaemon-0.14-15.el8.x86_64", + "libdb-5.3.28-40.el8.x86_64", + "libdb-utils-5.3.28-40.el8.x86_64", + "libdhash-0.5.0-39.el8.x86_64", + "libdnf-0.55.0-2.el8.x86_64", + "libedit-3.1-23.20170329cvs.el8.x86_64", + "libestr-0.1.10-1.el8.x86_64", + "libevent-2.1.8-5.el8.x86_64", + "libfastjson-0.99.8-2.el8.x86_64", + "libfdisk-2.32.1-27.el8.x86_64", + "libffi-3.1-22.el8.x86_64", + "libgcab1-1.1-1.el8.x86_64", + "libgcc-8.4.1-1.el8.x86_64", + "libgcrypt-1.8.5-4.el8.x86_64", + "libgomp-8.4.1-1.el8.x86_64", + "libgpg-error-1.31-1.el8.x86_64", + "libgudev-232-4.el8.x86_64", + "libgusb-0.3.0-1.el8.x86_64", + "libibverbs-32.0-4.el8.x86_64", + "libidn2-2.2.0-1.el8.x86_64", + "libini_config-1.3.1-39.el8.x86_64", + "libkcapi-1.2.0-2.el8.x86_64", + "libkcapi-hmaccalc-1.2.0-2.el8.x86_64", + "libksba-1.3.5-7.el8.x86_64", + "libldb-2.2.0-1.el8.x86_64", + "libmaxminddb-1.2.0-10.el8.x86_64", + "libmbim-1.20.2-1.el8.x86_64", + "libmetalink-0.1.3-7.el8.x86_64", + "libmnl-1.0.4-6.el8.x86_64", + "libmodulemd-2.9.4-2.el8.x86_64", + "libmount-2.32.1-27.el8.x86_64", + "libndp-1.7-3.el8.x86_64", + "libnfsidmap-2.3.3-41.el8.x86_64", + "libnghttp2-1.33.0-3.el8_2.1.x86_64", + "libnl3-3.5.0-1.el8.x86_64", + "libnl3-cli-3.5.0-1.el8.x86_64", + "libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64", + "libpath_utils-0.2.1-39.el8.x86_64", + "libpcap-1.9.1-5.el8.x86_64", + "libpipeline-1.5.0-2.el8.x86_64", + "libpng-1.6.34-5.el8.x86_64", + "libpsl-0.20.2-6.el8.x86_64", + "libpwquality-1.4.4-1.el8.x86_64", + "libqmi-1.24.0-1.el8.x86_64", + "libref_array-0.1.5-39.el8.x86_64", + "librepo-1.12.0-3.el8.x86_64", + "libreport-filesystem-2.9.5-15.el8.x86_64", + "libseccomp-2.4.3-1.el8.x86_64", + "libsecret-0.18.6-1.el8.x86_64", + "libselinux-2.9-5.el8.x86_64", + "libselinux-utils-2.9-5.el8.x86_64", + "libsemanage-2.9-6.el8.x86_64", + "libsepol-2.9-2.el8.x86_64", + "libsigsegv-2.11-5.el8.x86_64", + "libsmartcols-2.32.1-27.el8.x86_64", + "libsmbios-2.4.1-2.el8.x86_64", + "libsolv-0.7.16-2.el8.x86_64", + "libss-1.45.6-1.el8.x86_64", + "libssh-0.9.4-2.el8.x86_64", + "libssh-config-0.9.4-2.el8.noarch", + "libsss_autofs-2.4.0-7.el8.x86_64", + "libsss_certmap-2.4.0-7.el8.x86_64", + "libsss_idmap-2.4.0-7.el8.x86_64", + "libsss_nss_idmap-2.4.0-7.el8.x86_64", + "libsss_sudo-2.4.0-7.el8.x86_64", + "libstdc++-8.4.1-1.el8.x86_64", + "libsysfs-2.1.0-24.el8.x86_64", + "libtalloc-2.3.1-2.el8.x86_64", + "libtasn1-4.13-3.el8.x86_64", + "libtdb-1.4.3-1.el8.x86_64", + "libteam-1.31-2.el8.x86_64", + "libtevent-0.10.2-2.el8.x86_64", + "libtirpc-1.1.4-4.el8.x86_64", + "libudisks2-2.9.0-6.el8.x86_64", + "libunistring-0.9.9-3.el8.x86_64", + "libusbx-1.0.23-4.el8.x86_64", + "libuser-0.62-23.el8.x86_64", + "libutempter-1.1.6-14.el8.x86_64", + "libuuid-2.32.1-27.el8.x86_64", + "libverto-0.3.0-5.el8.x86_64", + "libxcrypt-4.1.1-4.el8.x86_64", + "libxkbcommon-0.9.1-1.el8.x86_64", + "libxml2-2.9.7-9.el8.x86_64", + "libxmlb-0.1.15-1.el8.x86_64", + "libyaml-0.1.7-5.el8.x86_64", + "libzstd-1.4.4-1.el8.x86_64", + "linux-firmware-20201218-102.git05789708.el8.noarch", + "lmdb-libs-0.9.24-1.el8.x86_64", + "logrotate-3.14.0-4.el8.x86_64", + "lshw-B.02.19.2-5.el8.x86_64", + "lsscsi-0.32-2.el8.x86_64", + "lua-libs-5.3.4-11.el8.x86_64", + "lz4-libs-1.8.3-2.el8.x86_64", + "lzo-2.08-14.el8.x86_64", + "man-db-2.7.6.1-17.el8.x86_64", + "mdadm-4.1-15.el8.x86_64", + "memstrack-0.1.11-1.el8.x86_64", + "microcode_ctl-20201112-2.el8.x86_64", + "mokutil-0.3.0-11.el8.x86_64", + "mozjs60-60.9.0-4.el8.x86_64", + "mpfr-3.1.6-1.el8.x86_64", + "ncurses-6.1-7.20180224.el8.x86_64", + "ncurses-base-6.1-7.20180224.el8.noarch", + "ncurses-libs-6.1-7.20180224.el8.x86_64", + "net-tools-2.0-0.52.20160912git.el8.x86_64", + "nettle-3.4.1-2.el8.x86_64", + "newt-0.52.20-11.el8.x86_64", + "npth-1.5-4.el8.x86_64", + "nspr-4.25.0-2.el8_2.x86_64", + "nss-3.53.1-17.el8_3.x86_64", + "nss-softokn-3.53.1-17.el8_3.x86_64", + "nss-softokn-freebl-3.53.1-17.el8_3.x86_64", + "nss-sysinit-3.53.1-17.el8_3.x86_64", + "nss-util-3.53.1-17.el8_3.x86_64", + "numactl-libs-2.0.12-11.el8.x86_64", + "openldap-2.4.46-16.el8.x86_64", + "openssh-8.0p1-5.el8.x86_64", + "openssh-clients-8.0p1-5.el8.x86_64", + "openssh-server-8.0p1-5.el8.x86_64", + "openssl-1.1.1g-12.el8_3.x86_64", + "openssl-libs-1.1.1g-12.el8_3.x86_64", + "openssl-pkcs11-0.4.10-2.el8.x86_64", + "os-prober-1.74-6.el8.x86_64", + "p11-kit-0.23.22-1.el8.x86_64", + "p11-kit-trust-0.23.22-1.el8.x86_64", + "pam-1.3.1-14.el8.x86_64", + "parted-3.2-38.el8.x86_64", + "passwd-0.80-3.el8.x86_64", + "pciutils-3.7.0-1.el8.x86_64", + "pciutils-libs-3.7.0-1.el8.x86_64", + "pcre-8.42-4.el8.x86_64", + "pcre2-10.32-2.el8.x86_64", + "pigz-2.4-4.el8.x86_64", + "pinentry-1.1.0-2.el8.x86_64", + "platform-python-3.6.8-36.el8.x86_64", + "platform-python-pip-9.0.3-19.el8.noarch", + "platform-python-setuptools-39.2.0-6.el8.noarch", + "policycoreutils-2.9-12.el8.x86_64", + "polkit-0.115-11.el8.x86_64", + "polkit-libs-0.115-11.el8.x86_64", + "polkit-pkla-compat-0.1-12.el8.x86_64", + "popt-1.18-1.el8.x86_64", + "prefixdevname-0.1.0-6.el8.x86_64", + "procps-ng-3.3.15-6.el8.x86_64", + "publicsuffix-list-dafsa-20180723-1.el8.noarch", + "python3-audit-3.0-0.17.20191104git1c2f876.el8.x86_64", + "python3-babel-2.5.1-5.el8.noarch", + "python3-cffi-1.11.5-5.el8.x86_64", + "python3-chardet-3.0.4-7.el8.noarch", + "python3-configobj-5.0.6-11.el8.noarch", + "python3-cryptography-3.2.1-3.el8.x86_64", + "python3-dateutil-2.6.1-6.el8.noarch", + "python3-dbus-1.2.4-15.el8.x86_64", + "python3-decorator-4.2.1-2.el8.noarch", + "python3-dnf-4.4.2-5.el8.noarch", + "python3-dnf-plugins-core-4.0.18-3.el8.noarch", + "python3-gobject-base-3.28.3-2.el8.x86_64", + "python3-gpg-1.13.1-7.el8.x86_64", + "python3-hawkey-0.55.0-2.el8.x86_64", + "python3-idna-2.5-5.el8.noarch", + "python3-jinja2-2.10.1-2.el8_0.noarch", + "python3-jsonpatch-1.21-2.el8.noarch", + "python3-jsonpointer-1.10-11.el8.noarch", + "python3-jsonschema-2.6.0-4.el8.noarch", + "python3-jwt-1.6.1-2.el8.noarch", + "python3-libcomps-0.1.11-5.el8.x86_64", + "python3-libdnf-0.55.0-2.el8.x86_64", + "python3-libs-3.6.8-36.el8.x86_64", + "python3-libselinux-2.9-5.el8.x86_64", + "python3-libsemanage-2.9-6.el8.x86_64", + "python3-linux-procfs-0.6.3-1.el8.noarch", + "python3-markupsafe-0.23-19.el8.x86_64", + "python3-oauthlib-2.1.0-1.el8.noarch", + "python3-perf-4.18.0-277.el8.x86_64", + "python3-pip-wheel-9.0.3-19.el8.noarch", + "python3-ply-3.9-9.el8.noarch", + "python3-policycoreutils-2.9-12.el8.noarch", + "python3-prettytable-0.7.2-14.el8.noarch", + "python3-pycparser-2.14-14.el8.noarch", + "python3-pyserial-3.1.1-8.el8.noarch", + "python3-pysocks-1.6.8-3.el8.noarch", + "python3-pytz-2017.2-9.el8.noarch", + "python3-pyudev-0.21.0-7.el8.noarch", + "python3-pyyaml-3.12-12.el8.x86_64", + "python3-requests-2.20.0-2.1.el8_1.noarch", + "python3-rpm-4.14.3-10.el8.x86_64", + "python3-schedutils-0.6-6.el8.x86_64", + "python3-setools-4.3.0-2.el8.x86_64", + "python3-setuptools-wheel-39.2.0-6.el8.noarch", + "python3-six-1.11.0-8.el8.noarch", + "python3-syspurpose-1.28.10-1.el8.x86_64", + "python3-unbound-1.7.3-15.el8.x86_64", + "python3-urllib3-1.24.2-5.el8.noarch", + "rdma-core-32.0-4.el8.x86_64", + "readline-7.0-10.el8.x86_64", + "rootfiles-8.1-22.el8.noarch", + "rpm-4.14.3-10.el8.x86_64", + "rpm-build-libs-4.14.3-10.el8.x86_64", + "rpm-libs-4.14.3-10.el8.x86_64", + "rpm-plugin-selinux-4.14.3-10.el8.x86_64", + "rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64", + "rsync-3.1.3-12.el8.x86_64", + "rsyslog-8.1911.0-7.el8.x86_64", + "sed-4.5-2.el8.x86_64", + "selinux-policy-3.14.3-62.el8.noarch", + "selinux-policy-targeted-3.14.3-62.el8.noarch", + "setup-2.12.2-6.el8.noarch", + "sg3_utils-1.44-5.el8.x86_64", + "sg3_utils-libs-1.44-5.el8.x86_64", + "shadow-utils-4.6-12.el8.x86_64", + "shared-mime-info-1.9-3.el8.x86_64", + "shim-x64-15-15.el8_2.x86_64", + "slang-2.3.2-3.el8.x86_64", + "snappy-1.1.8-3.el8.x86_64", + "sqlite-libs-3.26.0-13.el8.x86_64", + "squashfs-tools-4.3-19.el8.x86_64", + "sssd-client-2.4.0-7.el8.x86_64", + "sssd-common-2.4.0-7.el8.x86_64", + "sssd-kcm-2.4.0-7.el8.x86_64", + "sssd-nfs-idmap-2.4.0-7.el8.x86_64", + "sudo-1.8.29-7.el8.x86_64", + "systemd-239-44.el8.x86_64", + "systemd-libs-239-44.el8.x86_64", + "systemd-pam-239-44.el8.x86_64", + "systemd-udev-239-44.el8.x86_64", + "tar-1.30-5.el8.x86_64", + "teamd-1.31-2.el8.x86_64", + "tpm2-tss-2.3.2-3.el8.x86_64", + "trousers-0.3.15-1.el8.x86_64", + "trousers-lib-0.3.15-1.el8.x86_64", + "tuned-2.15.0-1.el8.noarch", + "tzdata-2021a-1.el8.noarch", + "udisks2-2.9.0-6.el8.x86_64", + "unbound-libs-1.7.3-15.el8.x86_64", + "util-linux-2.32.1-27.el8.x86_64", + "vim-minimal-8.0.1763-15.el8.x86_64", + "virt-what-1.18-6.el8.x86_64", + "volume_key-libs-0.3.11-5.el8.x86_64", + "which-2.21-12.el8.x86_64", + "xfsprogs-5.0.0-8.el8.x86_64", + "xkeyboard-config-2.28-1.el8.noarch", + "xz-5.2.4-3.el8.x86_64", + "xz-libs-5.2.4-3.el8.x86_64", + "yum-4.4.2-5.el8.noarch", + "yum-utils-4.0.18-3.el8.noarch", + "zlib-1.2.11-17.el8.x86_64" + ], + "partition-table": "gpt", + "partition-table-id": "D209C89E-EA5E-4FBD-B161-B461CCE297E0", + "partitions": [ + { + "bootable": false, + "fstype": null, + "label": null, + "partuuid": "FAC7F1FB-3E8D-4137-A512-961DE09A5549", + "size": 1048576, + "start": 1048576, + "type": "21686148-6449-6E6F-744E-656564454649", + "uuid": null + }, + { + "bootable": false, + "fstype": "vfat", + "label": null, + "partuuid": "68B2905B-DF3E-4FB3-80FA-49D1E773AA33", + "size": 104857600, + "start": 2097152, + "type": "C12A7328-F81F-11D2-BA4B-00A0C93EC93B", + "uuid": "7B77-95E7" + }, + { + "bootable": false, + "fstype": "xfs", + "label": "root", + "partuuid": "6264D520-3FB9-423F-8AB8-7A0A8E3D3562", + "size": 6335479296, + "start": 106954752, + "type": "0FC63DAF-8483-4772-8E79-3D69D8477DE4", + "uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8" + } + ], + "passwd": [ + "adm:x:3:4:adm:/var/adm:/sbin/nologin", + "bin:x:1:1:bin:/bin:/sbin/nologin", + "chrony:x:995:992::/var/lib/chrony:/sbin/nologin", + "daemon:x:2:2:daemon:/sbin:/sbin/nologin", + "dbus:x:81:81:System message bus:/:/sbin/nologin", + "ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin", + "games:x:12:100:games:/usr/games:/sbin/nologin", + "halt:x:7:0:halt:/sbin:/sbin/halt", + "lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin", + "mail:x:8:12:mail:/var/spool/mail:/sbin/nologin", + "nobody:x:65534:65534:Kernel Overflow User:/:/sbin/nologin", + "operator:x:11:0:operator:/root:/sbin/nologin", + "polkitd:x:998:996:User for polkitd:/:/sbin/nologin", + "root:x:0:0:root:/root:/bin/bash", + "shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown", + "sshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:/sbin/nologin", + "sssd:x:996:993:User for sssd:/:/sbin/nologin", + "sync:x:5:0:sync:/sbin:/bin/sync", + "systemd-coredump:x:999:997:systemd Core Dumper:/:/sbin/nologin", + "systemd-resolve:x:193:193:systemd Resolver:/:/sbin/nologin", + "tss:x:59:59:Account used for TPM access:/dev/null:/sbin/nologin", + "unbound:x:997:994:Unbound DNS resolver:/etc/unbound:/sbin/nologin" + ], + "rpm-verify": { + "changed": { + "/boot/efi/EFI/centos/grubx64.efi": ".......T.", + "/etc/crypto-policies/back-ends/nss.config": ".M.......", + "/etc/fwupd/remotes.d/dell-esrt.conf": ".......T.", + "/etc/fwupd/remotes.d/lvfs-testing.conf": ".......T.", + "/etc/fwupd/remotes.d/lvfs.conf": ".......T.", + "/etc/fwupd/remotes.d/vendor-directory.conf": ".......T.", + "/etc/fwupd/remotes.d/vendor.conf": ".......T.", + "/etc/machine-id": ".M.......", + "/proc": ".M.......", + "/sys": ".M.......", + "/var/log/lastlog": ".M....G..", + "/var/spool/anacron/cron.daily": ".M.......", + "/var/spool/anacron/cron.monthly": ".M.......", + "/var/spool/anacron/cron.weekly": ".M......." + }, + "missing": [] + }, + "services-disabled": [ + "arp-ethers.service", + "chrony-dnssrv@.timer", + "chrony-wait.service", + "console-getty.service", + "cpupower.service", + "ctrl-alt-del.target", + "debug-shell.service", + "exit.target", + "fstrim.timer", + "fwupd-refresh.timer", + "halt.target", + "kexec.target", + "mdcheck_continue.timer", + "mdcheck_start.timer", + "mdmonitor-oneshot.timer", + "poweroff.target", + "rdisc.service", + "reboot.target", + "remote-cryptsetup.target", + "runlevel0.target", + "runlevel6.target", + "serial-getty@.service", + "sshd-keygen@.service", + "sshd.socket", + "sssd-autofs.socket", + "sssd-nss.socket", + "sssd-pac.socket", + "sssd-pam-priv.socket", + "sssd-pam.socket", + "sssd-ssh.socket", + "sssd-sudo.socket", + "systemd-resolved.service", + "tcsd.service", + "tmp.mount" + ], + "services-enabled": [ + "NetworkManager-dispatcher.service", + "NetworkManager-wait-online.service", + "NetworkManager.service", + "auditd.service", + "autovt@.service", + "chronyd.service", + "cloud-config.service", + "cloud-final.service", + "cloud-init-local.service", + "cloud-init.service", + "crond.service", + "dbus-org.freedesktop.nm-dispatcher.service", + "dnf-makecache.timer", + "getty@.service", + "import-state.service", + "irqbalance.service", + "kdump.service", + "loadmodules.service", + "mdmonitor.service", + "microcode.service", + "nis-domainname.service", + "remote-fs.target", + "rsyslog.service", + "selinux-autorelabel-mark.service", + "sshd.service", + "sssd-kcm.socket", + "sssd.service", + "syslog.service", + "tuned.service", + "udisks2.service", + "unbound-anchor.timer" + ], + "sysconfig": { + "kernel": { + "DEFAULTKERNEL": "kernel", + "UPDATEDEFAULT": "yes" + }, + "network": { + "NETWORKING": "yes", + "NOZEROCONF": "yes" + } + }, + "timezone": "New_York" + } +} \ No newline at end of file diff --git a/test/data/manifests/centos_8-x86_64-openstack-boot.json b/test/data/manifests/centos_8-x86_64-openstack-boot.json new file mode 100644 index 000000000..c389c6e0b --- /dev/null +++ b/test/data/manifests/centos_8-x86_64-openstack-boot.json @@ -0,0 +1,11671 @@ +{ + "boot": { + "type": "openstack" + }, + "compose-request": { + "distro": "centos-8", + "arch": "x86_64", + "image-type": "openstack", + "repositories": [ + { + "name": "baseos", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + }, + { + "name": "appstream", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + } + ], + "filename": "disk.qcow2", + "blueprint": { + "name": "openstack-boot-test", + "description": "Image for boot test", + "packages": [], + "modules": [], + "groups": [], + "customizations": { + "user": [ + { + "name": "redhat", + "key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC61wMCjOSHwbVb4VfVyl5sn497qW4PsdQ7Ty7aD6wDNZ/QjjULkDV/yW5WjDlDQ7UqFH0Sr7vywjqDizUAqK7zM5FsUKsUXWHWwg/ehKg8j9xKcMv11AkFoUoujtfAujnKODkk58XSA9whPr7qcw3vPrmog680pnMSzf9LC7J6kXfs6lkoKfBh9VnlxusCrw2yg0qI1fHAZBLPx7mW6+me71QZsS6sVz8v8KXyrXsKTdnF50FjzHcK9HXDBtSJS5wA3fkcRYymJe0o6WMWNdgSRVpoSiWaHHmFgdMUJaYoCfhXzyl7LtNb3Q+Sveg+tJK7JaRXBLMUllOlJ6ll5Hod root@localhost" + } + ] + } + } + }, + "manifest": { + "sources": { + "org.osbuild.files": { + "urls": { + "sha256:003ee19ec5b88de212c3246bdfdb3e97a9910a25a219fd7cf5030b7bc666fea9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-requests-2.20.0-2.1.el8_1.noarch.rpm" + }, + "sha256:0064a3aeff41fb7345c061956c35e4b9d0b8802954e717491fb6eb51028d22fd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lmdb-libs-0.9.24-1.el8.x86_64.rpm" + }, + "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libs-0.182-3.el8.x86_64.rpm" + }, + "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libyaml-0.1.7-5.el8.x86_64.rpm" + }, + "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnghttp2-1.33.0-3.el8_2.1.x86_64.rpm" + }, + "sha256:017e78c5e23f98d6ee299255fc7be5381dba63d169e3f5dcb1de9d21b5d30ba5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-syspurpose-1.28.10-1.el8.x86_64.rpm" + }, + "sha256:01b808f1ea9299c37c80164d05ef1a5c45e05d53bcbd451b4d52e69a47959bc2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl6000g2a-firmware-18.168.6.1-102.el8.1.noarch.rpm" + }, + "sha256:0221e6e3671c2bd130e9519a7b352404b7e510584b4707d38e1a733e19c7f74f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxcb-1.13.1-1.el8.x86_64.rpm" + }, + "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsigsegv-2.11-5.el8.x86_64.rpm" + }, + "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-5.2.4-3.el8.x86_64.rpm" + }, + "sha256:03b50a4ea5cf5655c67e2358fabb6e563eec4e7929e7fc6c4e92c92694f60fa0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mozjs60-60.9.0-4.el8.x86_64.rpm" + }, + "sha256:04bcd912af3b987311c2dab6331b65c0d9223c312c4b0654649d821a713133be": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/qemu-guest-agent-4.2.0-35.module_el8.4.0+547+a85d02ba.x86_64.rpm" + }, + "sha256:0560d3b3e915221aad94ddf83169bd680b1f0da9aa8ec8e9360bcb8fe071483e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mdadm-4.1-15.el8.x86_64.rpm" + }, + "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-5.33-16.el8.x86_64.rpm" + }, + "sha256:066f254f9ac7712b44214816de907a87eb8dfd0d2ea9570a7513db9a6617ba26": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dbus-1.2.4-15.el8.x86_64.rpm" + }, + "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-2.0.4-10.el8.x86_64.rpm" + }, + "sha256:078fa234177ae5ae2736c878aa2a2f8ecccf4c7772ab4ad19a2d6ba4f34e8631": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl1000-firmware-39.31.5.1-102.el8.1.noarch.rpm" + }, + "sha256:07ed1209e898552e6aeac0e6d148271d562c576f7d903cb7a99a697643068f58": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-cffi-1.11.5-5.el8.x86_64.rpm" + }, + "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.182-3.el8.noarch.rpm" + }, + "sha256:084c55bef75a2ce2ab67aa4eeb6726ca59ea6d7c2b23bc6e4084f11aac7e17f8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-client-4.3.6-44.0.1.el8.x86_64.rpm" + }, + "sha256:08b76b0af07db4d3b27776a96bb7d0dc0f02b7219569676ac79036190d731d5b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libedit-3.1-23.20170329cvs.el8.x86_64.rpm" + }, + "sha256:09128c1b70cb8ea1a9bfbc6f3314dd5a8ba0c1a1886a82cd0fbe6845d48215dc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-0.115-11.el8.x86_64.rpm" + }, + "sha256:0aaaaa29cc1bb4d358142db6eb7d12df9252a8166bf61956203878eed210785c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libteam-1.31-2.el8.x86_64.rpm" + }, + "sha256:0b763d946ec7da165107258469e7655707caa6fde0fff49e9e89d747e13eacc1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nftables-0.9.3-17.el8.x86_64.rpm" + }, + "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/expat-2.2.5-4.el8.x86_64.rpm" + }, + "sha256:0c6624b9391a76c0f9e54c387641bd4ed079c3bfc30e8f890afc4203955b2acb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-1.8.4-17.el8.x86_64.rpm" + }, + "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-scripts-20200713-1.git51d1222.el8.noarch.rpm" + }, + "sha256:0caa72888379f82fae1bc8f448bcf0dbaead20e92f2ef4c714afadf8979c3181": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/biosdevname-0.7.3-2.el8.x86_64.rpm" + }, + "sha256:0e9a8a0f823bf0ef948862f0ccb62353460bd07931e756c98f23908c1c526578": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-decorator-4.2.1-2.el8.noarch.rpm" + }, + "sha256:0edde19e0c027c8cff31b82e1f4b0b198c00bf924047fcf4dd610a7d4965ab52": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pytz-2017.2-9.el8.noarch.rpm" + }, + "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-25-17.el8.x86_64.rpm" + }, + "sha256:0f817ea59939bdd0311c8da8369f5c037e340443198ccef659696f67bd2ddcd1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl3160-firmware-25.30.13.0-102.el8.1.noarch.rpm" + }, + "sha256:0feac495306bbe6e3149a352025bea8d23cda512859a230cbd3f510cf48caaf7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonschema-2.6.0-4.el8.noarch.rpm" + }, + "sha256:105beb1a237e66802e64e620f79b357dfc8f3bb8952ac2f293548f1d68ca40b1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libfastjson-0.99.8-2.el8.x86_64.rpm" + }, + "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cpio-2.12-10.el8.x86_64.rpm" + }, + "sha256:11ac209220f3a53a762adebb4eeb43190e02ef7cdad2c54bcb474b206f7eb6f2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXrender-0.9.10-7.el8.x86_64.rpm" + }, + "sha256:1230ddb5d92fe538a0526e3a9f05563a111ae4ff1978fc8e18de889974b5b46c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_autofs-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:142c67cdc69366820a7fc7567e40567b545b52f279d1ff992e4787d3c1ea4956": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-fs-2.24-5.el8.x86_64.rpm" + }, + "sha256:142d4fe6236cdeac3f967517085d99649215d75026fbe00746e0c5214d7d20df": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-policycoreutils-2.9-12.el8.noarch.rpm" + }, + "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-6.1-7.20180224.el8.x86_64.rpm" + }, + "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libblkid-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:15dc15a5be210707852f051f4d09949c063a7283edc7d4ca3d4289eedcc0b509": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gobject-base-3.28.3-2.el8.x86_64.rpm" + }, + "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-libs-25-17.el8.x86_64.rpm" + }, + "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/npth-1.5-4.el8.x86_64.rpm" + }, + "sha256:16b34582f757aebb9bc7b0a0475458cbb186238b5b528ef8fdb099cb739ba383": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-squash-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:173a812d859c70f8db7b014d507c5cacb76c62ab5480c44be217f880465f42c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-server-8.0p1-5.el8.x86_64.rpm" + }, + "sha256:176ffcb2cf0fdcbdd2d8119cbd98eef60a30fdb0fb065a9382d2c95e90c79652": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-chardet-3.0.4-7.el8.noarch.rpm" + }, + "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-c-0.13.1-0.4.el8.x86_64.rpm" + }, + "sha256:1824bc3233b76fabb2305d11bd9bc905cb8e8d7f44006f253164b64808be4b39": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libudisks2-2.9.0-6.el8.x86_64.rpm" + }, + "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-2.02-93.el8.x86_64.rpm" + }, + "sha256:185f36b3af9367e6142233af358df22f23ee623697bc6a45c47091013707872e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpath_utils-0.2.1-39.el8.x86_64.rpm" + }, + "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grubby-8.40-41.el8.x86_64.rpm" + }, + "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-5.3.28-40.el8.x86_64.rpm" + }, + "sha256:19ca7ab9cb2e39ec452ed1424f828ec464266094e31903301680d5a5d0e2ac2c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libmaxminddb-1.2.0-10.el8.x86_64.rpm" + }, + "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.6-26.el8.x86_64.rpm" + }, + "sha256:1b5187e9b694e439a059be58d8de5317f04278371d1195bf000b001ba8699197": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libldb-2.2.0-1.el8.x86_64.rpm" + }, + "sha256:1b53c868277dec628058b31b1a8a8a2ccd8efe832ce9694805b5f82564136eb3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-prettytable-0.7.2-14.el8.noarch.rpm" + }, + "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/freetype-2.9.1-5.el8.x86_64.rpm" + }, + "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kpartx-0.8.4-8.el8.x86_64.rpm" + }, + "sha256:1bd969e0521820374122f5132e5998d9bd2ab185be66565a7266096297419c8e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-configobj-5.0.6-11.el8.noarch.rpm" + }, + "sha256:1c4b186665558747023a60d0d662d3780a1bc49e578062f4b70100c71ab2220c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mokutil-0.3.0-11.el8.x86_64.rpm" + }, + "sha256:1d130b0daf86899c3987d59567303ce7ae44c3273f2d8d0f0625bef7e6bad16d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-base-6.1-7.20180224.el8.noarch.rpm" + }, + "sha256:20874a9d40b12125c9e5b97fe4ccda3f94acbc03da1dec7299123901f5b56631": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-oauthlib-2.1.0-1.el8.noarch.rpm" + }, + "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libunistring-0.9.9-3.el8.x86_64.rpm" + }, + "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-libs-1.1.1g-12.el8_3.x86_64.rpm" + }, + "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-3.5.0-1.el8.x86_64.rpm" + }, + "sha256:224100af3ecfc80c416796ec02c7c4dd113a38d42349d763485f3b42f260493f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnetfilter_conntrack-1.0.6-5.el8.x86_64.rpm" + }, + "sha256:226bb890cc85bfc60d874a9cb13cb7f7f1e90d90308c7726e25e14cee5487e66": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-crypto-2.24-5.el8.x86_64.rpm" + }, + "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/acl-2.2.53-1.el8.x86_64.rpm" + }, + "sha256:233e5f78027b684e5aaac1395cc574aea3039059bf86eb4494422bc74216a396": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-slip-0.6.4-11.el8.noarch.rpm" + }, + "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:2c63399bee449fb6e921671a9bbf3356fda73f890b578820f7d926202e98a479": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libaio-0.3.112-1.el8.x86_64.rpm" + }, + "sha256:2c6dd4f21d9c4bde29f693d32e44f0d1c5dc73d78d013767df531d69bbfc6ed8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_nss_idmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:2d4cf3bd8b8046adfa869fbb5b472294469457f6445db36abcc227959be9adeb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bind-export-libs-9.11.26-2.el8.x86_64.rpm" + }, + "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/filesystem-3.8-4.el8.x86_64.rpm" + }, + "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstdc++-8.4.1-1.el8.x86_64.rpm" + }, + "sha256:2e0b39dbf3b7e68a06f321a04797d4e521b9b484ffc8d6d53f7662613e077065": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-softokn-3.53.1-17.el8_3.x86_64.rpm" + }, + "sha256:2e8d4ee76fa8678b0e4d6c0297b16f96e0116201bf96b36e8924b1b080abcddd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-cli-3.5.0-1.el8.x86_64.rpm" + }, + "sha256:2ebe28be2e0a413af31a0f49b6a2774670067cdbe48e723040b19922ae205d6b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-cryptography-3.2.1-3.el8.x86_64.rpm" + }, + "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-pkcs11-0.4.10-2.el8.x86_64.rpm" + }, + "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-libs-239-44.el8.x86_64.rpm" + }, + "sha256:30fab73ee155f03dbbd99c1e30fe59dfba4ae8fdb2e7213451ccc36d6918bfcc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmnl-1.0.4-6.el8.x86_64.rpm" + }, + "sha256:3162a4a9159994002c3c6f5fe6a12160020e8f3484f1406ff5092311ca639548": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-langpack-en-2.28-147.el8.x86_64.rpm" + }, + "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sed-4.5-2.el8.x86_64.rpm" + }, + "sha256:34321e09964f724b712ed709115f794b1953f4a4d472d655bec0993d27c51a22": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nspr-4.25.0-2.el8_2.x86_64.rpm" + }, + "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gpg-1.13.1-7.el8.x86_64.rpm" + }, + "sha256:370b74a811249b8f0bdfcd34137507f058a85196775e9d0d2bb244c100d194ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_sudo-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:377ad20c1681518bff1f40884589bddc4a692506384c7676f072ddf86ae429f9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_idmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:3793552ff28a7026a6299d8d5d8d50a467f27654524c8e438e2058040d7e6d6c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl6050-firmware-41.28.5.1-102.el8.1.noarch.rpm" + }, + "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pigz-2.4-4.el8.x86_64.rpm" + }, + "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdnf-0.55.0-2.el8.x86_64.rpm" + }, + "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libffi-3.1-22.el8.x86_64.rpm" + }, + "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-all-langpacks-2.28-147.el8.x86_64.rpm" + }, + "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-libs-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:39e27e147189e0e431527acfca51d9436149fe7c0fee1399289ea9a4862948cc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl6000-firmware-9.221.4.1-102.el8.1.noarch.rpm" + }, + "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-libs-1.18-1.el8.x86_64.rpm" + }, + "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libfdisk-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:3acd2c8b6ea534811308b3138859b5fa150b89604bb60f16b0650747039d696a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/irqbalance-1.4.0-6.el8.x86_64.rpm" + }, + "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gmp-6.1.2-10.el8.x86_64.rpm" + }, + "sha256:3c6650fd6e32fdc24b8cf1f7a85ae8232661b47bda7019e49fd0eb474683ff23": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hdparm-9.54-3.el8.x86_64.rpm" + }, + "sha256:3cd092e6e03efb4bb49b91dedd52b43f891092d04a2ff040b9f2197ec2082511": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/logrotate-3.14.0-4.el8.x86_64.rpm" + }, + "sha256:3cf4fcd2fe43e6477d5f1c05167c669c247dcbeea1ab37bf3b7d42dcab482565": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-2.24-5.el8.x86_64.rpm" + }, + "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ima-evm-utils-1.3.2-11.el8.x86_64.rpm" + }, + "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-4.4.2-5.el8.noarch.rpm" + }, + "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chkconfig-1.13-2.el8.x86_64.rpm" + }, + "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmartcols-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:3efd6a2548813167fe37718546bc768a5aa8ba59aa80edcecd8ba408bec329b0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/vim-minimal-8.0.1763-15.el8.x86_64.rpm" + }, + "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shared-mime-info-1.9-3.el8.x86_64.rpm" + }, + "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grep-3.1-6.el8.x86_64.rpm" + }, + "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/popt-1.18-1.el8.x86_64.rpm" + }, + "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dosfstools-4.1-6.el8.x86_64.rpm" + }, + "sha256:406aea2bb2a5f83cabee5a50bad08a3516776c3cd42db8b159f926624f61aa42": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libqmi-1.24.0-1.el8.x86_64.rpm" + }, + "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-release-8.4-1.el8.noarch.rpm" + }, + "sha256:41a5551a1bdf84359c3f86f08bb1e5c13c0bc1e057ae5d9f0cdf9930afeb37a1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libX11-1.6.8-4.el8.x86_64.rpm" + }, + "sha256:41d9c9f8e17c83f73e51e90f02e08927bb9c836d033815c6cdddc6da44e321f0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-libnm-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:4280042747c9027c3252d360fa33d63490aa518858849115b20162a097a37146": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kexec-tools-2.0.20-45.el8.x86_64.rpm" + }, + "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-2.2.20-2.el8.x86_64.rpm" + }, + "sha256:42edf6b8e8be5e64f7e0f9714c5b199a364393c141cb170f6272ab2e9e0e4d88": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libdrm-2.4.103-1.el8.x86_64.rpm" + }, + "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-1.2.0-2.el8.x86_64.rpm" + }, + "sha256:4302361b12eefd5574f57bf0c49c0e5bdc738eddda33634af8b35adfb53a52a1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/yum-4.4.2-5.el8.noarch.rpm" + }, + "sha256:436e93b4c072f8b6f90f41a037d017406be10c18efafc8c634f6da59bbac1105": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-libs-4.3.6-44.0.1.el8.x86_64.rpm" + }, + "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-common-2.28-147.el8.x86_64.rpm" + }, + "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-libs-6.1-7.20180224.el8.x86_64.rpm" + }, + "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tzdata-2021a-1.el8.noarch.rpm" + }, + "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcrypt-1.8.5-4.el8.x86_64.rpm" + }, + "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nettle-3.4.1-2.el8.x86_64.rpm" + }, + "sha256:44c659fb58e1ee64f5d77b35459dc43a0fded79c8a6e2278a2c9c71461792ff1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/plymouth-core-libs-0.9.4-9.20200615git1e36e30.el8.x86_64.rpm" + }, + "sha256:451d0cb6e2284578e3279b4cbb5ec98e9d98a687556c6b424adf8f1282d4ef58": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libsemanage-2.9-6.el8.x86_64.rpm" + }, + "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-libs-5.33-16.el8.x86_64.rpm" + }, + "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/unbound-libs-1.7.3-15.el8.x86_64.rpm" + }, + "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/basesystem-11-5.el8.noarch.rpm" + }, + "sha256:48bfe66d6f07baf1974355e8a3ebbc44f2d9812b823ddfff1c15f35635a8dc4e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efivar-libs-37-4.el8.x86_64.rpm" + }, + "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libacl-2.2.53-1.el8.x86_64.rpm" + }, + "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-3.14.3-62.el8.noarch.rpm" + }, + "sha256:49d972c660b9238dd1d58ab5952285b77e440820bf4563cce2b5ecd2f6ceba78": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXau-1.0.9-3.el8.x86_64.rpm" + }, + "sha256:4a28d9fa9785d7e8515deaf5e1a381a553c37b02a81a20ddd4fa202b33413ac9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-network-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:4c02e3e1808f0189269b242242468a364007a8f12c6e38afc24b599b2848b0fa": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/virt-what-1.18-6.el8.x86_64.rpm" + }, + "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-libs-3.7.0-1.el8.x86_64.rpm" + }, + "sha256:4c5c7f3773c634c054b0a5fc1b40d0a8448b44bb5aff410bfa88facf9e2059ff": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/parted-3.2-38.el8.x86_64.rpm" + }, + "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-3.7.0-1.el8.x86_64.rpm" + }, + "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtirpc-1.1.4-4.el8.x86_64.rpm" + }, + "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-config-0.9.4-2.el8.noarch.rpm" + }, + "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-rpm-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-utils-2.9-5.el8.x86_64.rpm" + }, + "sha256:508e9470ed648c28c1ef5a4a74072b188daa795f2369d10929f1ddbb5d3b5a3f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ModemManager-glib-1.10.8-2.el8.x86_64.rpm" + }, + "sha256:5092704c041bb246eaafd478bedface3f99ce8fa233ada5cf96807f67e980e42": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmbios-2.4.1-2.el8.x86_64.rpm" + }, + "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgomp-8.4.1-1.el8.x86_64.rpm" + }, + "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/curl-7.61.1-18.el8.x86_64.rpm" + }, + "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-pip-9.0.3-19.el8.noarch.rpm" + }, + "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-0.3.15-1.el8.x86_64.rpm" + }, + "sha256:525393e4d658e395c6280bd2ff4afe54999796c4722986325297ba4bfade3ea5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pyyaml-3.12-12.el8.x86_64.rpm" + }, + "sha256:53ae3ecd59ec61852cabbd039c748ed63ceb6a88da98587d4c33323ba4095154": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsysfs-2.1.0-24.el8.x86_64.rpm" + }, + "sha256:5452b96e4b57c275dd41e48d55af1ca4f77ccfb3ae403796e599a039d7382b91": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libbasicobjects-0.1.1-39.el8.x86_64.rpm" + }, + "sha256:563b3741d26b6af963fdb7b0634e0791445a707d0b6093ac71c3224299241639": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-slip-dbus-0.6.4-11.el8.noarch.rpm" + }, + "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libarchive-3.3.3-1.el8.x86_64.rpm" + }, + "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64.rpm" + }, + "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libdnf-0.55.0-2.el8.x86_64.rpm" + }, + "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.3.3-2.el8.x86_64.rpm" + }, + "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libibverbs-32.0-4.el8.x86_64.rpm" + }, + "sha256:59683b6fff42b40d3a3abbdeb928bb18b4cd84700aaeb9b3c76d37044ae94e01": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-ebtables-1.8.4-17.el8.x86_64.rpm" + }, + "sha256:59ba5bf69953a5a2e902b0f08b7187b66d84968852d46a3579a059477547d1a0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libselinux-2.9-5.el8.x86_64.rpm" + }, + "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-20200713-1.git51d1222.el8.noarch.rpm" + }, + "sha256:5b7763510f4badd05a1647e1fadf9dc49044b1cf4d754262d0d6d5ee9a8f3b12": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxmlb-0.1.15-1.el8.x86_64.rpm" + }, + "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxml2-2.9.7-9.el8.x86_64.rpm" + }, + "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-iniparse-0.4-31.el8.noarch.rpm" + }, + "sha256:5c0cf0adf7a3ad24ddde58f298ebf4ce741bccdfc8eff0103644115c837f80d6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/volume_key-libs-0.3.11-5.el8.x86_64.rpm" + }, + "sha256:5c68635cb03533a38d4a42f6547c21a1d5f9952351bb01f3cf865d2621a6e634": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lzo-2.08-14.el8.x86_64.rpm" + }, + "sha256:5c686be3533457b6ac047ac804aa54f74ee3a455047d3866dcef7a4da9d95fc6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl135-firmware-18.168.6.1-102.el8.1.noarch.rpm" + }, + "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hwdata-0.314-8.7.el8.noarch.rpm" + }, + "sha256:5e24dd39ae59ef7b7a386f28509cc80d8fabb23f0932e52ea365cf064ff76c59": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/numactl-libs-2.0.12-11.el8.x86_64.rpm" + }, + "sha256:5f445b2b2a4bdeabd555e25dfa10119d9f4e4e500d1c4492219dd8647f119ce2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libX11-common-1.6.8-4.el8.noarch.rpm" + }, + "sha256:5f45a2ff1a9c9f3d4fcae463c1ca70b1a16caccc59816ce391f064c9d8b9d8ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:5f4f256128dba88a13599d6458908c24c0e9c18d8979ae44bf5734da8e7cab70": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jinja2-2.10.1-2.el8_0.noarch.rpm" + }, + "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxcrypt-4.1.1-4.el8.x86_64.rpm" + }, + "sha256:60b0cbc5e435be346bb06f45f3336f8936d7362022d8bceda80ff16bc3fb7dd2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonpointer-1.10-11.el8.noarch.rpm" + }, + "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/info-6.5-6.el8.x86_64.rpm" + }, + "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-libs-5.2.4-3.el8.x86_64.rpm" + }, + "sha256:61fa9846a0eac2d4739fcacf618d4832ed809b5a5c5d18c30d1f216e0817f43b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/alsa-lib-1.2.4-5.el8.x86_64.rpm" + }, + "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gpgme-1.13.1-7.el8.x86_64.rpm" + }, + "sha256:6327624b7b0d726a3c95f2245619efb1df8e70023fadcc8158afed39f57859e7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdhash-0.5.0-39.el8.x86_64.rpm" + }, + "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpsl-0.20.2-6.el8.x86_64.rpm" + }, + "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsepol-2.9-2.el8.x86_64.rpm" + }, + "sha256:638eb361523ce75963c8234fdeb6df8084a62e09a7ff5b00125b507955a28b28": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/firewalld-filesystem-0.8.2-6.el8.noarch.rpm" + }, + "sha256:63a6b7765828081cc88b36d10c68621acbebf02a7c2e7d7f1a1217c8742ea6ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-1.5.2-4.el8.x86_64.rpm" + }, + "sha256:657db08f58b6776f48fda17d2b734a26918b431253f9e4eba9fd5a46d9f89aef": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-tui-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pip-wheel-9.0.3-19.el8.noarch.rpm" + }, + "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.175-3.el8.x86_64.rpm" + }, + "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20180723-1.el8.noarch.rpm" + }, + "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcom_err-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:6710a1b2f28e5ffd0fff3e74a76d84d12a602be79703e53e1a55166f2f7d141c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fwupd-1.5.5-1.el8.x86_64.rpm" + }, + "sha256:67419432fe7d373f8e5ddaa7b0dd1c25389608bf2f4ee76dbabcc2d96eb8c9d0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-country-20180605-1.el8.noarch.rpm" + }, + "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-smime-2.2.20-2.el8.x86_64.rpm" + }, + "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-0.23.22-1.el8.x86_64.rpm" + }, + "sha256:6aa1e29a4d805fc36c3196788fe78cb4552e2ebec8b3d0f8d32974e6a97025f2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-perf-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:6b740563ba5858573ff3c2d2a827aeaf6e7166178e36066755d2cde4cf8a016f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libref_array-0.1.5-39.el8.x86_64.rpm" + }, + "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsemanage-2.9-6.el8.x86_64.rpm" + }, + "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sqlite-libs-3.26.0-13.el8.x86_64.rpm" + }, + "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-libs-2.9.7-12.el8.x86_64.rpm" + }, + "sha256:6cd7444c22d56201f61fed5fd741b44cfaae18d95b811d25c5f0ffe2f8e55a8f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-kcm-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gzip-1.9-12.el8.x86_64.rpm" + }, + "sha256:6f699a1e24a6bb76904ef1a588e3b3ef116cad07a5cbad86c6cdb522c00670dd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipset-libs-7.1-1.el8.x86_64.rpm" + }, + "sha256:708a8fd75f7c6987d66e2d62de664b5a84c6f75fd4e5230e244681897b15a25d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcollection-0.7.0-39.el8.x86_64.rpm" + }, + "sha256:70b5e4e580da72969ad3bb144c15293910b7d679e195c118cee60d8320f01851": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuser-0.62-23.el8.x86_64.rpm" + }, + "sha256:7115a12fad224b469419e19ee5c0d38322f467fe7a1c441c1b0239b197baac2a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-nfs-idmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tpm2-tss-2.3.2-3.el8.x86_64.rpm" + }, + "sha256:71fbed9d1b1f6965b42a5c87c98732bed84a8a2efb43c2218b4d1c59e9eaf190": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-sysinit-3.53.1-17.el8_3.x86_64.rpm" + }, + "sha256:71fcbbec3aa152bc1427cb4d597375b008438f6259b20cfcb68fff21eef80f91": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-anacron-1.5.2-4.el8.x86_64.rpm" + }, + "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libelf-0.182-3.el8.x86_64.rpm" + }, + "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libevent-2.1.8-5.el8.x86_64.rpm" + }, + "sha256:74b842ba3352d7c4ada7e991aeadf8749f058a4d00ccc6f79f1c82a281497cb7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iputils-20180629-6.el8.x86_64.rpm" + }, + "sha256:759386be8f49257266ac614432b762b8e486a89aac5d5f7a581a0330efb59c77": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpciaccess-0.14-1.el8.x86_64.rpm" + }, + "sha256:760141c74870a93505dbba2174034287b6a97b9bb2b12c5ca2b7af056773b45b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-config-generic-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-1.18-1.el8.x86_64.rpm" + }, + "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-targeted-3.14.3-62.el8.noarch.rpm" + }, + "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-239-44.el8.x86_64.rpm" + }, + "sha256:774d214a379c0b729d7e989f9d5094fdfda7df68c1e792ba9200542032f04c91": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-libs-1.44-5.el8.x86_64.rpm" + }, + "sha256:776a182ecaab9f86c7e869db2eb2deea1f291caee701cddbd752da8cd3c57458": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/prefixdevname-0.1.0-6.el8.x86_64.rpm" + }, + "sha256:78c43d8a15ca018de1803e4baac5819e1baab1963fd31f1e44e54e8a573acbfc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-idna-2.5-5.el8.noarch.rpm" + }, + "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodulemd-2.9.4-2.el8.x86_64.rpm" + }, + "sha256:79277d872ae6035009a1a40e914ec09bca21aefcac9d73dee65880c86387f3c9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-efi-x64-2.02-93.el8.x86_64.rpm" + }, + "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openldap-2.4.46-16.el8.x86_64.rpm" + }, + "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-data-4.4.2-5.el8.noarch.rpm" + }, + "sha256:7a7963e2052bfb45b8569f64619dc5cb92fe8aeb78c754b7cf948b9784646785": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hostname-3.20-6.el8.x86_64.rpm" + }, + "sha256:7bc2e2a25b04b52a4ec5de2858e75eb07f16495d4de5f7ce926777130302cfe3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libestr-0.1.10-1.el8.x86_64.rpm" + }, + "sha256:7bfc1981e5e1fd706c23ba10090dd05fb0828df11aa98a3dc89ee8b1d2663f7a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/firewalld-0.8.2-6.el8.noarch.rpm" + }, + "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libzstd-1.4.4-1.el8.x86_64.rpm" + }, + "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-libs-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libidn2-2.2.0-1.el8.x86_64.rpm" + }, + "sha256:7e2804a4494d4179ed50c0c99da1e30c3a6abf8db889c1412b458943cff0e3e5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gobject-introspection-1.56.1-1.el8.x86_64.rpm" + }, + "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libusbx-1.0.23-4.el8.x86_64.rpm" + }, + "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:7ec48db9e1e9896f29a16cbea53cdeecdd7dd2bc278c06721ebca2e71e9dcd6d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-common-4.3.6-44.0.1.el8.noarch.rpm" + }, + "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libs-3.6.8-36.el8.x86_64.rpm" + }, + "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpcap-1.9.1-5.el8.x86_64.rpm" + }, + "sha256:7f506879c64e0bb4d98782d025f46fb9a07517487ae4cbebbb3985a98f4e2154": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pysocks-1.6.8-3.el8.noarch.rpm" + }, + "sha256:7fa8fbc576f7d54c388fa39fc3ed86bacb7964cac4544c48b3ffabcdcdc27b61": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/initscripts-10.00.12-1.el8.x86_64.rpm" + }, + "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-hmaccalc-1.2.0-2.el8.x86_64.rpm" + }, + "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/findutils-4.6.0-20.el8.x86_64.rpm" + }, + "sha256:81f7df4c736963636c9ebab7441ca4f4e41a7483ef6e7b2ac0d1bf37afe52a14": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXfixes-5.0.3-7.el8.x86_64.rpm" + }, + "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcurl-7.61.1-18.el8.x86_64.rpm" + }, + "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-0.19.8.1-17.el8.x86_64.rpm" + }, + "sha256:82ce159a9e4e4b6b4fdce9ad954aa507f67108430bd261a4dcd826e44d0152a4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pyserial-3.1.1-8.el8.noarch.rpm" + }, + "sha256:82e27237686171b812aee7903c11ec4f8dbdb6544e419758fb0fbd61731044b0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipset-7.1-1.el8.x86_64.rpm" + }, + "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/util-linux-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libcomps-0.1.11-5.el8.x86_64.rpm" + }, + "sha256:839c62cd7fc7e152decded6f28c80b5f7b8f34a5e319057867b38b26512cee67": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/snappy-1.1.8-3.el8.x86_64.rpm" + }, + "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-gpg-keys-8-2.el8.noarch.rpm" + }, + "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgpg-error-1.31-1.el8.x86_64.rpm" + }, + "sha256:85eb614fc608f3b3f4bbd08d4a3b0ff6af188677ea4e009be021680c521cedae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonpatch-1.21-2.el8.noarch.rpm" + }, + "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcroco-0.6.12-4.el8_2.1.x86_64.rpm" + }, + "sha256:8852282172440cd618c695356449cbc035be4091b2a0833c785c8e42cc1df0e6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnfsidmap-2.3.3-41.el8.x86_64.rpm" + }, + "sha256:8891a9a4707611c13a5693b195201dd940254ffdb03cf5742952329282bb8cb7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pycparser-2.14-14.el8.noarch.rpm" + }, + "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-2.9-5.el8.x86_64.rpm" + }, + "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-udev-239-44.el8.x86_64.rpm" + }, + "sha256:8d3bdefac6c0f39e66e092d62b37efa3076976ae66def1f9dd1f217022406efa": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-swap-2.24-5.el8.x86_64.rpm" + }, + "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:8d6742dce47f8ed65e222864872e919f30c678f5df1e99c134fba8a0fc7f454d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-libs-0.115-11.el8.x86_64.rpm" + }, + "sha256:8e4f8fed6f2fdf05e85fc84023778dbf23e09f1dc2f6a0940860886d3f59831b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/plymouth-0.9.4-9.20200615git1e36e30.el8.x86_64.rpm" + }, + "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libss-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-2.28-147.el8.x86_64.rpm" + }, + "sha256:918518368513d162d772dfc5d16536ad2799276bcba2f47514a1c7098de2b43f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtalloc-2.3.1-2.el8.x86_64.rpm" + }, + "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/os-prober-1.74-6.el8.x86_64.rpm" + }, + "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-unbound-1.7.3-15.el8.x86_64.rpm" + }, + "sha256:941a9068b8fa524ecac58d37f941b95fbdcd9e38bd87c7f9d1330c5925a52a20": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-plugins-core-4.0.18-3.el8.noarch.rpm" + }, + "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-setuptools-39.2.0-6.el8.noarch.rpm" + }, + "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-1.02.175-3.el8.x86_64.rpm" + }, + "sha256:947fee92d0c147d832bbb3ab53e0b96817d03c38260429a4ff01856324b160da": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-util-3.53.1-17.el8_3.x86_64.rpm" + }, + "sha256:94a33381a41c8e4b237fd0df630efcc5d7b8f32a2650aadd492bddd1e9eb9684": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/spice-vdagent-0.20.0-3.el8.x86_64.rpm" + }, + "sha256:9664aba8dfd6bd6fda669fcf8f6ff04914305a6373b09d8b675322c7337b9c36": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/teamd-1.31-2.el8.x86_64.rpm" + }, + "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre-8.42-4.el8.x86_64.rpm" + }, + "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libseccomp-2.4.3-1.el8.x86_64.rpm" + }, + "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuuid-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:9869db60ee2b6d8f2115937857fb0586802720a75e043baf21514011a9fa79aa": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXext-1.3.4-1.el8.x86_64.rpm" + }, + "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lua-libs-5.3.4-11.el8.x86_64.rpm" + }, + "sha256:98a6386df94fc9595365c3ecbc630708420fa68d1774614a723dec4a55e84b9c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-glib-1.4.4-1.el8.x86_64.rpm" + }, + "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-common-1.12.8-12.el8.noarch.rpm" + }, + "sha256:98f622a37cb22857fdce63d8c97d9711c74cdbd3451e588e2b519532db55a5a2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/udisks2-2.9.0-6.el8.x86_64.rpm" + }, + "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pinentry-1.1.0-2.el8.x86_64.rpm" + }, + "sha256:9c7a5a6f73c8e32559226c54d229cb25304a81a853af22d9f829b9bb09b21f53": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-markupsafe-0.23-19.el8.x86_64.rpm" + }, + "sha256:9c849b1d4fd605ae749fd9d090715b6034520af871c23729cd4003f22e0990de": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/passwd-0.80-3.el8.x86_64.rpm" + }, + "sha256:9d160cdfba107ddc0613e169311bf57077c04e71a052a57704f3bdb64729d565": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/c-ares-1.13.0-5.el8.x86_64.rpm" + }, + "sha256:9dbf3ceb7de5a727f1a36edd5add73dcd96c83f24afc81d78e254b518551da96": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-babel-2.5.1-5.el8.noarch.rpm" + }, + "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/setup-2.12.2-6.el8.noarch.rpm" + }, + "sha256:9e78ec1230b9ec69ef8e3ad0484cbe3b5c36cfc214d90f890a49093b22df2948": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bubblewrap-0.4.0-1.el8.x86_64.rpm" + }, + "sha256:9eb9c1a67c5be04487cc133bdb8498eaf260e4d930a0143d2e1aa772e3d6cf64": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpipeline-1.5.0-2.el8.x86_64.rpm" + }, + "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-common-2.02-93.el8.noarch.rpm" + }, + "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libattr-2.4.48-3.el8.x86_64.rpm" + }, + "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-six-1.11.0-8.el8.noarch.rpm" + }, + "sha256:a06e1d34df03aaf429d290d5c281356fefe0ad510c229189405b88b3c0f40374": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/jansson-2.11-3.el8.x86_64.rpm" + }, + "sha256:a0b6a8d5530f5003f5c8d56211246cd1130a5b4dc1396dc50da70ce0e128b02c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/man-db-2.7.6.1-17.el8.x86_64.rpm" + }, + "sha256:a0c8f83cef355dd98d7750e3d8eb3e9f3e9f8f5e9a3ee441cb4bc4014c647e31": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/squashfs-tools-4.3-19.el8.x86_64.rpm" + }, + "sha256:a1d1bac6c4710e0a1a6e8a507b06a630dda6687f12642be0847768c14ce7271e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-1.44-5.el8.x86_64.rpm" + }, + "sha256:a217b0fbe9757a0225b66d16c1668cdf5cb2aa69c68b89e79783abd507f2e7bf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-libs-1.2.2-1.el8.x86_64.rpm" + }, + "sha256:a2418e8e12144d4e84965298e7bbefedc876c0d0d93771afb9b5c6c2eb139dc0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pip-9.0.3-19.el8.noarch.rpm" + }, + "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xkeyboard-config-2.28-1.el8.noarch.rpm" + }, + "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcomps-0.1.11-5.el8.x86_64.rpm" + }, + "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-legacy-2.0.4-10.el8.noarch.rpm" + }, + "sha256:a456039834ccc5432949120f1d80b18329b552cf44d1b59ea1b60d2192e7bc5c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iproute-5.9.0-2.el8.x86_64.rpm" + }, + "sha256:a5228fc876cffc7dc79769ada5653cb9bfb80d469fb3c9f0acc14a1a0d15782d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtdb-1.4.3-1.el8.x86_64.rpm" + }, + "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-minimal-2.02-93.el8.x86_64.rpm" + }, + "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/zlib-1.2.11-17.el8.x86_64.rpm" + }, + "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xfsprogs-5.0.0-8.el8.x86_64.rpm" + }, + "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-repos-8-2.el8.noarch.rpm" + }, + "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-common-8.30-8.el8.x86_64.rpm" + }, + "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:a9ec13abf63c69913acc1ac7070ab315c8b5a58c6006c3dfc5b27662f7f22260": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-clients-8.0p1-5.el8.x86_64.rpm" + }, + "sha256:aa0007192287faeaecc72d9fa48efdb3108c764d450dc8fea65474476da32c45": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pyudev-0.21.0-7.el8.noarch.rpm" + }, + "sha256:aa1835fd302a37b84ac256db5dd0de09bd9883a5a07775aedb491faf46b18ee0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-urllib3-1.24.2-5.el8.noarch.rpm" + }, + "sha256:aa938dc6f13d0d57ca811b8c299b1017723fa419997b87754f74db770430c2d9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-3.6.8-36.el8.x86_64.rpm" + }, + "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnutls-3.6.14-7.el8_3.x86_64.rpm" + }, + "sha256:ab1be3dcea74c7a7fac49f9a1cad4113fded2d3edabb61b29ed8489a737033fe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-libs-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:ab7bc1a828168006b88934bea949ab2b29b837b0a431f7da1a12147f64f6ddb5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgusb-0.3.0-1.el8.x86_64.rpm" + }, + "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcc-8.4.1-1.el8.x86_64.rpm" + }, + "sha256:addf80c52d794aed47874eb9d5ddbbaa90cb248fda1634d793054a41da0d92d7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-audit-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm" + }, + "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-libs-0.19.8.1-17.el8.x86_64.rpm" + }, + "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-libs-1.5.10-6.el8.x86_64.rpm" + }, + "sha256:b00855013100d3796e9ed6d82b1ab2d4dc7f4a3a3fa2e186f6de8523577974a0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/groff-base-1.22.3-18.el8.x86_64.rpm" + }, + "sha256:b0149d85f0172e98866ff2483660af2cf6c6fa0c8f9cab2c51cc2af479c9e319": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm" + }, + "sha256:b06fa62d0a585a7bc3b9d3341923736b3ee4b6cc6d7ca83bebcb97225ca86ac9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libini_config-1.3.1-39.el8.x86_64.rpm" + }, + "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shadow-utils-4.6-12.el8.x86_64.rpm" + }, + "sha256:b1871d8ac1abaf5e809448c5f37e32487f177aee3080d9033efb4b160f755aba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-client-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-39.2.0-6.el8.noarch.rpm" + }, + "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-tools-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:b2cd2dc5cf9c1c118053e7e650c6d910b1d37e810a38d90de27d80a04b702e39": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dmidecode-3.2-8.el8.x86_64.rpm" + }, + "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pam-1.3.1-14.el8.x86_64.rpm" + }, + "sha256:b3bc3f1c9e8028a177599f1ed9cb6c31d2d6e75111e34623d25e736d3ddcf8fd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tuned-2.15.0-1.el8.noarch.rpm" + }, + "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libassuan-2.5.1-3.el8.x86_64.rpm" + }, + "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsolv-0.7.16-2.el8.x86_64.rpm" + }, + "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/librepo-1.12.0-3.el8.x86_64.rpm" + }, + "sha256:b6e327a5fca1efc26c920c42d104dbdafd9e4676681bbd1f28dab81c51677db8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl2030-firmware-18.168.6.1-102.el8.1.noarch.rpm" + }, + "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-hawkey-0.55.0-2.el8.x86_64.rpm" + }, + "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib2-2.56.4-9.el8.x86_64.rpm" + }, + "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-1.1.1g-12.el8_3.x86_64.rpm" + }, + "sha256:b8e4cfecbbe7d2d6d9f3003432e826398f6bea21d5aba11a17ee74358cb84a6e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtevent-0.10.2-2.el8.x86_64.rpm" + }, + "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libreport-filesystem-2.9.5-15.el8.x86_64.rpm" + }, + "sha256:bafc2680bd298f0fac70854224ef03b7098d4c46ee35e270f6fd58d2e812ff1b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-schedutils-0.6-6.el8.x86_64.rpm" + }, + "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lz4-libs-1.8.3-2.el8.x86_64.rpm" + }, + "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gawk-4.2.1-2.el8.x86_64.rpm" + }, + "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-ng-0.7.9-5.el8.x86_64.rpm" + }, + "sha256:bce152ddd2f05f892e5ce483a7c12606ba7d2c42108402fc9609ada04048e6df": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/microcode_ctl-20201112-2.el8.x86_64.rpm" + }, + "sha256:bcf25aae89f7368b16346bc1ec92850175bcc2312bf7a5e74bc3c512bcd345b0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crontabs-1.11-17.20190603git.el8.noarch.rpm" + }, + "sha256:be0181770c94141852b6bb618baf56e7b8df9f70524b0c2e0e391e550285231f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-utils-2.24-5.el8.x86_64.rpm" + }, + "sha256:be628d396303d6547b9d7239897fbf4fad7447375cb5e898b394a458f420b550": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/slang-2.3.2-3.el8.x86_64.rpm" + }, + "sha256:bfbd05db004755c45f7ec31be67b02d9c7fa0c9b1bb060bb2ffe85b3f2b5d811": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/plymouth-scripts-0.9.4-9.20200615git1e36e30.el8.x86_64.rpm" + }, + "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hardlink-1.3-6.el8.x86_64.rpm" + }, + "sha256:c11eba3a7ae0ee7ceaea4bbf78edf9a1c3c5d9629b3f40167f5fb8004b2c19a0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-3.53.1-17.el8_3.x86_64.rpm" + }, + "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-2.9-12.el8.x86_64.rpm" + }, + "sha256:c1bb77ed45ae47dc068445c6dfa4b70b273a3daf8cd82b9fa7a50e3d59abe3c1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnftnl-1.1.5-4.el8.x86_64.rpm" + }, + "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-build-libs-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/krb5-libs-1.18.2-8.el8.x86_64.rpm" + }, + "sha256:c357a350aa169402db3c898c7edcfee333e1d11a44f62bbeaba3fd3d2f31644d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libndp-1.7-3.el8.x86_64.rpm" + }, + "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmetalink-0.1.3-7.el8.x86_64.rpm" + }, + "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-5.el8.x86_64.rpm" + }, + "sha256:c44dbbff4fe503f5f49b71ab17db7848c6c67fe19d9a4cc6cef59cc6dd15f1a6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:c4a5df7ec884bdcc929e73e066c7def89cfb8cf53306ffcf9f33a5c9e4ae84c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-plugins-core-4.0.18-3.el8.noarch.rpm" + }, + "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/diffutils-3.6-6.el8.x86_64.rpm" + }, + "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-1.el8.x86_64.rpm" + }, + "sha256:c5b5967a094ced90899052a82e2c245529b75ba3f46e0ce1a89cfc95edb935ea": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dateutil-2.6.1-6.el8.noarch.rpm" + }, + "sha256:c6f27b6e01d80e756408e3c1451e4af00e7d02da0aa24402644c0785118753fe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-39.2.0-6.el8.noarch.rpm" + }, + "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libutempter-1.1.6-14.el8.x86_64.rpm" + }, + "sha256:c8fc05dd997477fc80e2f3195e719ca2e569fc8997f05a64a13c52c8358e8239": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lsscsi-0.32-2.el8.x86_64.rpm" + }, + "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-modules-2.02-93.el8.noarch.rpm" + }, + "sha256:c99db07c2548246f6b2ec98c1d2b536e40b2f4dbba39f3430044868a27985732": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/langpacks-en-1.0-12.el8.noarch.rpm" + }, + "sha256:c9df7c58da59500e1717e435c565e221daa344212db8e83eb33b6a9c8e9a67bb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/newt-0.52.20-11.el8.x86_64.rpm" + }, + "sha256:ca82090f18d47e454cc512e832bf3ec771edf65299e3c1d56d5df9fab0428869": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/rsyslog-8.1911.0-7.el8.x86_64.rpm" + }, + "sha256:cad76a2802c5f355b527df3cabde70bd58b31ec4b7de3b1ac15a429cda5b9b03": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/linux-firmware-20201218-102.git05789708.el8.noarch.rpm" + }, + "sha256:cad86777bcb265db0da766952ff63e8d33f0fd4f3b90b22d0a1da587a785db44": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-city-20180605-1.el8.noarch.rpm" + }, + "sha256:cb5072917ce75dbde8fe474fa872db85da5dbac59cc1eb4a9125e7b6280f254e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-1.2.2-1.el8.x86_64.rpm" + }, + "sha256:cb6b773c2ac78142736abd8a8f9eaac122f4647aefd3f003a615baf79abbefbb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgudev-232-4.el8.x86_64.rpm" + }, + "sha256:cbcade4487fbf372b487b9f82ed85e04ff037551c96c4b461abc3716338ff9c4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sudo-1.8.29-7.el8.x86_64.rpm" + }, + "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpng-1.6.34-5.el8.x86_64.rpm" + }, + "sha256:cdd8e0a970aaaa23637f553692d755a0f57282c4494d31094638b6d4633ec523": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl105-firmware-18.168.6.1-102.el8.1.noarch.rpm" + }, + "sha256:cec98aa5fbefcb99715921b493b4f92d34c4eeb823e9c8741aa75e280def89f1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnfnetlink-1.0.1-13.el8.x86_64.rpm" + }, + "sha256:ced1d02dd424b1d087347d452420e17ba83af2b926041c794471798dfa5f5868": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-mdraid-2.24-5.el8.x86_64.rpm" + }, + "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-2.26-4.el8.x86_64.rpm" + }, + "sha256:cff4bc30873c62698e4bc2f519bb0aa6814534d7ce99f1ba757dd345b881505f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-softokn-freebl-3.53.1-17.el8_3.x86_64.rpm" + }, + "sha256:d01c5733267171fc234d7ab5387c17cb61e9fdec8f9eb792ea63c8ffb5bafb6c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl2000-firmware-18.168.6.1-102.el8.1.noarch.rpm" + }, + "sha256:d1cc79976965be3fe769cb8c23a281064816eaa195caf6057b8d1da0e9ff7ae5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libbytesize-1.4-3.el8.x86_64.rpm" + }, + "sha256:d1e8c7a00924d1a6dee44ade189025853a501d4f77c73f3bfc006aa907d97daf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-ply-3.9-9.el8.noarch.rpm" + }, + "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-trust-0.23.22-1.el8.x86_64.rpm" + }, + "sha256:d29207af6ff12bec1a5b9712550f2faf7efbff75c597cc2e84b6c9d0dfe2de68": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-loop-2.24-5.el8.x86_64.rpm" + }, + "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-2.02-93.el8.x86_64.rpm" + }, + "sha256:d5c283da0d2666742635754626263f6f78e273cd46d83d2d66ed43730a731685": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/checkpolicy-2.9-1.el8.x86_64.rpm" + }, + "sha256:d655ee126614010e72bac89b7ecaf38b515647181a22940cb774647442d28beb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efi-filesystem-3-3.el8.noarch.rpm" + }, + "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-0.9.4-2.el8.x86_64.rpm" + }, + "sha256:d7ae9cdbdd754c544d766c8e9748f24f580cd3a4c7c6c4d6203060e966299723": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl5000-firmware-8.83.5.1_1-102.el8.1.noarch.rpm" + }, + "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmount-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:d967d6bbb33bf7a295a64807f81875c84e82a8ecc59b6c72fe955141b1660d39": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rootfiles-8.1-22.el8.noarch.rpm" + }, + "sha256:d9acc32cf03ac203066bfa8d6d3f71eaedbad719f3ffc5056a387b548ae958e8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iprutils-2.4.19-1.el8.x86_64.rpm" + }, + "sha256:d9d8c21ad40e59b78008f1a569039462e5654a9d4bb08d84cf032e34cf7bde62": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcab1-1.1-1.el8.x86_64.rpm" + }, + "sha256:d9fcdf78bae8bf3f3e7d469686a07fdb337567a7f6159397eee990730eb8cd11": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-firewall-0.8.2-6.el8.noarch.rpm" + }, + "sha256:da77940ecadc9edb5d14aad51e4bf06664e5763fe6e46b20364732ec3aa2e08a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:dae52ddd215b506d1805b66873194df5043fd758d42960dee68f029eab329b42": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdaemon-0.14-15.el8.x86_64.rpm" + }, + "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-2.9.6-15.el8.x86_64.rpm" + }, + "sha256:dbded0760a358f62ec416ce37ffd764c725f8e898479b17173e632debc1a06ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl5150-firmware-8.24.2.2-102.el8.1.noarch.rpm" + }, + "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-libs-1.8.4-17.el8.x86_64.rpm" + }, + "sha256:dc4f0cc77cf4c89469cf0f9c88b52f2c8c2c35f4e6d714bbdae2083440483311": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cloud-init-20.3-10.el8.noarch.rpm" + }, + "sha256:dc835194ecfa6ebda81e0a764c953eff3422a61863e9a3e0dc74ea4cae7a4d94": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-linux-procfs-0.6.3-1.el8.noarch.rpm" + }, + "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ca-certificates-2020.2.41-80.0.el8_2.noarch.rpm" + }, + "sha256:dea18976861575d40ffca814dee08a225376c7828a5afc9e5d0a383edd3d8907": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipcalc-0.2.4-4.el8.x86_64.rpm" + }, + "sha256:df417aae69f2ba5bd4324a14dcfd30dfbfefba440085bbf916c5ef19286cba20": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python36-3.6.8-2.module_el8.4.0+666+456f5f48.x86_64.rpm" + }, + "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bash-4.4.19-14.el8.x86_64.rpm" + }, + "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-utils-5.3.28-40.el8.x86_64.rpm" + }, + "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.182-3.el8.x86_64.rpm" + }, + "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxkbcommon-0.9.1-1.el8.x86_64.rpm" + }, + "sha256:e0564d34fde9cf1a42e0fd4ba81ea7ce71bcca8823186f0221e56994bef275c6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl100-firmware-39.31.5.1-102.el8.1.noarch.rpm" + }, + "sha256:e1133a81512bfba8d4bf06bc12aafee7fe13d6319fc8690b81e6f46d978930eb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libatasmart-0.19-14.el8.x86_64.rpm" + }, + "sha256:e1a85d0f6b23482247c81c449d87749cdc8e6b7df737b39aba170634b644da0f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-nftables-0.9.3-17.el8.x86_64.rpm" + }, + "sha256:e2549a249d537f80f6595816a1094532c3feb0a730585d102c580583cc1dfde4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmbim-1.20.2-1.el8.x86_64.rpm" + }, + "sha256:e308e1ebc85889742a002fd9892d71894fd6fae473320fbc7b1ffb94248602cd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-part-2.24-5.el8.x86_64.rpm" + }, + "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/brotli-1.0.6-3.el8.x86_64.rpm" + }, + "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libksba-1.3.5-7.el8.x86_64.rpm" + }, + "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm" + }, + "sha256:e7ee4b6d6456cb7da0332f5a6fb8a7c47df977bcf616f12f0455413765367e89": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-pkla-compat-0.1-12.el8.x86_64.rpm" + }, + "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mpfr-3.1.6-1.el8.x86_64.rpm" + }, + "sha256:e8594d934926d149266098dbb6686b604caa4d8255895ebd732d55ca4e7f0248": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl7260-firmware-25.30.13.0-102.el8.1.noarch.rpm" + }, + "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtasn1-4.13-3.el8.x86_64.rpm" + }, + "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-4.4.2-5.el8.noarch.rpm" + }, + "sha256:ebeb05a4a9cdd5d060859eabac1349029c0120615c98fc939e26664c030655c1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-jwt-1.6.1-2.el8.noarch.rpm" + }, + "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tar-1.30-5.el8.x86_64.rpm" + }, + "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/which-2.21-12.el8.x86_64.rpm" + }, + "sha256:ef2734017b25f7e9e1abf67315a7d1c97216642b5dfb979c19b1a3f74cff1e54": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_certmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-misc-2.0.4-10.el8.noarch.rpm" + }, + "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/memstrack-0.1.11-1.el8.x86_64.rpm" + }, + "sha256:f0346c485da9a7e8c8d93624f335cbb25790a7f37c6c03e43232517bb73bbacb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shim-x64-15-15.el8_2.x86_64.rpm" + }, + "sha256:f07f41680f3d3a29981415c5c6d83e40da2958abbadc2417be6fbc467259be9b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXinerama-1.1.4-1.el8.x86_64.rpm" + }, + "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rdma-core-32.0-4.el8.x86_64.rpm" + }, + "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-extra-2.02-93.el8.x86_64.rpm" + }, + "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-15.el8.x86_64.rpm" + }, + "sha256:f56992135d789147285215cb062960fedcdf4b3296c62658fa430caa2c20165c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setools-4.3.0-2.el8.x86_64.rpm" + }, + "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/procps-ng-3.3.15-6.el8.x86_64.rpm" + }, + "sha256:f60f24ba76f7f9d9f42421153d296a279fb616165a27cf2c71657a901a425bb1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-team-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:f6f7907ccf8faa83a93e6d48801970aa45181a3a3c05ad7102b540a07534e318": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/qemu-img-4.2.0-35.module_el8.4.0+547+a85d02ba.x86_64.rpm" + }, + "sha256:f7e6debd0279cb07f0c805d90b707c187bb55b9ee34643898eec800b79fa6b1b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ethtool-5.8-5.el8.x86_64.rpm" + }, + "sha256:f81bfbb4ad309a6f934aaf8ee3d11847360557c4f5e7198eff3e74e73d0d76fc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXrandr-1.5.2-1.el8.x86_64.rpm" + }, + "sha256:f86fec6c6a844fbbfbf7c806d79dd7e72e4eef9c804472547a6d3ecf34cddca6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-glib-0.110-2.el8.x86_64.rpm" + }, + "sha256:f8bdaf5211c6fc72c8f60c7ddd59b8ca124ab26d2670ee6490a7fabb5177d919": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-8.0p1-5.el8.x86_64.rpm" + }, + "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsecret-0.18.6-1.el8.x86_64.rpm" + }, + "sha256:f94172554b8ceeab97b560d0b05c2e2df4b2e737471adce6eca82fd3209be254": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/less-530-1.el8.x86_64.rpm" + }, + "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-0.3.0-5.el8.x86_64.rpm" + }, + "sha256:fa0b90c4da7f7ca8bf40055be5641a2c57708931fec5f760a2f8944325669fe9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdisk-1.0.3-6.el8.x86_64.rpm" + }, + "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre2-10.32-2.el8.x86_64.rpm" + }, + "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-daemon-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:fda078d8edd4e0902246dd3121efb6c57cb8231dbb975380f9249c64163f0d88": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lshw-B.02.19.2-5.el8.x86_64.rpm" + }, + "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-8.30-8.el8.x86_64.rpm" + }, + "sha256:fe944d9dd89d550d2aa44d33cfeb11c803b074bfcda0dbbad486c392bf1cc9d0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-common-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/readline-7.0-10.el8.x86_64.rpm" + }, + "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-pam-239-44.el8.x86_64.rpm" + }, + "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-lib-0.3.15-1.el8.x86_64.rpm" + } + } + } + }, + "pipeline": { + "build": { + "pipeline": { + "stages": [ + { + "name": "org.osbuild.rpm", + "options": { + "gpgkeys": [ + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n" + ], + "packages": [ + { + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "checksum": "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af", + "check_gpg": true + }, + { + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "checksum": "sha256:2c63399bee449fb6e921671a9bbf3356fda73f890b578820f7d926202e98a479", + "check_gpg": true + }, + { + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "checksum": "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178", + "check_gpg": true + }, + { + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "checksum": "sha256:c6f27b6e01d80e756408e3c1451e4af00e7d02da0aa24402644c0785118753fe", + "check_gpg": true + }, + { + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "checksum": "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393", + "check_gpg": true + }, + { + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "checksum": "sha256:a2418e8e12144d4e84965298e7bbefedc876c0d0d93771afb9b5c6c2eb139dc0", + "check_gpg": true + }, + { + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "checksum": "sha256:df417aae69f2ba5bd4324a14dcfd30dfbfefba440085bbf916c5ef19286cba20", + "check_gpg": true + }, + { + "checksum": "sha256:f6f7907ccf8faa83a93e6d48801970aa45181a3a3c05ad7102b540a07534e318", + "check_gpg": true + }, + { + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ] + } + }, + { + "name": "org.osbuild.selinux", + "options": { + "file_contexts": "etc/selinux/targeted/contexts/files/file_contexts" + } + } + ] + }, + "runner": "org.osbuild.centos8" + }, + "stages": [ + { + "name": "org.osbuild.rpm", + "options": { + "gpgkeys": [ + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n" + ], + "packages": [ + { + "checksum": "sha256:508e9470ed648c28c1ef5a4a74072b188daa795f2369d10929f1ddbb5d3b5a3f", + "check_gpg": true + }, + { + "checksum": "sha256:1d130b0daf86899c3987d59567303ce7ae44c3273f2d8d0f0625bef7e6bad16d", + "check_gpg": true + }, + { + "checksum": "sha256:41d9c9f8e17c83f73e51e90f02e08927bb9c836d033815c6cdddc6da44e321f0", + "check_gpg": true + }, + { + "checksum": "sha256:f60f24ba76f7f9d9f42421153d296a279fb616165a27cf2c71657a901a425bb1", + "check_gpg": true + }, + { + "checksum": "sha256:657db08f58b6776f48fda17d2b734a26918b431253f9e4eba9fd5a46d9f89aef", + "check_gpg": true + }, + { + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "checksum": "sha256:b0149d85f0172e98866ff2483660af2cf6c6fa0c8f9cab2c51cc2af479c9e319", + "check_gpg": true + }, + { + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "checksum": "sha256:cb5072917ce75dbde8fe474fa872db85da5dbac59cc1eb4a9125e7b6280f254e", + "check_gpg": true + }, + { + "checksum": "sha256:a217b0fbe9757a0225b66d16c1668cdf5cb2aa69c68b89e79783abd507f2e7bf", + "check_gpg": true + }, + { + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "checksum": "sha256:2d4cf3bd8b8046adfa869fbb5b472294469457f6445db36abcc227959be9adeb", + "check_gpg": true + }, + { + "checksum": "sha256:0caa72888379f82fae1bc8f448bcf0dbaead20e92f2ef4c714afadf8979c3181", + "check_gpg": true + }, + { + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "checksum": "sha256:9e78ec1230b9ec69ef8e3ad0484cbe3b5c36cfc214d90f890a49093b22df2948", + "check_gpg": true + }, + { + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "checksum": "sha256:9d160cdfba107ddc0613e169311bf57077c04e71a052a57704f3bdb64729d565", + "check_gpg": true + }, + { + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "checksum": "sha256:d5c283da0d2666742635754626263f6f78e273cd46d83d2d66ed43730a731685", + "check_gpg": true + }, + { + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "checksum": "sha256:63a6b7765828081cc88b36d10c68621acbebf02a7c2e7d7f1a1217c8742ea6ae", + "check_gpg": true + }, + { + "checksum": "sha256:71fcbbec3aa152bc1427cb4d597375b008438f6259b20cfcb68fff21eef80f91", + "check_gpg": true + }, + { + "checksum": "sha256:bcf25aae89f7368b16346bc1ec92850175bcc2312bf7a5e74bc3c512bcd345b0", + "check_gpg": true + }, + { + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "checksum": "sha256:f86fec6c6a844fbbfbf7c806d79dd7e72e4eef9c804472547a6d3ecf34cddca6", + "check_gpg": true + }, + { + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "checksum": "sha256:084c55bef75a2ce2ab67aa4eeb6726ca59ea6d7c2b23bc6e4084f11aac7e17f8", + "check_gpg": true + }, + { + "checksum": "sha256:7ec48db9e1e9896f29a16cbea53cdeecdd7dd2bc278c06721ebca2e71e9dcd6d", + "check_gpg": true + }, + { + "checksum": "sha256:436e93b4c072f8b6f90f41a037d017406be10c18efafc8c634f6da59bbac1105", + "check_gpg": true + }, + { + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "checksum": "sha256:b2cd2dc5cf9c1c118053e7e650c6d910b1d37e810a38d90de27d80a04b702e39", + "check_gpg": true + }, + { + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "checksum": "sha256:c4a5df7ec884bdcc929e73e066c7def89cfb8cf53306ffcf9f33a5c9e4ae84c7", + "check_gpg": true + }, + { + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "checksum": "sha256:760141c74870a93505dbba2174034287b6a97b9bb2b12c5ca2b7af056773b45b", + "check_gpg": true + }, + { + "checksum": "sha256:4a28d9fa9785d7e8515deaf5e1a381a553c37b02a81a20ddd4fa202b33413ac9", + "check_gpg": true + }, + { + "checksum": "sha256:16b34582f757aebb9bc7b0a0475458cbb186238b5b528ef8fdb099cb739ba383", + "check_gpg": true + }, + { + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "checksum": "sha256:d655ee126614010e72bac89b7ecaf38b515647181a22940cb774647442d28beb", + "check_gpg": true + }, + { + "checksum": "sha256:48bfe66d6f07baf1974355e8a3ebbc44f2d9812b823ddfff1c15f35635a8dc4e", + "check_gpg": true + }, + { + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "checksum": "sha256:f7e6debd0279cb07f0c805d90b707c187bb55b9ee34643898eec800b79fa6b1b", + "check_gpg": true + }, + { + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "checksum": "sha256:7bfc1981e5e1fd706c23ba10090dd05fb0828df11aa98a3dc89ee8b1d2663f7a", + "check_gpg": true + }, + { + "checksum": "sha256:638eb361523ce75963c8234fdeb6df8084a62e09a7ff5b00125b507955a28b28", + "check_gpg": true + }, + { + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "checksum": "sha256:6710a1b2f28e5ffd0fff3e74a76d84d12a602be79703e53e1a55166f2f7d141c", + "check_gpg": true + }, + { + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "checksum": "sha256:fa0b90c4da7f7ca8bf40055be5641a2c57708931fec5f760a2f8944325669fe9", + "check_gpg": true + }, + { + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "checksum": "sha256:3162a4a9159994002c3c6f5fe6a12160020e8f3484f1406ff5092311ca639548", + "check_gpg": true + }, + { + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "checksum": "sha256:7e2804a4494d4179ed50c0c99da1e30c3a6abf8db889c1412b458943cff0e3e5", + "check_gpg": true + }, + { + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "checksum": "sha256:b00855013100d3796e9ed6d82b1ab2d4dc7f4a3a3fa2e186f6de8523577974a0", + "check_gpg": true + }, + { + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "checksum": "sha256:79277d872ae6035009a1a40e914ec09bca21aefcac9d73dee65880c86387f3c9", + "check_gpg": true + }, + { + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "checksum": "sha256:3c6650fd6e32fdc24b8cf1f7a85ae8232661b47bda7019e49fd0eb474683ff23", + "check_gpg": true + }, + { + "checksum": "sha256:7a7963e2052bfb45b8569f64619dc5cb92fe8aeb78c754b7cf948b9784646785", + "check_gpg": true + }, + { + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "checksum": "sha256:7fa8fbc576f7d54c388fa39fc3ed86bacb7964cac4544c48b3ffabcdcdc27b61", + "check_gpg": true + }, + { + "checksum": "sha256:dea18976861575d40ffca814dee08a225376c7828a5afc9e5d0a383edd3d8907", + "check_gpg": true + }, + { + "checksum": "sha256:a456039834ccc5432949120f1d80b18329b552cf44d1b59ea1b60d2192e7bc5c", + "check_gpg": true + }, + { + "checksum": "sha256:d9acc32cf03ac203066bfa8d6d3f71eaedbad719f3ffc5056a387b548ae958e8", + "check_gpg": true + }, + { + "checksum": "sha256:82e27237686171b812aee7903c11ec4f8dbdb6544e419758fb0fbd61731044b0", + "check_gpg": true + }, + { + "checksum": "sha256:6f699a1e24a6bb76904ef1a588e3b3ef116cad07a5cbad86c6cdb522c00670dd", + "check_gpg": true + }, + { + "checksum": "sha256:0c6624b9391a76c0f9e54c387641bd4ed079c3bfc30e8f890afc4203955b2acb", + "check_gpg": true + }, + { + "checksum": "sha256:59683b6fff42b40d3a3abbdeb928bb18b4cd84700aaeb9b3c76d37044ae94e01", + "check_gpg": true + }, + { + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "checksum": "sha256:74b842ba3352d7c4ada7e991aeadf8749f058a4d00ccc6f79f1c82a281497cb7", + "check_gpg": true + }, + { + "checksum": "sha256:3acd2c8b6ea534811308b3138859b5fa150b89604bb60f16b0650747039d696a", + "check_gpg": true + }, + { + "checksum": "sha256:e0564d34fde9cf1a42e0fd4ba81ea7ce71bcca8823186f0221e56994bef275c6", + "check_gpg": true + }, + { + "checksum": "sha256:078fa234177ae5ae2736c878aa2a2f8ecccf4c7772ab4ad19a2d6ba4f34e8631", + "check_gpg": true + }, + { + "checksum": "sha256:cdd8e0a970aaaa23637f553692d755a0f57282c4494d31094638b6d4633ec523", + "check_gpg": true + }, + { + "checksum": "sha256:5c686be3533457b6ac047ac804aa54f74ee3a455047d3866dcef7a4da9d95fc6", + "check_gpg": true + }, + { + "checksum": "sha256:d01c5733267171fc234d7ab5387c17cb61e9fdec8f9eb792ea63c8ffb5bafb6c", + "check_gpg": true + }, + { + "checksum": "sha256:b6e327a5fca1efc26c920c42d104dbdafd9e4676681bbd1f28dab81c51677db8", + "check_gpg": true + }, + { + "checksum": "sha256:0f817ea59939bdd0311c8da8369f5c037e340443198ccef659696f67bd2ddcd1", + "check_gpg": true + }, + { + "checksum": "sha256:d7ae9cdbdd754c544d766c8e9748f24f580cd3a4c7c6c4d6203060e966299723", + "check_gpg": true + }, + { + "checksum": "sha256:dbded0760a358f62ec416ce37ffd764c725f8e898479b17173e632debc1a06ae", + "check_gpg": true + }, + { + "checksum": "sha256:39e27e147189e0e431527acfca51d9436149fe7c0fee1399289ea9a4862948cc", + "check_gpg": true + }, + { + "checksum": "sha256:01b808f1ea9299c37c80164d05ef1a5c45e05d53bcbd451b4d52e69a47959bc2", + "check_gpg": true + }, + { + "checksum": "sha256:3793552ff28a7026a6299d8d5d8d50a467f27654524c8e438e2058040d7e6d6c", + "check_gpg": true + }, + { + "checksum": "sha256:e8594d934926d149266098dbb6686b604caa4d8255895ebd732d55ca4e7f0248", + "check_gpg": true + }, + { + "checksum": "sha256:a06e1d34df03aaf429d290d5c281356fefe0ad510c229189405b88b3c0f40374", + "check_gpg": true + }, + { + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "checksum": "sha256:98a6386df94fc9595365c3ecbc630708420fa68d1774614a723dec4a55e84b9c", + "check_gpg": true + }, + { + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "checksum": "sha256:c44dbbff4fe503f5f49b71ab17db7848c6c67fe19d9a4cc6cef59cc6dd15f1a6", + "check_gpg": true + }, + { + "checksum": "sha256:aa938dc6f13d0d57ca811b8c299b1017723fa419997b87754f74db770430c2d9", + "check_gpg": true + }, + { + "checksum": "sha256:da77940ecadc9edb5d14aad51e4bf06664e5763fe6e46b20364732ec3aa2e08a", + "check_gpg": true + }, + { + "checksum": "sha256:5f45a2ff1a9c9f3d4fcae463c1ca70b1a16caccc59816ce391f064c9d8b9d8ae", + "check_gpg": true + }, + { + "checksum": "sha256:ab1be3dcea74c7a7fac49f9a1cad4113fded2d3edabb61b29ed8489a737033fe", + "check_gpg": true + }, + { + "checksum": "sha256:4280042747c9027c3252d360fa33d63490aa518858849115b20162a097a37146", + "check_gpg": true + }, + { + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "checksum": "sha256:f94172554b8ceeab97b560d0b05c2e2df4b2e737471adce6eca82fd3209be254", + "check_gpg": true + }, + { + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "checksum": "sha256:5452b96e4b57c275dd41e48d55af1ca4f77ccfb3ae403796e599a039d7382b91", + "check_gpg": true + }, + { + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "checksum": "sha256:708a8fd75f7c6987d66e2d62de664b5a84c6f75fd4e5230e244681897b15a25d", + "check_gpg": true + }, + { + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "checksum": "sha256:dae52ddd215b506d1805b66873194df5043fd758d42960dee68f029eab329b42", + "check_gpg": true + }, + { + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "checksum": "sha256:6327624b7b0d726a3c95f2245619efb1df8e70023fadcc8158afed39f57859e7", + "check_gpg": true + }, + { + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "checksum": "sha256:08b76b0af07db4d3b27776a96bb7d0dc0f02b7219569676ac79036190d731d5b", + "check_gpg": true + }, + { + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "checksum": "sha256:d9d8c21ad40e59b78008f1a569039462e5654a9d4bb08d84cf032e34cf7bde62", + "check_gpg": true + }, + { + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "checksum": "sha256:cb6b773c2ac78142736abd8a8f9eaac122f4647aefd3f003a615baf79abbefbb", + "check_gpg": true + }, + { + "checksum": "sha256:ab7bc1a828168006b88934bea949ab2b29b837b0a431f7da1a12147f64f6ddb5", + "check_gpg": true + }, + { + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "checksum": "sha256:b06fa62d0a585a7bc3b9d3341923736b3ee4b6cc6d7ca83bebcb97225ca86ac9", + "check_gpg": true + }, + { + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "checksum": "sha256:1b5187e9b694e439a059be58d8de5317f04278371d1195bf000b001ba8699197", + "check_gpg": true + }, + { + "checksum": "sha256:e2549a249d537f80f6595816a1094532c3feb0a730585d102c580583cc1dfde4", + "check_gpg": true + }, + { + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "checksum": "sha256:30fab73ee155f03dbbd99c1e30fe59dfba4ae8fdb2e7213451ccc36d6918bfcc", + "check_gpg": true + }, + { + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "checksum": "sha256:c357a350aa169402db3c898c7edcfee333e1d11a44f62bbeaba3fd3d2f31644d", + "check_gpg": true + }, + { + "checksum": "sha256:224100af3ecfc80c416796ec02c7c4dd113a38d42349d763485f3b42f260493f", + "check_gpg": true + }, + { + "checksum": "sha256:cec98aa5fbefcb99715921b493b4f92d34c4eeb823e9c8741aa75e280def89f1", + "check_gpg": true + }, + { + "checksum": "sha256:8852282172440cd618c695356449cbc035be4091b2a0833c785c8e42cc1df0e6", + "check_gpg": true + }, + { + "checksum": "sha256:c1bb77ed45ae47dc068445c6dfa4b70b273a3daf8cd82b9fa7a50e3d59abe3c1", + "check_gpg": true + }, + { + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "checksum": "sha256:2e8d4ee76fa8678b0e4d6c0297b16f96e0116201bf96b36e8924b1b080abcddd", + "check_gpg": true + }, + { + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "checksum": "sha256:185f36b3af9367e6142233af358df22f23ee623697bc6a45c47091013707872e", + "check_gpg": true + }, + { + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "checksum": "sha256:759386be8f49257266ac614432b762b8e486a89aac5d5f7a581a0330efb59c77", + "check_gpg": true + }, + { + "checksum": "sha256:9eb9c1a67c5be04487cc133bdb8498eaf260e4d930a0143d2e1aa772e3d6cf64", + "check_gpg": true + }, + { + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "checksum": "sha256:406aea2bb2a5f83cabee5a50bad08a3516776c3cd42db8b159f926624f61aa42", + "check_gpg": true + }, + { + "checksum": "sha256:6b740563ba5858573ff3c2d2a827aeaf6e7166178e36066755d2cde4cf8a016f", + "check_gpg": true + }, + { + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "checksum": "sha256:5092704c041bb246eaafd478bedface3f99ce8fa233ada5cf96807f67e980e42", + "check_gpg": true + }, + { + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "checksum": "sha256:1230ddb5d92fe538a0526e3a9f05563a111ae4ff1978fc8e18de889974b5b46c", + "check_gpg": true + }, + { + "checksum": "sha256:ef2734017b25f7e9e1abf67315a7d1c97216642b5dfb979c19b1a3f74cff1e54", + "check_gpg": true + }, + { + "checksum": "sha256:377ad20c1681518bff1f40884589bddc4a692506384c7676f072ddf86ae429f9", + "check_gpg": true + }, + { + "checksum": "sha256:2c6dd4f21d9c4bde29f693d32e44f0d1c5dc73d78d013767df531d69bbfc6ed8", + "check_gpg": true + }, + { + "checksum": "sha256:370b74a811249b8f0bdfcd34137507f058a85196775e9d0d2bb244c100d194ae", + "check_gpg": true + }, + { + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "checksum": "sha256:53ae3ecd59ec61852cabbd039c748ed63ceb6a88da98587d4c33323ba4095154", + "check_gpg": true + }, + { + "checksum": "sha256:918518368513d162d772dfc5d16536ad2799276bcba2f47514a1c7098de2b43f", + "check_gpg": true + }, + { + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "checksum": "sha256:a5228fc876cffc7dc79769ada5653cb9bfb80d469fb3c9f0acc14a1a0d15782d", + "check_gpg": true + }, + { + "checksum": "sha256:0aaaaa29cc1bb4d358142db6eb7d12df9252a8166bf61956203878eed210785c", + "check_gpg": true + }, + { + "checksum": "sha256:b8e4cfecbbe7d2d6d9f3003432e826398f6bea21d5aba11a17ee74358cb84a6e", + "check_gpg": true + }, + { + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "checksum": "sha256:70b5e4e580da72969ad3bb144c15293910b7d679e195c118cee60d8320f01851", + "check_gpg": true + }, + { + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "checksum": "sha256:5b7763510f4badd05a1647e1fadf9dc49044b1cf4d754262d0d6d5ee9a8f3b12", + "check_gpg": true + }, + { + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "checksum": "sha256:cad76a2802c5f355b527df3cabde70bd58b31ec4b7de3b1ac15a429cda5b9b03", + "check_gpg": true + }, + { + "checksum": "sha256:0064a3aeff41fb7345c061956c35e4b9d0b8802954e717491fb6eb51028d22fd", + "check_gpg": true + }, + { + "checksum": "sha256:3cd092e6e03efb4bb49b91dedd52b43f891092d04a2ff040b9f2197ec2082511", + "check_gpg": true + }, + { + "checksum": "sha256:fda078d8edd4e0902246dd3121efb6c57cb8231dbb975380f9249c64163f0d88", + "check_gpg": true + }, + { + "checksum": "sha256:c8fc05dd997477fc80e2f3195e719ca2e569fc8997f05a64a13c52c8358e8239", + "check_gpg": true + }, + { + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "checksum": "sha256:5c68635cb03533a38d4a42f6547c21a1d5f9952351bb01f3cf865d2621a6e634", + "check_gpg": true + }, + { + "checksum": "sha256:a0b6a8d5530f5003f5c8d56211246cd1130a5b4dc1396dc50da70ce0e128b02c", + "check_gpg": true + }, + { + "checksum": "sha256:0560d3b3e915221aad94ddf83169bd680b1f0da9aa8ec8e9360bcb8fe071483e", + "check_gpg": true + }, + { + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "checksum": "sha256:bce152ddd2f05f892e5ce483a7c12606ba7d2c42108402fc9609ada04048e6df", + "check_gpg": true + }, + { + "checksum": "sha256:1c4b186665558747023a60d0d662d3780a1bc49e578062f4b70100c71ab2220c", + "check_gpg": true + }, + { + "checksum": "sha256:03b50a4ea5cf5655c67e2358fabb6e563eec4e7929e7fc6c4e92c92694f60fa0", + "check_gpg": true + }, + { + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "checksum": "sha256:c9df7c58da59500e1717e435c565e221daa344212db8e83eb33b6a9c8e9a67bb", + "check_gpg": true + }, + { + "checksum": "sha256:0b763d946ec7da165107258469e7655707caa6fde0fff49e9e89d747e13eacc1", + "check_gpg": true + }, + { + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "checksum": "sha256:5e24dd39ae59ef7b7a386f28509cc80d8fabb23f0932e52ea365cf064ff76c59", + "check_gpg": true + }, + { + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "checksum": "sha256:f8bdaf5211c6fc72c8f60c7ddd59b8ca124ab26d2670ee6490a7fabb5177d919", + "check_gpg": true + }, + { + "checksum": "sha256:a9ec13abf63c69913acc1ac7070ab315c8b5a58c6006c3dfc5b27662f7f22260", + "check_gpg": true + }, + { + "checksum": "sha256:173a812d859c70f8db7b014d507c5cacb76c62ab5480c44be217f880465f42c7", + "check_gpg": true + }, + { + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "checksum": "sha256:4c5c7f3773c634c054b0a5fc1b40d0a8448b44bb5aff410bfa88facf9e2059ff", + "check_gpg": true + }, + { + "checksum": "sha256:9c849b1d4fd605ae749fd9d090715b6034520af871c23729cd4003f22e0990de", + "check_gpg": true + }, + { + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "checksum": "sha256:09128c1b70cb8ea1a9bfbc6f3314dd5a8ba0c1a1886a82cd0fbe6845d48215dc", + "check_gpg": true + }, + { + "checksum": "sha256:8d6742dce47f8ed65e222864872e919f30c678f5df1e99c134fba8a0fc7f454d", + "check_gpg": true + }, + { + "checksum": "sha256:e7ee4b6d6456cb7da0332f5a6fb8a7c47df977bcf616f12f0455413765367e89", + "check_gpg": true + }, + { + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "checksum": "sha256:776a182ecaab9f86c7e869db2eb2deea1f291caee701cddbd752da8cd3c57458", + "check_gpg": true + }, + { + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "checksum": "sha256:addf80c52d794aed47874eb9d5ddbbaa90cb248fda1634d793054a41da0d92d7", + "check_gpg": true + }, + { + "checksum": "sha256:07ed1209e898552e6aeac0e6d148271d562c576f7d903cb7a99a697643068f58", + "check_gpg": true + }, + { + "checksum": "sha256:176ffcb2cf0fdcbdd2d8119cbd98eef60a30fdb0fb065a9382d2c95e90c79652", + "check_gpg": true + }, + { + "checksum": "sha256:1bd969e0521820374122f5132e5998d9bd2ab185be66565a7266096297419c8e", + "check_gpg": true + }, + { + "checksum": "sha256:2ebe28be2e0a413af31a0f49b6a2774670067cdbe48e723040b19922ae205d6b", + "check_gpg": true + }, + { + "checksum": "sha256:c5b5967a094ced90899052a82e2c245529b75ba3f46e0ce1a89cfc95edb935ea", + "check_gpg": true + }, + { + "checksum": "sha256:066f254f9ac7712b44214816de907a87eb8dfd0d2ea9570a7513db9a6617ba26", + "check_gpg": true + }, + { + "checksum": "sha256:0e9a8a0f823bf0ef948862f0ccb62353460bd07931e756c98f23908c1c526578", + "check_gpg": true + }, + { + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "checksum": "sha256:941a9068b8fa524ecac58d37f941b95fbdcd9e38bd87c7f9d1330c5925a52a20", + "check_gpg": true + }, + { + "checksum": "sha256:d9fcdf78bae8bf3f3e7d469686a07fdb337567a7f6159397eee990730eb8cd11", + "check_gpg": true + }, + { + "checksum": "sha256:15dc15a5be210707852f051f4d09949c063a7283edc7d4ca3d4289eedcc0b509", + "check_gpg": true + }, + { + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "checksum": "sha256:78c43d8a15ca018de1803e4baac5819e1baab1963fd31f1e44e54e8a573acbfc", + "check_gpg": true + }, + { + "checksum": "sha256:ebeb05a4a9cdd5d060859eabac1349029c0120615c98fc939e26664c030655c1", + "check_gpg": true + }, + { + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "checksum": "sha256:59ba5bf69953a5a2e902b0f08b7187b66d84968852d46a3579a059477547d1a0", + "check_gpg": true + }, + { + "checksum": "sha256:451d0cb6e2284578e3279b4cbb5ec98e9d98a687556c6b424adf8f1282d4ef58", + "check_gpg": true + }, + { + "checksum": "sha256:dc835194ecfa6ebda81e0a764c953eff3422a61863e9a3e0dc74ea4cae7a4d94", + "check_gpg": true + }, + { + "checksum": "sha256:e1a85d0f6b23482247c81c449d87749cdc8e6b7df737b39aba170634b644da0f", + "check_gpg": true + }, + { + "checksum": "sha256:20874a9d40b12125c9e5b97fe4ccda3f94acbc03da1dec7299123901f5b56631", + "check_gpg": true + }, + { + "checksum": "sha256:6aa1e29a4d805fc36c3196788fe78cb4552e2ebec8b3d0f8d32974e6a97025f2", + "check_gpg": true + }, + { + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "checksum": "sha256:d1e8c7a00924d1a6dee44ade189025853a501d4f77c73f3bfc006aa907d97daf", + "check_gpg": true + }, + { + "checksum": "sha256:142d4fe6236cdeac3f967517085d99649215d75026fbe00746e0c5214d7d20df", + "check_gpg": true + }, + { + "checksum": "sha256:8891a9a4707611c13a5693b195201dd940254ffdb03cf5742952329282bb8cb7", + "check_gpg": true + }, + { + "checksum": "sha256:7f506879c64e0bb4d98782d025f46fb9a07517487ae4cbebbb3985a98f4e2154", + "check_gpg": true + }, + { + "checksum": "sha256:aa0007192287faeaecc72d9fa48efdb3108c764d450dc8fea65474476da32c45", + "check_gpg": true + }, + { + "checksum": "sha256:525393e4d658e395c6280bd2ff4afe54999796c4722986325297ba4bfade3ea5", + "check_gpg": true + }, + { + "checksum": "sha256:003ee19ec5b88de212c3246bdfdb3e97a9910a25a219fd7cf5030b7bc666fea9", + "check_gpg": true + }, + { + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "checksum": "sha256:bafc2680bd298f0fac70854224ef03b7098d4c46ee35e270f6fd58d2e812ff1b", + "check_gpg": true + }, + { + "checksum": "sha256:f56992135d789147285215cb062960fedcdf4b3296c62658fa430caa2c20165c", + "check_gpg": true + }, + { + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "checksum": "sha256:233e5f78027b684e5aaac1395cc574aea3039059bf86eb4494422bc74216a396", + "check_gpg": true + }, + { + "checksum": "sha256:563b3741d26b6af963fdb7b0634e0791445a707d0b6093ac71c3224299241639", + "check_gpg": true + }, + { + "checksum": "sha256:017e78c5e23f98d6ee299255fc7be5381dba63d169e3f5dcb1de9d21b5d30ba5", + "check_gpg": true + }, + { + "checksum": "sha256:aa1835fd302a37b84ac256db5dd0de09bd9883a5a07775aedb491faf46b18ee0", + "check_gpg": true + }, + { + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "checksum": "sha256:d967d6bbb33bf7a295a64807f81875c84e82a8ecc59b6c72fe955141b1660d39", + "check_gpg": true + }, + { + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "checksum": "sha256:a1d1bac6c4710e0a1a6e8a507b06a630dda6687f12642be0847768c14ce7271e", + "check_gpg": true + }, + { + "checksum": "sha256:774d214a379c0b729d7e989f9d5094fdfda7df68c1e792ba9200542032f04c91", + "check_gpg": true + }, + { + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "checksum": "sha256:f0346c485da9a7e8c8d93624f335cbb25790a7f37c6c03e43232517bb73bbacb", + "check_gpg": true + }, + { + "checksum": "sha256:be628d396303d6547b9d7239897fbf4fad7447375cb5e898b394a458f420b550", + "check_gpg": true + }, + { + "checksum": "sha256:839c62cd7fc7e152decded6f28c80b5f7b8f34a5e319057867b38b26512cee67", + "check_gpg": true + }, + { + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "checksum": "sha256:a0c8f83cef355dd98d7750e3d8eb3e9f3e9f8f5e9a3ee441cb4bc4014c647e31", + "check_gpg": true + }, + { + "checksum": "sha256:b1871d8ac1abaf5e809448c5f37e32487f177aee3080d9033efb4b160f755aba", + "check_gpg": true + }, + { + "checksum": "sha256:fe944d9dd89d550d2aa44d33cfeb11c803b074bfcda0dbbad486c392bf1cc9d0", + "check_gpg": true + }, + { + "checksum": "sha256:6cd7444c22d56201f61fed5fd741b44cfaae18d95b811d25c5f0ffe2f8e55a8f", + "check_gpg": true + }, + { + "checksum": "sha256:7115a12fad224b469419e19ee5c0d38322f467fe7a1c441c1b0239b197baac2a", + "check_gpg": true + }, + { + "checksum": "sha256:cbcade4487fbf372b487b9f82ed85e04ff037551c96c4b461abc3716338ff9c4", + "check_gpg": true + }, + { + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "checksum": "sha256:9664aba8dfd6bd6fda669fcf8f6ff04914305a6373b09d8b675322c7337b9c36", + "check_gpg": true + }, + { + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "checksum": "sha256:b3bc3f1c9e8028a177599f1ed9cb6c31d2d6e75111e34623d25e736d3ddcf8fd", + "check_gpg": true + }, + { + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "checksum": "sha256:3efd6a2548813167fe37718546bc768a5aa8ba59aa80edcecd8ba408bec329b0", + "check_gpg": true + }, + { + "checksum": "sha256:4c02e3e1808f0189269b242242468a364007a8f12c6e38afc24b599b2848b0fa", + "check_gpg": true + }, + { + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "checksum": "sha256:4302361b12eefd5574f57bf0c49c0e5bdc738eddda33634af8b35adfb53a52a1", + "check_gpg": true + }, + { + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "checksum": "sha256:61fa9846a0eac2d4739fcacf618d4832ed809b5a5c5d18c30d1f216e0817f43b", + "check_gpg": true + }, + { + "checksum": "sha256:dc4f0cc77cf4c89469cf0f9c88b52f2c8c2c35f4e6d714bbdae2083440483311", + "check_gpg": true + }, + { + "checksum": "sha256:cad86777bcb265db0da766952ff63e8d33f0fd4f3b90b22d0a1da587a785db44", + "check_gpg": true + }, + { + "checksum": "sha256:67419432fe7d373f8e5ddaa7b0dd1c25389608bf2f4ee76dbabcc2d96eb8c9d0", + "check_gpg": true + }, + { + "checksum": "sha256:c99db07c2548246f6b2ec98c1d2b536e40b2f4dbba39f3430044868a27985732", + "check_gpg": true + }, + { + "checksum": "sha256:41a5551a1bdf84359c3f86f08bb1e5c13c0bc1e057ae5d9f0cdf9930afeb37a1", + "check_gpg": true + }, + { + "checksum": "sha256:5f445b2b2a4bdeabd555e25dfa10119d9f4e4e500d1c4492219dd8647f119ce2", + "check_gpg": true + }, + { + "checksum": "sha256:49d972c660b9238dd1d58ab5952285b77e440820bf4563cce2b5ecd2f6ceba78", + "check_gpg": true + }, + { + "checksum": "sha256:9869db60ee2b6d8f2115937857fb0586802720a75e043baf21514011a9fa79aa", + "check_gpg": true + }, + { + "checksum": "sha256:81f7df4c736963636c9ebab7441ca4f4e41a7483ef6e7b2ac0d1bf37afe52a14", + "check_gpg": true + }, + { + "checksum": "sha256:f07f41680f3d3a29981415c5c6d83e40da2958abbadc2417be6fbc467259be9b", + "check_gpg": true + }, + { + "checksum": "sha256:f81bfbb4ad309a6f934aaf8ee3d11847360557c4f5e7198eff3e74e73d0d76fc", + "check_gpg": true + }, + { + "checksum": "sha256:11ac209220f3a53a762adebb4eeb43190e02ef7cdad2c54bcb474b206f7eb6f2", + "check_gpg": true + }, + { + "checksum": "sha256:e1133a81512bfba8d4bf06bc12aafee7fe13d6319fc8690b81e6f46d978930eb", + "check_gpg": true + }, + { + "checksum": "sha256:3cf4fcd2fe43e6477d5f1c05167c669c247dcbeea1ab37bf3b7d42dcab482565", + "check_gpg": true + }, + { + "checksum": "sha256:226bb890cc85bfc60d874a9cb13cb7f7f1e90d90308c7726e25e14cee5487e66", + "check_gpg": true + }, + { + "checksum": "sha256:142c67cdc69366820a7fc7567e40567b545b52f279d1ff992e4787d3c1ea4956", + "check_gpg": true + }, + { + "checksum": "sha256:d29207af6ff12bec1a5b9712550f2faf7efbff75c597cc2e84b6c9d0dfe2de68", + "check_gpg": true + }, + { + "checksum": "sha256:ced1d02dd424b1d087347d452420e17ba83af2b926041c794471798dfa5f5868", + "check_gpg": true + }, + { + "checksum": "sha256:e308e1ebc85889742a002fd9892d71894fd6fae473320fbc7b1ffb94248602cd", + "check_gpg": true + }, + { + "checksum": "sha256:8d3bdefac6c0f39e66e092d62b37efa3076976ae66def1f9dd1f217022406efa", + "check_gpg": true + }, + { + "checksum": "sha256:be0181770c94141852b6bb618baf56e7b8df9f70524b0c2e0e391e550285231f", + "check_gpg": true + }, + { + "checksum": "sha256:d1cc79976965be3fe769cb8c23a281064816eaa195caf6057b8d1da0e9ff7ae5", + "check_gpg": true + }, + { + "checksum": "sha256:42edf6b8e8be5e64f7e0f9714c5b199a364393c141cb170f6272ab2e9e0e4d88", + "check_gpg": true + }, + { + "checksum": "sha256:7bc2e2a25b04b52a4ec5de2858e75eb07f16495d4de5f7ce926777130302cfe3", + "check_gpg": true + }, + { + "checksum": "sha256:105beb1a237e66802e64e620f79b357dfc8f3bb8952ac2f293548f1d68ca40b1", + "check_gpg": true + }, + { + "checksum": "sha256:19ca7ab9cb2e39ec452ed1424f828ec464266094e31903301680d5a5d0e2ac2c", + "check_gpg": true + }, + { + "checksum": "sha256:1824bc3233b76fabb2305d11bd9bc905cb8e8d7f44006f253164b64808be4b39", + "check_gpg": true + }, + { + "checksum": "sha256:0221e6e3671c2bd130e9519a7b352404b7e510584b4707d38e1a733e19c7f74f", + "check_gpg": true + }, + { + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "checksum": "sha256:34321e09964f724b712ed709115f794b1953f4a4d472d655bec0993d27c51a22", + "check_gpg": true + }, + { + "checksum": "sha256:c11eba3a7ae0ee7ceaea4bbf78edf9a1c3c5d9629b3f40167f5fb8004b2c19a0", + "check_gpg": true + }, + { + "checksum": "sha256:2e0b39dbf3b7e68a06f321a04797d4e521b9b484ffc8d6d53f7662613e077065", + "check_gpg": true + }, + { + "checksum": "sha256:cff4bc30873c62698e4bc2f519bb0aa6814534d7ce99f1ba757dd345b881505f", + "check_gpg": true + }, + { + "checksum": "sha256:71fbed9d1b1f6965b42a5c87c98732bed84a8a2efb43c2218b4d1c59e9eaf190", + "check_gpg": true + }, + { + "checksum": "sha256:947fee92d0c147d832bbb3ab53e0b96817d03c38260429a4ff01856324b160da", + "check_gpg": true + }, + { + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "checksum": "sha256:8e4f8fed6f2fdf05e85fc84023778dbf23e09f1dc2f6a0940860886d3f59831b", + "check_gpg": true + }, + { + "checksum": "sha256:44c659fb58e1ee64f5d77b35459dc43a0fded79c8a6e2278a2c9c71461792ff1", + "check_gpg": true + }, + { + "checksum": "sha256:bfbd05db004755c45f7ec31be67b02d9c7fa0c9b1bb060bb2ffe85b3f2b5d811", + "check_gpg": true + }, + { + "checksum": "sha256:9dbf3ceb7de5a727f1a36edd5add73dcd96c83f24afc81d78e254b518551da96", + "check_gpg": true + }, + { + "checksum": "sha256:5f4f256128dba88a13599d6458908c24c0e9c18d8979ae44bf5734da8e7cab70", + "check_gpg": true + }, + { + "checksum": "sha256:85eb614fc608f3b3f4bbd08d4a3b0ff6af188677ea4e009be021680c521cedae", + "check_gpg": true + }, + { + "checksum": "sha256:60b0cbc5e435be346bb06f45f3336f8936d7362022d8bceda80ff16bc3fb7dd2", + "check_gpg": true + }, + { + "checksum": "sha256:0feac495306bbe6e3149a352025bea8d23cda512859a230cbd3f510cf48caaf7", + "check_gpg": true + }, + { + "checksum": "sha256:9c7a5a6f73c8e32559226c54d229cb25304a81a853af22d9f829b9bb09b21f53", + "check_gpg": true + }, + { + "checksum": "sha256:1b53c868277dec628058b31b1a8a8a2ccd8efe832ce9694805b5f82564136eb3", + "check_gpg": true + }, + { + "checksum": "sha256:82ce159a9e4e4b6b4fdce9ad954aa507f67108430bd261a4dcd826e44d0152a4", + "check_gpg": true + }, + { + "checksum": "sha256:0edde19e0c027c8cff31b82e1f4b0b198c00bf924047fcf4dd610a7d4965ab52", + "check_gpg": true + }, + { + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "checksum": "sha256:04bcd912af3b987311c2dab6331b65c0d9223c312c4b0654649d821a713133be", + "check_gpg": true + }, + { + "checksum": "sha256:ca82090f18d47e454cc512e832bf3ec771edf65299e3c1d56d5df9fab0428869", + "check_gpg": true + }, + { + "checksum": "sha256:94a33381a41c8e4b237fd0df630efcc5d7b8f32a2650aadd492bddd1e9eb9684", + "check_gpg": true + }, + { + "checksum": "sha256:98f622a37cb22857fdce63d8c97d9711c74cdbd3451e588e2b519532db55a5a2", + "check_gpg": true + }, + { + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "checksum": "sha256:5c0cf0adf7a3ad24ddde58f298ebf4ce741bccdfc8eff0103644115c837f80d6", + "check_gpg": true + }, + { + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ] + } + }, + { + "name": "org.osbuild.fix-bls", + "options": {} + }, + { + "name": "org.osbuild.fstab", + "options": { + "filesystems": [ + { + "uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "vfs_type": "xfs", + "path": "/", + "options": "defaults" + }, + { + "uuid": "7B77-95E7", + "vfs_type": "vfat", + "path": "/boot/efi", + "options": "defaults,uid=0,gid=0,umask=077,shortname=winnt", + "passno": 2 + } + ] + } + }, + { + "name": "org.osbuild.grub2", + "options": { + "root_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "kernel_opts": "ro net.ifnames=0", + "legacy": "i386-pc", + "uefi": { + "vendor": "centos" + } + } + }, + { + "name": "org.osbuild.locale", + "options": { + "language": "en_US" + } + }, + { + "name": "org.osbuild.timezone", + "options": { + "zone": "America/New_York" + } + }, + { + "name": "org.osbuild.users", + "options": { + "users": { + "redhat": { + "key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC61wMCjOSHwbVb4VfVyl5sn497qW4PsdQ7Ty7aD6wDNZ/QjjULkDV/yW5WjDlDQ7UqFH0Sr7vywjqDizUAqK7zM5FsUKsUXWHWwg/ehKg8j9xKcMv11AkFoUoujtfAujnKODkk58XSA9whPr7qcw3vPrmog680pnMSzf9LC7J6kXfs6lkoKfBh9VnlxusCrw2yg0qI1fHAZBLPx7mW6+me71QZsS6sVz8v8KXyrXsKTdnF50FjzHcK9HXDBtSJS5wA3fkcRYymJe0o6WMWNdgSRVpoSiWaHHmFgdMUJaYoCfhXzyl7LtNb3Q+Sveg+tJK7JaRXBLMUllOlJ6ll5Hod root@localhost" + } + } + } + }, + { + "name": "org.osbuild.selinux", + "options": { + "file_contexts": "etc/selinux/targeted/contexts/files/file_contexts" + } + }, + { + "name": "org.osbuild.sysconfig", + "options": { + "kernel": { + "update_default": true, + "default_kernel": "kernel" + }, + "network": { + "networking": true, + "no_zero_conf": true + } + } + } + ], + "assembler": { + "name": "org.osbuild.qemu", + "options": { + "bootloader": { + "type": "grub2" + }, + "format": "qcow2", + "filename": "disk.qcow2", + "size": 4294967296, + "ptuuid": "D209C89E-EA5E-4FBD-B161-B461CCE297E0", + "pttype": "gpt", + "partitions": [ + { + "start": 2048, + "size": 2048, + "type": "21686148-6449-6E6F-744E-656564454649", + "bootable": true, + "uuid": "FAC7F1FB-3E8D-4137-A512-961DE09A5549" + }, + { + "start": 4096, + "size": 204800, + "type": "C12A7328-F81F-11D2-BA4B-00A0C93EC93B", + "uuid": "68B2905B-DF3E-4FB3-80FA-49D1E773AA33", + "filesystem": { + "type": "vfat", + "uuid": "7B77-95E7", + "mountpoint": "/boot/efi" + } + }, + { + "start": 208896, + "type": "0FC63DAF-8483-4772-8E79-3D69D8477DE4", + "uuid": "6264D520-3FB9-423F-8AB8-7A0A8E3D3562", + "filesystem": { + "type": "xfs", + "uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "label": "root", + "mountpoint": "/" + } + } + ] + } + } + } + }, + "rpmmd": { + "build-packages": [ + { + "name": "acl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/acl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "name": "audit-libs", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "name": "basesystem", + "epoch": 0, + "version": "11", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/basesystem-11-5.el8.noarch.rpm", + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "name": "bash", + "epoch": 0, + "version": "4.4.19", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bash-4.4.19-14.el8.x86_64.rpm", + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "name": "brotli", + "epoch": 0, + "version": "1.0.6", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/brotli-1.0.6-3.el8.x86_64.rpm", + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "name": "bzip2-libs", + "epoch": 0, + "version": "1.0.6", + "release": "26.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.6-26.el8.x86_64.rpm", + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "name": "ca-certificates", + "epoch": 0, + "version": "2020.2.41", + "release": "80.0.el8_2", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ca-certificates-2020.2.41-80.0.el8_2.noarch.rpm", + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "name": "centos-gpg-keys", + "epoch": 1, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-gpg-keys-8-2.el8.noarch.rpm", + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "name": "centos-stream-release", + "epoch": 0, + "version": "8.4", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-release-8.4-1.el8.noarch.rpm", + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "name": "centos-stream-repos", + "epoch": 0, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-repos-8-2.el8.noarch.rpm", + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "name": "chkconfig", + "epoch": 0, + "version": "1.13", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chkconfig-1.13-2.el8.x86_64.rpm", + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "name": "coreutils", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "name": "coreutils-common", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-common-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "name": "cpio", + "epoch": 0, + "version": "2.12", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cpio-2.12-10.el8.x86_64.rpm", + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "name": "cracklib", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "name": "cracklib-dicts", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "name": "crypto-policies", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "name": "crypto-policies-scripts", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-scripts-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "name": "cryptsetup-libs", + "epoch": 0, + "version": "2.3.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.3.3-2.el8.x86_64.rpm", + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "name": "curl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/curl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "name": "cyrus-sasl-lib", + "epoch": 0, + "version": "2.1.27", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-5.el8.x86_64.rpm", + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "name": "dbus", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "name": "dbus-common", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-common-1.12.8-12.el8.noarch.rpm", + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "name": "dbus-daemon", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-daemon-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "name": "dbus-libs", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-libs-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "name": "dbus-tools", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-tools-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "name": "device-mapper", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "name": "device-mapper-libs", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "name": "diffutils", + "epoch": 0, + "version": "3.6", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/diffutils-3.6-6.el8.x86_64.rpm", + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "name": "dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "name": "dnf-data", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-data-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "name": "dosfstools", + "epoch": 0, + "version": "4.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dosfstools-4.1-6.el8.x86_64.rpm", + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "name": "dracut", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "name": "e2fsprogs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "name": "e2fsprogs-libs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "name": "elfutils-debuginfod-client", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "name": "elfutils-default-yama-scope", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.182-3.el8.noarch.rpm", + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "name": "elfutils-libelf", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libelf-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "name": "elfutils-libs", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libs-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "name": "expat", + "epoch": 0, + "version": "2.2.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/expat-2.2.5-4.el8.x86_64.rpm", + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "name": "file", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "name": "file-libs", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-libs-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "name": "filesystem", + "epoch": 0, + "version": "3.8", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/filesystem-3.8-4.el8.x86_64.rpm", + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "name": "findutils", + "epoch": 1, + "version": "4.6.0", + "release": "20.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/findutils-4.6.0-20.el8.x86_64.rpm", + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "name": "freetype", + "epoch": 0, + "version": "2.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/freetype-2.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "name": "fuse-libs", + "epoch": 0, + "version": "2.9.7", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-libs-2.9.7-12.el8.x86_64.rpm", + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "name": "gawk", + "epoch": 0, + "version": "4.2.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gawk-4.2.1-2.el8.x86_64.rpm", + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "name": "gdbm", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "name": "gdbm-libs", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-libs-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "name": "gettext", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "name": "gettext-libs", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-libs-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "name": "glib2", + "epoch": 0, + "version": "2.56.4", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib2-2.56.4-9.el8.x86_64.rpm", + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "name": "glibc", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "name": "glibc-all-langpacks", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-all-langpacks-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af", + "check_gpg": true + }, + { + "name": "glibc-common", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-common-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "name": "gmp", + "epoch": 1, + "version": "6.1.2", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gmp-6.1.2-10.el8.x86_64.rpm", + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "name": "gnupg2", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "name": "gnupg2-smime", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-smime-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "name": "gnutls", + "epoch": 0, + "version": "3.6.14", + "release": "7.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnutls-3.6.14-7.el8_3.x86_64.rpm", + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "name": "gpgme", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gpgme-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "name": "grep", + "epoch": 0, + "version": "3.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grep-3.1-6.el8.x86_64.rpm", + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "name": "grub2-common", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-common-2.02-93.el8.noarch.rpm", + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "name": "grub2-pc", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "name": "grub2-pc-modules", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-modules-2.02-93.el8.noarch.rpm", + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "name": "grub2-tools", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "name": "grub2-tools-extra", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-extra-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "name": "grub2-tools-minimal", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-minimal-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "name": "grubby", + "epoch": 0, + "version": "8.40", + "release": "41.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grubby-8.40-41.el8.x86_64.rpm", + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "name": "gzip", + "epoch": 0, + "version": "1.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gzip-1.9-12.el8.x86_64.rpm", + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "name": "hardlink", + "epoch": 1, + "version": "1.3", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hardlink-1.3-6.el8.x86_64.rpm", + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "name": "hwdata", + "epoch": 0, + "version": "0.314", + "release": "8.7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hwdata-0.314-8.7.el8.noarch.rpm", + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "name": "ima-evm-utils", + "epoch": 0, + "version": "1.3.2", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ima-evm-utils-1.3.2-11.el8.x86_64.rpm", + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "name": "info", + "epoch": 0, + "version": "6.5", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/info-6.5-6.el8.x86_64.rpm", + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "name": "iptables-libs", + "epoch": 0, + "version": "1.8.4", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-libs-1.8.4-17.el8.x86_64.rpm", + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "name": "json-c", + "epoch": 0, + "version": "0.13.1", + "release": "0.4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-c-0.13.1-0.4.el8.x86_64.rpm", + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "name": "kbd", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-2.0.4-10.el8.x86_64.rpm", + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "name": "kbd-legacy", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-legacy-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "name": "kbd-misc", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-misc-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "name": "keyutils-libs", + "epoch": 0, + "version": "1.5.10", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-libs-1.5.10-6.el8.x86_64.rpm", + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "name": "kmod", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-25-17.el8.x86_64.rpm", + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "name": "kmod-libs", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-libs-25-17.el8.x86_64.rpm", + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "name": "kpartx", + "epoch": 0, + "version": "0.8.4", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kpartx-0.8.4-8.el8.x86_64.rpm", + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "name": "krb5-libs", + "epoch": 0, + "version": "1.18.2", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/krb5-libs-1.18.2-8.el8.x86_64.rpm", + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "name": "libacl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libacl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "name": "libaio", + "epoch": 0, + "version": "0.3.112", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libaio-0.3.112-1.el8.x86_64.rpm", + "checksum": "sha256:2c63399bee449fb6e921671a9bbf3356fda73f890b578820f7d926202e98a479", + "check_gpg": true + }, + { + "name": "libarchive", + "epoch": 0, + "version": "3.3.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libarchive-3.3.3-1.el8.x86_64.rpm", + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "name": "libassuan", + "epoch": 0, + "version": "2.5.1", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libassuan-2.5.1-3.el8.x86_64.rpm", + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "name": "libattr", + "epoch": 0, + "version": "2.4.48", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libattr-2.4.48-3.el8.x86_64.rpm", + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "name": "libblkid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libblkid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "name": "libcap", + "epoch": 0, + "version": "2.26", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-2.26-4.el8.x86_64.rpm", + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "name": "libcap-ng", + "epoch": 0, + "version": "0.7.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-ng-0.7.9-5.el8.x86_64.rpm", + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "name": "libcom_err", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcom_err-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "name": "libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "name": "libcroco", + "epoch": 0, + "version": "0.6.12", + "release": "4.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcroco-0.6.12-4.el8_2.1.x86_64.rpm", + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "name": "libcurl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcurl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "name": "libdb", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "name": "libdb-utils", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-utils-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "name": "libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "name": "libevent", + "epoch": 0, + "version": "2.1.8", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libevent-2.1.8-5.el8.x86_64.rpm", + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "name": "libfdisk", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libfdisk-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "name": "libffi", + "epoch": 0, + "version": "3.1", + "release": "22.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libffi-3.1-22.el8.x86_64.rpm", + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "name": "libgcc", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcc-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "name": "libgcrypt", + "epoch": 0, + "version": "1.8.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcrypt-1.8.5-4.el8.x86_64.rpm", + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "name": "libgomp", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgomp-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "name": "libgpg-error", + "epoch": 0, + "version": "1.31", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgpg-error-1.31-1.el8.x86_64.rpm", + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "name": "libibverbs", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libibverbs-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "name": "libidn2", + "epoch": 0, + "version": "2.2.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libidn2-2.2.0-1.el8.x86_64.rpm", + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "name": "libkcapi", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "name": "libkcapi-hmaccalc", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-hmaccalc-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "name": "libksba", + "epoch": 0, + "version": "1.3.5", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libksba-1.3.5-7.el8.x86_64.rpm", + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "name": "libmetalink", + "epoch": 0, + "version": "0.1.3", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmetalink-0.1.3-7.el8.x86_64.rpm", + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "name": "libmodulemd", + "epoch": 0, + "version": "2.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodulemd-2.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "name": "libmount", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmount-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "name": "libnghttp2", + "epoch": 0, + "version": "1.33.0", + "release": "3.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnghttp2-1.33.0-3.el8_2.1.x86_64.rpm", + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "name": "libnl3", + "epoch": 0, + "version": "3.5.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-3.5.0-1.el8.x86_64.rpm", + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "name": "libnsl2", + "epoch": 0, + "version": "1.2.0", + "release": "2.20180605git4a062cf.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64.rpm", + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "name": "libpcap", + "epoch": 14, + "version": "1.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpcap-1.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "name": "libpng", + "epoch": 2, + "version": "1.6.34", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpng-1.6.34-5.el8.x86_64.rpm", + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "name": "libpsl", + "epoch": 0, + "version": "0.20.2", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpsl-0.20.2-6.el8.x86_64.rpm", + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "name": "libpwquality", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "name": "librepo", + "epoch": 0, + "version": "1.12.0", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/librepo-1.12.0-3.el8.x86_64.rpm", + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "name": "libreport-filesystem", + "epoch": 0, + "version": "2.9.5", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libreport-filesystem-2.9.5-15.el8.x86_64.rpm", + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "name": "libseccomp", + "epoch": 0, + "version": "2.4.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libseccomp-2.4.3-1.el8.x86_64.rpm", + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "name": "libsecret", + "epoch": 0, + "version": "0.18.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsecret-0.18.6-1.el8.x86_64.rpm", + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "name": "libselinux", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "name": "libselinux-utils", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-utils-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "name": "libsemanage", + "epoch": 0, + "version": "2.9", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsemanage-2.9-6.el8.x86_64.rpm", + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "name": "libsepol", + "epoch": 0, + "version": "2.9", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsepol-2.9-2.el8.x86_64.rpm", + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "name": "libsigsegv", + "epoch": 0, + "version": "2.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsigsegv-2.11-5.el8.x86_64.rpm", + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "name": "libsmartcols", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmartcols-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "name": "libsolv", + "epoch": 0, + "version": "0.7.16", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsolv-0.7.16-2.el8.x86_64.rpm", + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "name": "libss", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libss-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "name": "libssh", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-0.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "name": "libssh-config", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-config-0.9.4-2.el8.noarch.rpm", + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "name": "libstdc++", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstdc++-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "name": "libtasn1", + "epoch": 0, + "version": "4.13", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtasn1-4.13-3.el8.x86_64.rpm", + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "name": "libtirpc", + "epoch": 0, + "version": "1.1.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtirpc-1.1.4-4.el8.x86_64.rpm", + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "name": "libunistring", + "epoch": 0, + "version": "0.9.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libunistring-0.9.9-3.el8.x86_64.rpm", + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "name": "libusbx", + "epoch": 0, + "version": "1.0.23", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libusbx-1.0.23-4.el8.x86_64.rpm", + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "name": "libutempter", + "epoch": 0, + "version": "1.1.6", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libutempter-1.1.6-14.el8.x86_64.rpm", + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "name": "libuuid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuuid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "name": "libverto", + "epoch": 0, + "version": "0.3.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-0.3.0-5.el8.x86_64.rpm", + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "name": "libxcrypt", + "epoch": 0, + "version": "4.1.1", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxcrypt-4.1.1-4.el8.x86_64.rpm", + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "name": "libxml2", + "epoch": 0, + "version": "2.9.7", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxml2-2.9.7-9.el8.x86_64.rpm", + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "name": "libyaml", + "epoch": 0, + "version": "0.1.7", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libyaml-0.1.7-5.el8.x86_64.rpm", + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "name": "libzstd", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libzstd-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "name": "lua-libs", + "epoch": 0, + "version": "5.3.4", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lua-libs-5.3.4-11.el8.x86_64.rpm", + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "name": "lz4-libs", + "epoch": 0, + "version": "1.8.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lz4-libs-1.8.3-2.el8.x86_64.rpm", + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "name": "memstrack", + "epoch": 0, + "version": "0.1.11", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/memstrack-0.1.11-1.el8.x86_64.rpm", + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "name": "mpfr", + "epoch": 0, + "version": "3.1.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mpfr-3.1.6-1.el8.x86_64.rpm", + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "name": "ncurses", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "name": "ncurses-base", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-base-6.1-7.20180224.el8.noarch.rpm", + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "name": "ncurses-libs", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-libs-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "name": "nettle", + "epoch": 0, + "version": "3.4.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nettle-3.4.1-2.el8.x86_64.rpm", + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "name": "npth", + "epoch": 0, + "version": "1.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/npth-1.5-4.el8.x86_64.rpm", + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "name": "openldap", + "epoch": 0, + "version": "2.4.46", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openldap-2.4.46-16.el8.x86_64.rpm", + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "name": "openssl", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "name": "openssl-libs", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-libs-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "name": "openssl-pkcs11", + "epoch": 0, + "version": "0.4.10", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-pkcs11-0.4.10-2.el8.x86_64.rpm", + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "name": "os-prober", + "epoch": 0, + "version": "1.74", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/os-prober-1.74-6.el8.x86_64.rpm", + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "name": "p11-kit", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "name": "p11-kit-trust", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-trust-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "name": "pam", + "epoch": 0, + "version": "1.3.1", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pam-1.3.1-14.el8.x86_64.rpm", + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "name": "pciutils", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "name": "pciutils-libs", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-libs-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "name": "pcre", + "epoch": 0, + "version": "8.42", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre-8.42-4.el8.x86_64.rpm", + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "name": "pcre2", + "epoch": 0, + "version": "10.32", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre2-10.32-2.el8.x86_64.rpm", + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "name": "pigz", + "epoch": 0, + "version": "2.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pigz-2.4-4.el8.x86_64.rpm", + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "name": "platform-python", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "name": "platform-python-pip", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-pip-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "name": "platform-python-setuptools", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-setuptools-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "name": "policycoreutils", + "epoch": 0, + "version": "2.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-2.9-12.el8.x86_64.rpm", + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "name": "popt", + "epoch": 0, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/popt-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "name": "procps-ng", + "epoch": 0, + "version": "3.3.15", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/procps-ng-3.3.15-6.el8.x86_64.rpm", + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "name": "publicsuffix-list-dafsa", + "epoch": 0, + "version": "20180723", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20180723-1.el8.noarch.rpm", + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "name": "python3-dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "name": "python3-gpg", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gpg-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "name": "python3-hawkey", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-hawkey-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "name": "python3-iniparse", + "epoch": 0, + "version": "0.4", + "release": "31.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-iniparse-0.4-31.el8.noarch.rpm", + "checksum": "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178", + "check_gpg": true + }, + { + "name": "python3-libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "name": "python3-libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "name": "python3-libs", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libs-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "name": "python3-pip-wheel", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pip-wheel-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "name": "python3-rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "name": "python3-setuptools", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:c6f27b6e01d80e756408e3c1451e4af00e7d02da0aa24402644c0785118753fe", + "check_gpg": true + }, + { + "name": "python3-setuptools-wheel", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "name": "python3-six", + "epoch": 0, + "version": "1.11.0", + "release": "8.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-six-1.11.0-8.el8.noarch.rpm", + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "name": "rdma-core", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rdma-core-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "name": "readline", + "epoch": 0, + "version": "7.0", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/readline-7.0-10.el8.x86_64.rpm", + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "name": "rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "name": "rpm-build-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-build-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "name": "rpm-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "name": "rpm-plugin-selinux", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "name": "rpm-plugin-systemd-inhibit", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "name": "sed", + "epoch": 0, + "version": "4.5", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sed-4.5-2.el8.x86_64.rpm", + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "name": "selinux-policy", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "name": "selinux-policy-targeted", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-targeted-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "name": "setup", + "epoch": 0, + "version": "2.12.2", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/setup-2.12.2-6.el8.noarch.rpm", + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "name": "shadow-utils", + "epoch": 2, + "version": "4.6", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shadow-utils-4.6-12.el8.x86_64.rpm", + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "name": "shared-mime-info", + "epoch": 0, + "version": "1.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shared-mime-info-1.9-3.el8.x86_64.rpm", + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "name": "sqlite-libs", + "epoch": 0, + "version": "3.26.0", + "release": "13.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sqlite-libs-3.26.0-13.el8.x86_64.rpm", + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "name": "systemd", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-239-44.el8.x86_64.rpm", + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "name": "systemd-libs", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-libs-239-44.el8.x86_64.rpm", + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "name": "systemd-pam", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-pam-239-44.el8.x86_64.rpm", + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "name": "systemd-udev", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-udev-239-44.el8.x86_64.rpm", + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "name": "tar", + "epoch": 2, + "version": "1.30", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tar-1.30-5.el8.x86_64.rpm", + "checksum": "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393", + "check_gpg": true + }, + { + "name": "tpm2-tss", + "epoch": 0, + "version": "2.3.2", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tpm2-tss-2.3.2-3.el8.x86_64.rpm", + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "name": "trousers", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "name": "trousers-lib", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-lib-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "name": "tzdata", + "epoch": 0, + "version": "2021a", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tzdata-2021a-1.el8.noarch.rpm", + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "name": "util-linux", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/util-linux-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "name": "which", + "epoch": 0, + "version": "2.21", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/which-2.21-12.el8.x86_64.rpm", + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "name": "xfsprogs", + "epoch": 0, + "version": "5.0.0", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xfsprogs-5.0.0-8.el8.x86_64.rpm", + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "name": "xz", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "name": "xz-libs", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-libs-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "name": "zlib", + "epoch": 0, + "version": "1.2.11", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/zlib-1.2.11-17.el8.x86_64.rpm", + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "name": "libxkbcommon", + "epoch": 0, + "version": "0.9.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxkbcommon-0.9.1-1.el8.x86_64.rpm", + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "name": "pinentry", + "epoch": 0, + "version": "1.1.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pinentry-1.1.0-2.el8.x86_64.rpm", + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "name": "python3-pip", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pip-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:a2418e8e12144d4e84965298e7bbefedc876c0d0d93771afb9b5c6c2eb139dc0", + "check_gpg": true + }, + { + "name": "python3-unbound", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-unbound-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "name": "python36", + "epoch": 0, + "version": "3.6.8", + "release": "2.module_el8.4.0+666+456f5f48", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python36-3.6.8-2.module_el8.4.0+666+456f5f48.x86_64.rpm", + "checksum": "sha256:df417aae69f2ba5bd4324a14dcfd30dfbfefba440085bbf916c5ef19286cba20", + "check_gpg": true + }, + { + "name": "qemu-img", + "epoch": 15, + "version": "4.2.0", + "release": "35.module_el8.4.0+547+a85d02ba", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/qemu-img-4.2.0-35.module_el8.4.0+547+a85d02ba.x86_64.rpm", + "checksum": "sha256:f6f7907ccf8faa83a93e6d48801970aa45181a3a3c05ad7102b540a07534e318", + "check_gpg": true + }, + { + "name": "unbound-libs", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/unbound-libs-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "name": "xkeyboard-config", + "epoch": 0, + "version": "2.28", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xkeyboard-config-2.28-1.el8.noarch.rpm", + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ], + "packages": [ + { + "name": "ModemManager-glib", + "epoch": 0, + "version": "1.10.8", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ModemManager-glib-1.10.8-2.el8.x86_64.rpm", + "checksum": "sha256:508e9470ed648c28c1ef5a4a74072b188daa795f2369d10929f1ddbb5d3b5a3f", + "check_gpg": true + }, + { + "name": "NetworkManager", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:1d130b0daf86899c3987d59567303ce7ae44c3273f2d8d0f0625bef7e6bad16d", + "check_gpg": true + }, + { + "name": "NetworkManager-libnm", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-libnm-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:41d9c9f8e17c83f73e51e90f02e08927bb9c836d033815c6cdddc6da44e321f0", + "check_gpg": true + }, + { + "name": "NetworkManager-team", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-team-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:f60f24ba76f7f9d9f42421153d296a279fb616165a27cf2c71657a901a425bb1", + "check_gpg": true + }, + { + "name": "NetworkManager-tui", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-tui-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:657db08f58b6776f48fda17d2b734a26918b431253f9e4eba9fd5a46d9f89aef", + "check_gpg": true + }, + { + "name": "acl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/acl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "name": "audit", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:b0149d85f0172e98866ff2483660af2cf6c6fa0c8f9cab2c51cc2af479c9e319", + "check_gpg": true + }, + { + "name": "audit-libs", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "name": "authselect", + "epoch": 0, + "version": "1.2.2", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-1.2.2-1.el8.x86_64.rpm", + "checksum": "sha256:cb5072917ce75dbde8fe474fa872db85da5dbac59cc1eb4a9125e7b6280f254e", + "check_gpg": true + }, + { + "name": "authselect-libs", + "epoch": 0, + "version": "1.2.2", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-libs-1.2.2-1.el8.x86_64.rpm", + "checksum": "sha256:a217b0fbe9757a0225b66d16c1668cdf5cb2aa69c68b89e79783abd507f2e7bf", + "check_gpg": true + }, + { + "name": "basesystem", + "epoch": 0, + "version": "11", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/basesystem-11-5.el8.noarch.rpm", + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "name": "bash", + "epoch": 0, + "version": "4.4.19", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bash-4.4.19-14.el8.x86_64.rpm", + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "name": "bind-export-libs", + "epoch": 32, + "version": "9.11.26", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bind-export-libs-9.11.26-2.el8.x86_64.rpm", + "checksum": "sha256:2d4cf3bd8b8046adfa869fbb5b472294469457f6445db36abcc227959be9adeb", + "check_gpg": true + }, + { + "name": "biosdevname", + "epoch": 0, + "version": "0.7.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/biosdevname-0.7.3-2.el8.x86_64.rpm", + "checksum": "sha256:0caa72888379f82fae1bc8f448bcf0dbaead20e92f2ef4c714afadf8979c3181", + "check_gpg": true + }, + { + "name": "brotli", + "epoch": 0, + "version": "1.0.6", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/brotli-1.0.6-3.el8.x86_64.rpm", + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "name": "bubblewrap", + "epoch": 0, + "version": "0.4.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bubblewrap-0.4.0-1.el8.x86_64.rpm", + "checksum": "sha256:9e78ec1230b9ec69ef8e3ad0484cbe3b5c36cfc214d90f890a49093b22df2948", + "check_gpg": true + }, + { + "name": "bzip2-libs", + "epoch": 0, + "version": "1.0.6", + "release": "26.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.6-26.el8.x86_64.rpm", + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "name": "c-ares", + "epoch": 0, + "version": "1.13.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/c-ares-1.13.0-5.el8.x86_64.rpm", + "checksum": "sha256:9d160cdfba107ddc0613e169311bf57077c04e71a052a57704f3bdb64729d565", + "check_gpg": true + }, + { + "name": "ca-certificates", + "epoch": 0, + "version": "2020.2.41", + "release": "80.0.el8_2", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ca-certificates-2020.2.41-80.0.el8_2.noarch.rpm", + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "name": "centos-gpg-keys", + "epoch": 1, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-gpg-keys-8-2.el8.noarch.rpm", + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "name": "centos-stream-release", + "epoch": 0, + "version": "8.4", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-release-8.4-1.el8.noarch.rpm", + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "name": "centos-stream-repos", + "epoch": 0, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-repos-8-2.el8.noarch.rpm", + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "name": "checkpolicy", + "epoch": 0, + "version": "2.9", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/checkpolicy-2.9-1.el8.x86_64.rpm", + "checksum": "sha256:d5c283da0d2666742635754626263f6f78e273cd46d83d2d66ed43730a731685", + "check_gpg": true + }, + { + "name": "chkconfig", + "epoch": 0, + "version": "1.13", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chkconfig-1.13-2.el8.x86_64.rpm", + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "name": "coreutils", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "name": "coreutils-common", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-common-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "name": "cpio", + "epoch": 0, + "version": "2.12", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cpio-2.12-10.el8.x86_64.rpm", + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "name": "cracklib", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "name": "cracklib-dicts", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "name": "cronie", + "epoch": 0, + "version": "1.5.2", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-1.5.2-4.el8.x86_64.rpm", + "checksum": "sha256:63a6b7765828081cc88b36d10c68621acbebf02a7c2e7d7f1a1217c8742ea6ae", + "check_gpg": true + }, + { + "name": "cronie-anacron", + "epoch": 0, + "version": "1.5.2", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-anacron-1.5.2-4.el8.x86_64.rpm", + "checksum": "sha256:71fcbbec3aa152bc1427cb4d597375b008438f6259b20cfcb68fff21eef80f91", + "check_gpg": true + }, + { + "name": "crontabs", + "epoch": 0, + "version": "1.11", + "release": "17.20190603git.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crontabs-1.11-17.20190603git.el8.noarch.rpm", + "checksum": "sha256:bcf25aae89f7368b16346bc1ec92850175bcc2312bf7a5e74bc3c512bcd345b0", + "check_gpg": true + }, + { + "name": "crypto-policies", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "name": "crypto-policies-scripts", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-scripts-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "name": "cryptsetup-libs", + "epoch": 0, + "version": "2.3.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.3.3-2.el8.x86_64.rpm", + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "name": "curl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/curl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "name": "cyrus-sasl-lib", + "epoch": 0, + "version": "2.1.27", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-5.el8.x86_64.rpm", + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "name": "dbus", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "name": "dbus-common", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-common-1.12.8-12.el8.noarch.rpm", + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "name": "dbus-daemon", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-daemon-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "name": "dbus-glib", + "epoch": 0, + "version": "0.110", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-glib-0.110-2.el8.x86_64.rpm", + "checksum": "sha256:f86fec6c6a844fbbfbf7c806d79dd7e72e4eef9c804472547a6d3ecf34cddca6", + "check_gpg": true + }, + { + "name": "dbus-libs", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-libs-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "name": "dbus-tools", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-tools-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "name": "device-mapper", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "name": "device-mapper-libs", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "name": "dhcp-client", + "epoch": 12, + "version": "4.3.6", + "release": "44.0.1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-client-4.3.6-44.0.1.el8.x86_64.rpm", + "checksum": "sha256:084c55bef75a2ce2ab67aa4eeb6726ca59ea6d7c2b23bc6e4084f11aac7e17f8", + "check_gpg": true + }, + { + "name": "dhcp-common", + "epoch": 12, + "version": "4.3.6", + "release": "44.0.1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-common-4.3.6-44.0.1.el8.noarch.rpm", + "checksum": "sha256:7ec48db9e1e9896f29a16cbea53cdeecdd7dd2bc278c06721ebca2e71e9dcd6d", + "check_gpg": true + }, + { + "name": "dhcp-libs", + "epoch": 12, + "version": "4.3.6", + "release": "44.0.1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-libs-4.3.6-44.0.1.el8.x86_64.rpm", + "checksum": "sha256:436e93b4c072f8b6f90f41a037d017406be10c18efafc8c634f6da59bbac1105", + "check_gpg": true + }, + { + "name": "diffutils", + "epoch": 0, + "version": "3.6", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/diffutils-3.6-6.el8.x86_64.rpm", + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "name": "dmidecode", + "epoch": 1, + "version": "3.2", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dmidecode-3.2-8.el8.x86_64.rpm", + "checksum": "sha256:b2cd2dc5cf9c1c118053e7e650c6d910b1d37e810a38d90de27d80a04b702e39", + "check_gpg": true + }, + { + "name": "dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "name": "dnf-data", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-data-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "name": "dnf-plugins-core", + "epoch": 0, + "version": "4.0.18", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-plugins-core-4.0.18-3.el8.noarch.rpm", + "checksum": "sha256:c4a5df7ec884bdcc929e73e066c7def89cfb8cf53306ffcf9f33a5c9e4ae84c7", + "check_gpg": true + }, + { + "name": "dosfstools", + "epoch": 0, + "version": "4.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dosfstools-4.1-6.el8.x86_64.rpm", + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "name": "dracut", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "name": "dracut-config-generic", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-config-generic-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:760141c74870a93505dbba2174034287b6a97b9bb2b12c5ca2b7af056773b45b", + "check_gpg": true + }, + { + "name": "dracut-network", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-network-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:4a28d9fa9785d7e8515deaf5e1a381a553c37b02a81a20ddd4fa202b33413ac9", + "check_gpg": true + }, + { + "name": "dracut-squash", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-squash-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:16b34582f757aebb9bc7b0a0475458cbb186238b5b528ef8fdb099cb739ba383", + "check_gpg": true + }, + { + "name": "e2fsprogs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "name": "e2fsprogs-libs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "name": "efi-filesystem", + "epoch": 0, + "version": "3", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efi-filesystem-3-3.el8.noarch.rpm", + "checksum": "sha256:d655ee126614010e72bac89b7ecaf38b515647181a22940cb774647442d28beb", + "check_gpg": true + }, + { + "name": "efivar-libs", + "epoch": 0, + "version": "37", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efivar-libs-37-4.el8.x86_64.rpm", + "checksum": "sha256:48bfe66d6f07baf1974355e8a3ebbc44f2d9812b823ddfff1c15f35635a8dc4e", + "check_gpg": true + }, + { + "name": "elfutils-debuginfod-client", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "name": "elfutils-default-yama-scope", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.182-3.el8.noarch.rpm", + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "name": "elfutils-libelf", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libelf-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "name": "elfutils-libs", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libs-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "name": "ethtool", + "epoch": 2, + "version": "5.8", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ethtool-5.8-5.el8.x86_64.rpm", + "checksum": "sha256:f7e6debd0279cb07f0c805d90b707c187bb55b9ee34643898eec800b79fa6b1b", + "check_gpg": true + }, + { + "name": "expat", + "epoch": 0, + "version": "2.2.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/expat-2.2.5-4.el8.x86_64.rpm", + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "name": "file", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "name": "file-libs", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-libs-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "name": "filesystem", + "epoch": 0, + "version": "3.8", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/filesystem-3.8-4.el8.x86_64.rpm", + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "name": "findutils", + "epoch": 1, + "version": "4.6.0", + "release": "20.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/findutils-4.6.0-20.el8.x86_64.rpm", + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "name": "firewalld", + "epoch": 0, + "version": "0.8.2", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/firewalld-0.8.2-6.el8.noarch.rpm", + "checksum": "sha256:7bfc1981e5e1fd706c23ba10090dd05fb0828df11aa98a3dc89ee8b1d2663f7a", + "check_gpg": true + }, + { + "name": "firewalld-filesystem", + "epoch": 0, + "version": "0.8.2", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/firewalld-filesystem-0.8.2-6.el8.noarch.rpm", + "checksum": "sha256:638eb361523ce75963c8234fdeb6df8084a62e09a7ff5b00125b507955a28b28", + "check_gpg": true + }, + { + "name": "freetype", + "epoch": 0, + "version": "2.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/freetype-2.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "name": "fuse-libs", + "epoch": 0, + "version": "2.9.7", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-libs-2.9.7-12.el8.x86_64.rpm", + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "name": "fwupd", + "epoch": 0, + "version": "1.5.5", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fwupd-1.5.5-1.el8.x86_64.rpm", + "checksum": "sha256:6710a1b2f28e5ffd0fff3e74a76d84d12a602be79703e53e1a55166f2f7d141c", + "check_gpg": true + }, + { + "name": "gawk", + "epoch": 0, + "version": "4.2.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gawk-4.2.1-2.el8.x86_64.rpm", + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "name": "gdbm", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "name": "gdbm-libs", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-libs-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "name": "gdisk", + "epoch": 0, + "version": "1.0.3", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdisk-1.0.3-6.el8.x86_64.rpm", + "checksum": "sha256:fa0b90c4da7f7ca8bf40055be5641a2c57708931fec5f760a2f8944325669fe9", + "check_gpg": true + }, + { + "name": "gettext", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "name": "gettext-libs", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-libs-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "name": "glib2", + "epoch": 0, + "version": "2.56.4", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib2-2.56.4-9.el8.x86_64.rpm", + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "name": "glibc", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "name": "glibc-common", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-common-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "name": "glibc-langpack-en", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-langpack-en-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:3162a4a9159994002c3c6f5fe6a12160020e8f3484f1406ff5092311ca639548", + "check_gpg": true + }, + { + "name": "gmp", + "epoch": 1, + "version": "6.1.2", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gmp-6.1.2-10.el8.x86_64.rpm", + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "name": "gnupg2", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "name": "gnupg2-smime", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-smime-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "name": "gnutls", + "epoch": 0, + "version": "3.6.14", + "release": "7.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnutls-3.6.14-7.el8_3.x86_64.rpm", + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "name": "gobject-introspection", + "epoch": 0, + "version": "1.56.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gobject-introspection-1.56.1-1.el8.x86_64.rpm", + "checksum": "sha256:7e2804a4494d4179ed50c0c99da1e30c3a6abf8db889c1412b458943cff0e3e5", + "check_gpg": true + }, + { + "name": "gpgme", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gpgme-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "name": "grep", + "epoch": 0, + "version": "3.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grep-3.1-6.el8.x86_64.rpm", + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "name": "groff-base", + "epoch": 0, + "version": "1.22.3", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/groff-base-1.22.3-18.el8.x86_64.rpm", + "checksum": "sha256:b00855013100d3796e9ed6d82b1ab2d4dc7f4a3a3fa2e186f6de8523577974a0", + "check_gpg": true + }, + { + "name": "grub2-common", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-common-2.02-93.el8.noarch.rpm", + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "name": "grub2-efi-x64", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-efi-x64-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:79277d872ae6035009a1a40e914ec09bca21aefcac9d73dee65880c86387f3c9", + "check_gpg": true + }, + { + "name": "grub2-pc", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "name": "grub2-pc-modules", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-modules-2.02-93.el8.noarch.rpm", + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "name": "grub2-tools", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "name": "grub2-tools-extra", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-extra-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "name": "grub2-tools-minimal", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-minimal-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "name": "grubby", + "epoch": 0, + "version": "8.40", + "release": "41.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grubby-8.40-41.el8.x86_64.rpm", + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "name": "gzip", + "epoch": 0, + "version": "1.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gzip-1.9-12.el8.x86_64.rpm", + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "name": "hardlink", + "epoch": 1, + "version": "1.3", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hardlink-1.3-6.el8.x86_64.rpm", + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "name": "hdparm", + "epoch": 0, + "version": "9.54", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hdparm-9.54-3.el8.x86_64.rpm", + "checksum": "sha256:3c6650fd6e32fdc24b8cf1f7a85ae8232661b47bda7019e49fd0eb474683ff23", + "check_gpg": true + }, + { + "name": "hostname", + "epoch": 0, + "version": "3.20", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hostname-3.20-6.el8.x86_64.rpm", + "checksum": "sha256:7a7963e2052bfb45b8569f64619dc5cb92fe8aeb78c754b7cf948b9784646785", + "check_gpg": true + }, + { + "name": "hwdata", + "epoch": 0, + "version": "0.314", + "release": "8.7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hwdata-0.314-8.7.el8.noarch.rpm", + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "name": "ima-evm-utils", + "epoch": 0, + "version": "1.3.2", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ima-evm-utils-1.3.2-11.el8.x86_64.rpm", + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "name": "info", + "epoch": 0, + "version": "6.5", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/info-6.5-6.el8.x86_64.rpm", + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "name": "initscripts", + "epoch": 0, + "version": "10.00.12", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/initscripts-10.00.12-1.el8.x86_64.rpm", + "checksum": "sha256:7fa8fbc576f7d54c388fa39fc3ed86bacb7964cac4544c48b3ffabcdcdc27b61", + "check_gpg": true + }, + { + "name": "ipcalc", + "epoch": 0, + "version": "0.2.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipcalc-0.2.4-4.el8.x86_64.rpm", + "checksum": "sha256:dea18976861575d40ffca814dee08a225376c7828a5afc9e5d0a383edd3d8907", + "check_gpg": true + }, + { + "name": "iproute", + "epoch": 0, + "version": "5.9.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iproute-5.9.0-2.el8.x86_64.rpm", + "checksum": "sha256:a456039834ccc5432949120f1d80b18329b552cf44d1b59ea1b60d2192e7bc5c", + "check_gpg": true + }, + { + "name": "iprutils", + "epoch": 0, + "version": "2.4.19", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iprutils-2.4.19-1.el8.x86_64.rpm", + "checksum": "sha256:d9acc32cf03ac203066bfa8d6d3f71eaedbad719f3ffc5056a387b548ae958e8", + "check_gpg": true + }, + { + "name": "ipset", + "epoch": 0, + "version": "7.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipset-7.1-1.el8.x86_64.rpm", + "checksum": "sha256:82e27237686171b812aee7903c11ec4f8dbdb6544e419758fb0fbd61731044b0", + "check_gpg": true + }, + { + "name": "ipset-libs", + "epoch": 0, + "version": "7.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipset-libs-7.1-1.el8.x86_64.rpm", + "checksum": "sha256:6f699a1e24a6bb76904ef1a588e3b3ef116cad07a5cbad86c6cdb522c00670dd", + "check_gpg": true + }, + { + "name": "iptables", + "epoch": 0, + "version": "1.8.4", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-1.8.4-17.el8.x86_64.rpm", + "checksum": "sha256:0c6624b9391a76c0f9e54c387641bd4ed079c3bfc30e8f890afc4203955b2acb", + "check_gpg": true + }, + { + "name": "iptables-ebtables", + "epoch": 0, + "version": "1.8.4", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-ebtables-1.8.4-17.el8.x86_64.rpm", + "checksum": "sha256:59683b6fff42b40d3a3abbdeb928bb18b4cd84700aaeb9b3c76d37044ae94e01", + "check_gpg": true + }, + { + "name": "iptables-libs", + "epoch": 0, + "version": "1.8.4", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-libs-1.8.4-17.el8.x86_64.rpm", + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "name": "iputils", + "epoch": 0, + "version": "20180629", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iputils-20180629-6.el8.x86_64.rpm", + "checksum": "sha256:74b842ba3352d7c4ada7e991aeadf8749f058a4d00ccc6f79f1c82a281497cb7", + "check_gpg": true + }, + { + "name": "irqbalance", + "epoch": 2, + "version": "1.4.0", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/irqbalance-1.4.0-6.el8.x86_64.rpm", + "checksum": "sha256:3acd2c8b6ea534811308b3138859b5fa150b89604bb60f16b0650747039d696a", + "check_gpg": true + }, + { + "name": "iwl100-firmware", + "epoch": 0, + "version": "39.31.5.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl100-firmware-39.31.5.1-102.el8.1.noarch.rpm", + "checksum": "sha256:e0564d34fde9cf1a42e0fd4ba81ea7ce71bcca8823186f0221e56994bef275c6", + "check_gpg": true + }, + { + "name": "iwl1000-firmware", + "epoch": 1, + "version": "39.31.5.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl1000-firmware-39.31.5.1-102.el8.1.noarch.rpm", + "checksum": "sha256:078fa234177ae5ae2736c878aa2a2f8ecccf4c7772ab4ad19a2d6ba4f34e8631", + "check_gpg": true + }, + { + "name": "iwl105-firmware", + "epoch": 0, + "version": "18.168.6.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl105-firmware-18.168.6.1-102.el8.1.noarch.rpm", + "checksum": "sha256:cdd8e0a970aaaa23637f553692d755a0f57282c4494d31094638b6d4633ec523", + "check_gpg": true + }, + { + "name": "iwl135-firmware", + "epoch": 0, + "version": "18.168.6.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl135-firmware-18.168.6.1-102.el8.1.noarch.rpm", + "checksum": "sha256:5c686be3533457b6ac047ac804aa54f74ee3a455047d3866dcef7a4da9d95fc6", + "check_gpg": true + }, + { + "name": "iwl2000-firmware", + "epoch": 0, + "version": "18.168.6.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl2000-firmware-18.168.6.1-102.el8.1.noarch.rpm", + "checksum": "sha256:d01c5733267171fc234d7ab5387c17cb61e9fdec8f9eb792ea63c8ffb5bafb6c", + "check_gpg": true + }, + { + "name": "iwl2030-firmware", + "epoch": 0, + "version": "18.168.6.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl2030-firmware-18.168.6.1-102.el8.1.noarch.rpm", + "checksum": "sha256:b6e327a5fca1efc26c920c42d104dbdafd9e4676681bbd1f28dab81c51677db8", + "check_gpg": true + }, + { + "name": "iwl3160-firmware", + "epoch": 1, + "version": "25.30.13.0", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl3160-firmware-25.30.13.0-102.el8.1.noarch.rpm", + "checksum": "sha256:0f817ea59939bdd0311c8da8369f5c037e340443198ccef659696f67bd2ddcd1", + "check_gpg": true + }, + { + "name": "iwl5000-firmware", + "epoch": 0, + "version": "8.83.5.1_1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl5000-firmware-8.83.5.1_1-102.el8.1.noarch.rpm", + "checksum": "sha256:d7ae9cdbdd754c544d766c8e9748f24f580cd3a4c7c6c4d6203060e966299723", + "check_gpg": true + }, + { + "name": "iwl5150-firmware", + "epoch": 0, + "version": "8.24.2.2", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl5150-firmware-8.24.2.2-102.el8.1.noarch.rpm", + "checksum": "sha256:dbded0760a358f62ec416ce37ffd764c725f8e898479b17173e632debc1a06ae", + "check_gpg": true + }, + { + "name": "iwl6000-firmware", + "epoch": 0, + "version": "9.221.4.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl6000-firmware-9.221.4.1-102.el8.1.noarch.rpm", + "checksum": "sha256:39e27e147189e0e431527acfca51d9436149fe7c0fee1399289ea9a4862948cc", + "check_gpg": true + }, + { + "name": "iwl6000g2a-firmware", + "epoch": 0, + "version": "18.168.6.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl6000g2a-firmware-18.168.6.1-102.el8.1.noarch.rpm", + "checksum": "sha256:01b808f1ea9299c37c80164d05ef1a5c45e05d53bcbd451b4d52e69a47959bc2", + "check_gpg": true + }, + { + "name": "iwl6050-firmware", + "epoch": 0, + "version": "41.28.5.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl6050-firmware-41.28.5.1-102.el8.1.noarch.rpm", + "checksum": "sha256:3793552ff28a7026a6299d8d5d8d50a467f27654524c8e438e2058040d7e6d6c", + "check_gpg": true + }, + { + "name": "iwl7260-firmware", + "epoch": 1, + "version": "25.30.13.0", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl7260-firmware-25.30.13.0-102.el8.1.noarch.rpm", + "checksum": "sha256:e8594d934926d149266098dbb6686b604caa4d8255895ebd732d55ca4e7f0248", + "check_gpg": true + }, + { + "name": "jansson", + "epoch": 0, + "version": "2.11", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/jansson-2.11-3.el8.x86_64.rpm", + "checksum": "sha256:a06e1d34df03aaf429d290d5c281356fefe0ad510c229189405b88b3c0f40374", + "check_gpg": true + }, + { + "name": "json-c", + "epoch": 0, + "version": "0.13.1", + "release": "0.4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-c-0.13.1-0.4.el8.x86_64.rpm", + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "name": "json-glib", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-glib-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:98a6386df94fc9595365c3ecbc630708420fa68d1774614a723dec4a55e84b9c", + "check_gpg": true + }, + { + "name": "kbd", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-2.0.4-10.el8.x86_64.rpm", + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "name": "kbd-legacy", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-legacy-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "name": "kbd-misc", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-misc-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "name": "kernel", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:c44dbbff4fe503f5f49b71ab17db7848c6c67fe19d9a4cc6cef59cc6dd15f1a6", + "check_gpg": true + }, + { + "name": "kernel-core", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:aa938dc6f13d0d57ca811b8c299b1017723fa419997b87754f74db770430c2d9", + "check_gpg": true + }, + { + "name": "kernel-modules", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:da77940ecadc9edb5d14aad51e4bf06664e5763fe6e46b20364732ec3aa2e08a", + "check_gpg": true + }, + { + "name": "kernel-tools", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:5f45a2ff1a9c9f3d4fcae463c1ca70b1a16caccc59816ce391f064c9d8b9d8ae", + "check_gpg": true + }, + { + "name": "kernel-tools-libs", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-libs-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:ab1be3dcea74c7a7fac49f9a1cad4113fded2d3edabb61b29ed8489a737033fe", + "check_gpg": true + }, + { + "name": "kexec-tools", + "epoch": 0, + "version": "2.0.20", + "release": "45.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kexec-tools-2.0.20-45.el8.x86_64.rpm", + "checksum": "sha256:4280042747c9027c3252d360fa33d63490aa518858849115b20162a097a37146", + "check_gpg": true + }, + { + "name": "keyutils-libs", + "epoch": 0, + "version": "1.5.10", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-libs-1.5.10-6.el8.x86_64.rpm", + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "name": "kmod", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-25-17.el8.x86_64.rpm", + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "name": "kmod-libs", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-libs-25-17.el8.x86_64.rpm", + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "name": "kpartx", + "epoch": 0, + "version": "0.8.4", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kpartx-0.8.4-8.el8.x86_64.rpm", + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "name": "krb5-libs", + "epoch": 0, + "version": "1.18.2", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/krb5-libs-1.18.2-8.el8.x86_64.rpm", + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "name": "less", + "epoch": 0, + "version": "530", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/less-530-1.el8.x86_64.rpm", + "checksum": "sha256:f94172554b8ceeab97b560d0b05c2e2df4b2e737471adce6eca82fd3209be254", + "check_gpg": true + }, + { + "name": "libacl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libacl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "name": "libarchive", + "epoch": 0, + "version": "3.3.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libarchive-3.3.3-1.el8.x86_64.rpm", + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "name": "libassuan", + "epoch": 0, + "version": "2.5.1", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libassuan-2.5.1-3.el8.x86_64.rpm", + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "name": "libattr", + "epoch": 0, + "version": "2.4.48", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libattr-2.4.48-3.el8.x86_64.rpm", + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "name": "libbasicobjects", + "epoch": 0, + "version": "0.1.1", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libbasicobjects-0.1.1-39.el8.x86_64.rpm", + "checksum": "sha256:5452b96e4b57c275dd41e48d55af1ca4f77ccfb3ae403796e599a039d7382b91", + "check_gpg": true + }, + { + "name": "libblkid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libblkid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "name": "libcap", + "epoch": 0, + "version": "2.26", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-2.26-4.el8.x86_64.rpm", + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "name": "libcap-ng", + "epoch": 0, + "version": "0.7.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-ng-0.7.9-5.el8.x86_64.rpm", + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "name": "libcollection", + "epoch": 0, + "version": "0.7.0", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcollection-0.7.0-39.el8.x86_64.rpm", + "checksum": "sha256:708a8fd75f7c6987d66e2d62de664b5a84c6f75fd4e5230e244681897b15a25d", + "check_gpg": true + }, + { + "name": "libcom_err", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcom_err-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "name": "libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "name": "libcroco", + "epoch": 0, + "version": "0.6.12", + "release": "4.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcroco-0.6.12-4.el8_2.1.x86_64.rpm", + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "name": "libcurl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcurl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "name": "libdaemon", + "epoch": 0, + "version": "0.14", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdaemon-0.14-15.el8.x86_64.rpm", + "checksum": "sha256:dae52ddd215b506d1805b66873194df5043fd758d42960dee68f029eab329b42", + "check_gpg": true + }, + { + "name": "libdb", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "name": "libdb-utils", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-utils-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "name": "libdhash", + "epoch": 0, + "version": "0.5.0", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdhash-0.5.0-39.el8.x86_64.rpm", + "checksum": "sha256:6327624b7b0d726a3c95f2245619efb1df8e70023fadcc8158afed39f57859e7", + "check_gpg": true + }, + { + "name": "libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "name": "libedit", + "epoch": 0, + "version": "3.1", + "release": "23.20170329cvs.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libedit-3.1-23.20170329cvs.el8.x86_64.rpm", + "checksum": "sha256:08b76b0af07db4d3b27776a96bb7d0dc0f02b7219569676ac79036190d731d5b", + "check_gpg": true + }, + { + "name": "libevent", + "epoch": 0, + "version": "2.1.8", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libevent-2.1.8-5.el8.x86_64.rpm", + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "name": "libfdisk", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libfdisk-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "name": "libffi", + "epoch": 0, + "version": "3.1", + "release": "22.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libffi-3.1-22.el8.x86_64.rpm", + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "name": "libgcab1", + "epoch": 0, + "version": "1.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcab1-1.1-1.el8.x86_64.rpm", + "checksum": "sha256:d9d8c21ad40e59b78008f1a569039462e5654a9d4bb08d84cf032e34cf7bde62", + "check_gpg": true + }, + { + "name": "libgcc", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcc-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "name": "libgcrypt", + "epoch": 0, + "version": "1.8.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcrypt-1.8.5-4.el8.x86_64.rpm", + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "name": "libgomp", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgomp-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "name": "libgpg-error", + "epoch": 0, + "version": "1.31", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgpg-error-1.31-1.el8.x86_64.rpm", + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "name": "libgudev", + "epoch": 0, + "version": "232", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgudev-232-4.el8.x86_64.rpm", + "checksum": "sha256:cb6b773c2ac78142736abd8a8f9eaac122f4647aefd3f003a615baf79abbefbb", + "check_gpg": true + }, + { + "name": "libgusb", + "epoch": 0, + "version": "0.3.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgusb-0.3.0-1.el8.x86_64.rpm", + "checksum": "sha256:ab7bc1a828168006b88934bea949ab2b29b837b0a431f7da1a12147f64f6ddb5", + "check_gpg": true + }, + { + "name": "libibverbs", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libibverbs-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "name": "libidn2", + "epoch": 0, + "version": "2.2.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libidn2-2.2.0-1.el8.x86_64.rpm", + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "name": "libini_config", + "epoch": 0, + "version": "1.3.1", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libini_config-1.3.1-39.el8.x86_64.rpm", + "checksum": "sha256:b06fa62d0a585a7bc3b9d3341923736b3ee4b6cc6d7ca83bebcb97225ca86ac9", + "check_gpg": true + }, + { + "name": "libkcapi", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "name": "libkcapi-hmaccalc", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-hmaccalc-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "name": "libksba", + "epoch": 0, + "version": "1.3.5", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libksba-1.3.5-7.el8.x86_64.rpm", + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "name": "libldb", + "epoch": 0, + "version": "2.2.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libldb-2.2.0-1.el8.x86_64.rpm", + "checksum": "sha256:1b5187e9b694e439a059be58d8de5317f04278371d1195bf000b001ba8699197", + "check_gpg": true + }, + { + "name": "libmbim", + "epoch": 0, + "version": "1.20.2", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmbim-1.20.2-1.el8.x86_64.rpm", + "checksum": "sha256:e2549a249d537f80f6595816a1094532c3feb0a730585d102c580583cc1dfde4", + "check_gpg": true + }, + { + "name": "libmetalink", + "epoch": 0, + "version": "0.1.3", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmetalink-0.1.3-7.el8.x86_64.rpm", + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "name": "libmnl", + "epoch": 0, + "version": "1.0.4", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmnl-1.0.4-6.el8.x86_64.rpm", + "checksum": "sha256:30fab73ee155f03dbbd99c1e30fe59dfba4ae8fdb2e7213451ccc36d6918bfcc", + "check_gpg": true + }, + { + "name": "libmodulemd", + "epoch": 0, + "version": "2.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodulemd-2.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "name": "libmount", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmount-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "name": "libndp", + "epoch": 0, + "version": "1.7", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libndp-1.7-3.el8.x86_64.rpm", + "checksum": "sha256:c357a350aa169402db3c898c7edcfee333e1d11a44f62bbeaba3fd3d2f31644d", + "check_gpg": true + }, + { + "name": "libnetfilter_conntrack", + "epoch": 0, + "version": "1.0.6", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnetfilter_conntrack-1.0.6-5.el8.x86_64.rpm", + "checksum": "sha256:224100af3ecfc80c416796ec02c7c4dd113a38d42349d763485f3b42f260493f", + "check_gpg": true + }, + { + "name": "libnfnetlink", + "epoch": 0, + "version": "1.0.1", + "release": "13.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnfnetlink-1.0.1-13.el8.x86_64.rpm", + "checksum": "sha256:cec98aa5fbefcb99715921b493b4f92d34c4eeb823e9c8741aa75e280def89f1", + "check_gpg": true + }, + { + "name": "libnfsidmap", + "epoch": 1, + "version": "2.3.3", + "release": "41.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnfsidmap-2.3.3-41.el8.x86_64.rpm", + "checksum": "sha256:8852282172440cd618c695356449cbc035be4091b2a0833c785c8e42cc1df0e6", + "check_gpg": true + }, + { + "name": "libnftnl", + "epoch": 0, + "version": "1.1.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnftnl-1.1.5-4.el8.x86_64.rpm", + "checksum": "sha256:c1bb77ed45ae47dc068445c6dfa4b70b273a3daf8cd82b9fa7a50e3d59abe3c1", + "check_gpg": true + }, + { + "name": "libnghttp2", + "epoch": 0, + "version": "1.33.0", + "release": "3.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnghttp2-1.33.0-3.el8_2.1.x86_64.rpm", + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "name": "libnl3", + "epoch": 0, + "version": "3.5.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-3.5.0-1.el8.x86_64.rpm", + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "name": "libnl3-cli", + "epoch": 0, + "version": "3.5.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-cli-3.5.0-1.el8.x86_64.rpm", + "checksum": "sha256:2e8d4ee76fa8678b0e4d6c0297b16f96e0116201bf96b36e8924b1b080abcddd", + "check_gpg": true + }, + { + "name": "libnsl2", + "epoch": 0, + "version": "1.2.0", + "release": "2.20180605git4a062cf.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64.rpm", + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "name": "libpath_utils", + "epoch": 0, + "version": "0.2.1", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpath_utils-0.2.1-39.el8.x86_64.rpm", + "checksum": "sha256:185f36b3af9367e6142233af358df22f23ee623697bc6a45c47091013707872e", + "check_gpg": true + }, + { + "name": "libpcap", + "epoch": 14, + "version": "1.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpcap-1.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "name": "libpciaccess", + "epoch": 0, + "version": "0.14", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpciaccess-0.14-1.el8.x86_64.rpm", + "checksum": "sha256:759386be8f49257266ac614432b762b8e486a89aac5d5f7a581a0330efb59c77", + "check_gpg": true + }, + { + "name": "libpipeline", + "epoch": 0, + "version": "1.5.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpipeline-1.5.0-2.el8.x86_64.rpm", + "checksum": "sha256:9eb9c1a67c5be04487cc133bdb8498eaf260e4d930a0143d2e1aa772e3d6cf64", + "check_gpg": true + }, + { + "name": "libpng", + "epoch": 2, + "version": "1.6.34", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpng-1.6.34-5.el8.x86_64.rpm", + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "name": "libpsl", + "epoch": 0, + "version": "0.20.2", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpsl-0.20.2-6.el8.x86_64.rpm", + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "name": "libpwquality", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "name": "libqmi", + "epoch": 0, + "version": "1.24.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libqmi-1.24.0-1.el8.x86_64.rpm", + "checksum": "sha256:406aea2bb2a5f83cabee5a50bad08a3516776c3cd42db8b159f926624f61aa42", + "check_gpg": true + }, + { + "name": "libref_array", + "epoch": 0, + "version": "0.1.5", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libref_array-0.1.5-39.el8.x86_64.rpm", + "checksum": "sha256:6b740563ba5858573ff3c2d2a827aeaf6e7166178e36066755d2cde4cf8a016f", + "check_gpg": true + }, + { + "name": "librepo", + "epoch": 0, + "version": "1.12.0", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/librepo-1.12.0-3.el8.x86_64.rpm", + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "name": "libreport-filesystem", + "epoch": 0, + "version": "2.9.5", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libreport-filesystem-2.9.5-15.el8.x86_64.rpm", + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "name": "libseccomp", + "epoch": 0, + "version": "2.4.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libseccomp-2.4.3-1.el8.x86_64.rpm", + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "name": "libsecret", + "epoch": 0, + "version": "0.18.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsecret-0.18.6-1.el8.x86_64.rpm", + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "name": "libselinux", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "name": "libselinux-utils", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-utils-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "name": "libsemanage", + "epoch": 0, + "version": "2.9", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsemanage-2.9-6.el8.x86_64.rpm", + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "name": "libsepol", + "epoch": 0, + "version": "2.9", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsepol-2.9-2.el8.x86_64.rpm", + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "name": "libsigsegv", + "epoch": 0, + "version": "2.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsigsegv-2.11-5.el8.x86_64.rpm", + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "name": "libsmartcols", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmartcols-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "name": "libsmbios", + "epoch": 0, + "version": "2.4.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmbios-2.4.1-2.el8.x86_64.rpm", + "checksum": "sha256:5092704c041bb246eaafd478bedface3f99ce8fa233ada5cf96807f67e980e42", + "check_gpg": true + }, + { + "name": "libsolv", + "epoch": 0, + "version": "0.7.16", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsolv-0.7.16-2.el8.x86_64.rpm", + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "name": "libss", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libss-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "name": "libssh", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-0.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "name": "libssh-config", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-config-0.9.4-2.el8.noarch.rpm", + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "name": "libsss_autofs", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_autofs-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:1230ddb5d92fe538a0526e3a9f05563a111ae4ff1978fc8e18de889974b5b46c", + "check_gpg": true + }, + { + "name": "libsss_certmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_certmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:ef2734017b25f7e9e1abf67315a7d1c97216642b5dfb979c19b1a3f74cff1e54", + "check_gpg": true + }, + { + "name": "libsss_idmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_idmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:377ad20c1681518bff1f40884589bddc4a692506384c7676f072ddf86ae429f9", + "check_gpg": true + }, + { + "name": "libsss_nss_idmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_nss_idmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:2c6dd4f21d9c4bde29f693d32e44f0d1c5dc73d78d013767df531d69bbfc6ed8", + "check_gpg": true + }, + { + "name": "libsss_sudo", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_sudo-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:370b74a811249b8f0bdfcd34137507f058a85196775e9d0d2bb244c100d194ae", + "check_gpg": true + }, + { + "name": "libstdc++", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstdc++-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "name": "libsysfs", + "epoch": 0, + "version": "2.1.0", + "release": "24.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsysfs-2.1.0-24.el8.x86_64.rpm", + "checksum": "sha256:53ae3ecd59ec61852cabbd039c748ed63ceb6a88da98587d4c33323ba4095154", + "check_gpg": true + }, + { + "name": "libtalloc", + "epoch": 0, + "version": "2.3.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtalloc-2.3.1-2.el8.x86_64.rpm", + "checksum": "sha256:918518368513d162d772dfc5d16536ad2799276bcba2f47514a1c7098de2b43f", + "check_gpg": true + }, + { + "name": "libtasn1", + "epoch": 0, + "version": "4.13", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtasn1-4.13-3.el8.x86_64.rpm", + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "name": "libtdb", + "epoch": 0, + "version": "1.4.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtdb-1.4.3-1.el8.x86_64.rpm", + "checksum": "sha256:a5228fc876cffc7dc79769ada5653cb9bfb80d469fb3c9f0acc14a1a0d15782d", + "check_gpg": true + }, + { + "name": "libteam", + "epoch": 0, + "version": "1.31", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libteam-1.31-2.el8.x86_64.rpm", + "checksum": "sha256:0aaaaa29cc1bb4d358142db6eb7d12df9252a8166bf61956203878eed210785c", + "check_gpg": true + }, + { + "name": "libtevent", + "epoch": 0, + "version": "0.10.2", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtevent-0.10.2-2.el8.x86_64.rpm", + "checksum": "sha256:b8e4cfecbbe7d2d6d9f3003432e826398f6bea21d5aba11a17ee74358cb84a6e", + "check_gpg": true + }, + { + "name": "libtirpc", + "epoch": 0, + "version": "1.1.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtirpc-1.1.4-4.el8.x86_64.rpm", + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "name": "libunistring", + "epoch": 0, + "version": "0.9.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libunistring-0.9.9-3.el8.x86_64.rpm", + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "name": "libusbx", + "epoch": 0, + "version": "1.0.23", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libusbx-1.0.23-4.el8.x86_64.rpm", + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "name": "libuser", + "epoch": 0, + "version": "0.62", + "release": "23.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuser-0.62-23.el8.x86_64.rpm", + "checksum": "sha256:70b5e4e580da72969ad3bb144c15293910b7d679e195c118cee60d8320f01851", + "check_gpg": true + }, + { + "name": "libutempter", + "epoch": 0, + "version": "1.1.6", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libutempter-1.1.6-14.el8.x86_64.rpm", + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "name": "libuuid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuuid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "name": "libverto", + "epoch": 0, + "version": "0.3.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-0.3.0-5.el8.x86_64.rpm", + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "name": "libxcrypt", + "epoch": 0, + "version": "4.1.1", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxcrypt-4.1.1-4.el8.x86_64.rpm", + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "name": "libxml2", + "epoch": 0, + "version": "2.9.7", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxml2-2.9.7-9.el8.x86_64.rpm", + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "name": "libxmlb", + "epoch": 0, + "version": "0.1.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxmlb-0.1.15-1.el8.x86_64.rpm", + "checksum": "sha256:5b7763510f4badd05a1647e1fadf9dc49044b1cf4d754262d0d6d5ee9a8f3b12", + "check_gpg": true + }, + { + "name": "libyaml", + "epoch": 0, + "version": "0.1.7", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libyaml-0.1.7-5.el8.x86_64.rpm", + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "name": "libzstd", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libzstd-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "name": "linux-firmware", + "epoch": 0, + "version": "20201218", + "release": "102.git05789708.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/linux-firmware-20201218-102.git05789708.el8.noarch.rpm", + "checksum": "sha256:cad76a2802c5f355b527df3cabde70bd58b31ec4b7de3b1ac15a429cda5b9b03", + "check_gpg": true + }, + { + "name": "lmdb-libs", + "epoch": 0, + "version": "0.9.24", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lmdb-libs-0.9.24-1.el8.x86_64.rpm", + "checksum": "sha256:0064a3aeff41fb7345c061956c35e4b9d0b8802954e717491fb6eb51028d22fd", + "check_gpg": true + }, + { + "name": "logrotate", + "epoch": 0, + "version": "3.14.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/logrotate-3.14.0-4.el8.x86_64.rpm", + "checksum": "sha256:3cd092e6e03efb4bb49b91dedd52b43f891092d04a2ff040b9f2197ec2082511", + "check_gpg": true + }, + { + "name": "lshw", + "epoch": 0, + "version": "B.02.19.2", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lshw-B.02.19.2-5.el8.x86_64.rpm", + "checksum": "sha256:fda078d8edd4e0902246dd3121efb6c57cb8231dbb975380f9249c64163f0d88", + "check_gpg": true + }, + { + "name": "lsscsi", + "epoch": 0, + "version": "0.32", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lsscsi-0.32-2.el8.x86_64.rpm", + "checksum": "sha256:c8fc05dd997477fc80e2f3195e719ca2e569fc8997f05a64a13c52c8358e8239", + "check_gpg": true + }, + { + "name": "lua-libs", + "epoch": 0, + "version": "5.3.4", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lua-libs-5.3.4-11.el8.x86_64.rpm", + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "name": "lz4-libs", + "epoch": 0, + "version": "1.8.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lz4-libs-1.8.3-2.el8.x86_64.rpm", + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "name": "lzo", + "epoch": 0, + "version": "2.08", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lzo-2.08-14.el8.x86_64.rpm", + "checksum": "sha256:5c68635cb03533a38d4a42f6547c21a1d5f9952351bb01f3cf865d2621a6e634", + "check_gpg": true + }, + { + "name": "man-db", + "epoch": 0, + "version": "2.7.6.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/man-db-2.7.6.1-17.el8.x86_64.rpm", + "checksum": "sha256:a0b6a8d5530f5003f5c8d56211246cd1130a5b4dc1396dc50da70ce0e128b02c", + "check_gpg": true + }, + { + "name": "mdadm", + "epoch": 0, + "version": "4.1", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mdadm-4.1-15.el8.x86_64.rpm", + "checksum": "sha256:0560d3b3e915221aad94ddf83169bd680b1f0da9aa8ec8e9360bcb8fe071483e", + "check_gpg": true + }, + { + "name": "memstrack", + "epoch": 0, + "version": "0.1.11", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/memstrack-0.1.11-1.el8.x86_64.rpm", + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "name": "microcode_ctl", + "epoch": 4, + "version": "20201112", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/microcode_ctl-20201112-2.el8.x86_64.rpm", + "checksum": "sha256:bce152ddd2f05f892e5ce483a7c12606ba7d2c42108402fc9609ada04048e6df", + "check_gpg": true + }, + { + "name": "mokutil", + "epoch": 1, + "version": "0.3.0", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mokutil-0.3.0-11.el8.x86_64.rpm", + "checksum": "sha256:1c4b186665558747023a60d0d662d3780a1bc49e578062f4b70100c71ab2220c", + "check_gpg": true + }, + { + "name": "mozjs60", + "epoch": 0, + "version": "60.9.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mozjs60-60.9.0-4.el8.x86_64.rpm", + "checksum": "sha256:03b50a4ea5cf5655c67e2358fabb6e563eec4e7929e7fc6c4e92c92694f60fa0", + "check_gpg": true + }, + { + "name": "mpfr", + "epoch": 0, + "version": "3.1.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mpfr-3.1.6-1.el8.x86_64.rpm", + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "name": "ncurses", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "name": "ncurses-base", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-base-6.1-7.20180224.el8.noarch.rpm", + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "name": "ncurses-libs", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-libs-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "name": "nettle", + "epoch": 0, + "version": "3.4.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nettle-3.4.1-2.el8.x86_64.rpm", + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "name": "newt", + "epoch": 0, + "version": "0.52.20", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/newt-0.52.20-11.el8.x86_64.rpm", + "checksum": "sha256:c9df7c58da59500e1717e435c565e221daa344212db8e83eb33b6a9c8e9a67bb", + "check_gpg": true + }, + { + "name": "nftables", + "epoch": 1, + "version": "0.9.3", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nftables-0.9.3-17.el8.x86_64.rpm", + "checksum": "sha256:0b763d946ec7da165107258469e7655707caa6fde0fff49e9e89d747e13eacc1", + "check_gpg": true + }, + { + "name": "npth", + "epoch": 0, + "version": "1.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/npth-1.5-4.el8.x86_64.rpm", + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "name": "numactl-libs", + "epoch": 0, + "version": "2.0.12", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/numactl-libs-2.0.12-11.el8.x86_64.rpm", + "checksum": "sha256:5e24dd39ae59ef7b7a386f28509cc80d8fabb23f0932e52ea365cf064ff76c59", + "check_gpg": true + }, + { + "name": "openldap", + "epoch": 0, + "version": "2.4.46", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openldap-2.4.46-16.el8.x86_64.rpm", + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "name": "openssh", + "epoch": 0, + "version": "8.0p1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-8.0p1-5.el8.x86_64.rpm", + "checksum": "sha256:f8bdaf5211c6fc72c8f60c7ddd59b8ca124ab26d2670ee6490a7fabb5177d919", + "check_gpg": true + }, + { + "name": "openssh-clients", + "epoch": 0, + "version": "8.0p1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-clients-8.0p1-5.el8.x86_64.rpm", + "checksum": "sha256:a9ec13abf63c69913acc1ac7070ab315c8b5a58c6006c3dfc5b27662f7f22260", + "check_gpg": true + }, + { + "name": "openssh-server", + "epoch": 0, + "version": "8.0p1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-server-8.0p1-5.el8.x86_64.rpm", + "checksum": "sha256:173a812d859c70f8db7b014d507c5cacb76c62ab5480c44be217f880465f42c7", + "check_gpg": true + }, + { + "name": "openssl", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "name": "openssl-libs", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-libs-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "name": "openssl-pkcs11", + "epoch": 0, + "version": "0.4.10", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-pkcs11-0.4.10-2.el8.x86_64.rpm", + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "name": "os-prober", + "epoch": 0, + "version": "1.74", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/os-prober-1.74-6.el8.x86_64.rpm", + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "name": "p11-kit", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "name": "p11-kit-trust", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-trust-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "name": "pam", + "epoch": 0, + "version": "1.3.1", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pam-1.3.1-14.el8.x86_64.rpm", + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "name": "parted", + "epoch": 0, + "version": "3.2", + "release": "38.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/parted-3.2-38.el8.x86_64.rpm", + "checksum": "sha256:4c5c7f3773c634c054b0a5fc1b40d0a8448b44bb5aff410bfa88facf9e2059ff", + "check_gpg": true + }, + { + "name": "passwd", + "epoch": 0, + "version": "0.80", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/passwd-0.80-3.el8.x86_64.rpm", + "checksum": "sha256:9c849b1d4fd605ae749fd9d090715b6034520af871c23729cd4003f22e0990de", + "check_gpg": true + }, + { + "name": "pciutils", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "name": "pciutils-libs", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-libs-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "name": "pcre", + "epoch": 0, + "version": "8.42", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre-8.42-4.el8.x86_64.rpm", + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "name": "pcre2", + "epoch": 0, + "version": "10.32", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre2-10.32-2.el8.x86_64.rpm", + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "name": "pigz", + "epoch": 0, + "version": "2.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pigz-2.4-4.el8.x86_64.rpm", + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "name": "platform-python", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "name": "platform-python-pip", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-pip-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "name": "platform-python-setuptools", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-setuptools-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "name": "policycoreutils", + "epoch": 0, + "version": "2.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-2.9-12.el8.x86_64.rpm", + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "name": "polkit", + "epoch": 0, + "version": "0.115", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-0.115-11.el8.x86_64.rpm", + "checksum": "sha256:09128c1b70cb8ea1a9bfbc6f3314dd5a8ba0c1a1886a82cd0fbe6845d48215dc", + "check_gpg": true + }, + { + "name": "polkit-libs", + "epoch": 0, + "version": "0.115", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-libs-0.115-11.el8.x86_64.rpm", + "checksum": "sha256:8d6742dce47f8ed65e222864872e919f30c678f5df1e99c134fba8a0fc7f454d", + "check_gpg": true + }, + { + "name": "polkit-pkla-compat", + "epoch": 0, + "version": "0.1", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-pkla-compat-0.1-12.el8.x86_64.rpm", + "checksum": "sha256:e7ee4b6d6456cb7da0332f5a6fb8a7c47df977bcf616f12f0455413765367e89", + "check_gpg": true + }, + { + "name": "popt", + "epoch": 0, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/popt-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "name": "prefixdevname", + "epoch": 0, + "version": "0.1.0", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/prefixdevname-0.1.0-6.el8.x86_64.rpm", + "checksum": "sha256:776a182ecaab9f86c7e869db2eb2deea1f291caee701cddbd752da8cd3c57458", + "check_gpg": true + }, + { + "name": "procps-ng", + "epoch": 0, + "version": "3.3.15", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/procps-ng-3.3.15-6.el8.x86_64.rpm", + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "name": "publicsuffix-list-dafsa", + "epoch": 0, + "version": "20180723", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20180723-1.el8.noarch.rpm", + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "name": "python3-audit", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-audit-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:addf80c52d794aed47874eb9d5ddbbaa90cb248fda1634d793054a41da0d92d7", + "check_gpg": true + }, + { + "name": "python3-cffi", + "epoch": 0, + "version": "1.11.5", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-cffi-1.11.5-5.el8.x86_64.rpm", + "checksum": "sha256:07ed1209e898552e6aeac0e6d148271d562c576f7d903cb7a99a697643068f58", + "check_gpg": true + }, + { + "name": "python3-chardet", + "epoch": 0, + "version": "3.0.4", + "release": "7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-chardet-3.0.4-7.el8.noarch.rpm", + "checksum": "sha256:176ffcb2cf0fdcbdd2d8119cbd98eef60a30fdb0fb065a9382d2c95e90c79652", + "check_gpg": true + }, + { + "name": "python3-configobj", + "epoch": 0, + "version": "5.0.6", + "release": "11.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-configobj-5.0.6-11.el8.noarch.rpm", + "checksum": "sha256:1bd969e0521820374122f5132e5998d9bd2ab185be66565a7266096297419c8e", + "check_gpg": true + }, + { + "name": "python3-cryptography", + "epoch": 0, + "version": "3.2.1", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-cryptography-3.2.1-3.el8.x86_64.rpm", + "checksum": "sha256:2ebe28be2e0a413af31a0f49b6a2774670067cdbe48e723040b19922ae205d6b", + "check_gpg": true + }, + { + "name": "python3-dateutil", + "epoch": 1, + "version": "2.6.1", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dateutil-2.6.1-6.el8.noarch.rpm", + "checksum": "sha256:c5b5967a094ced90899052a82e2c245529b75ba3f46e0ce1a89cfc95edb935ea", + "check_gpg": true + }, + { + "name": "python3-dbus", + "epoch": 0, + "version": "1.2.4", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dbus-1.2.4-15.el8.x86_64.rpm", + "checksum": "sha256:066f254f9ac7712b44214816de907a87eb8dfd0d2ea9570a7513db9a6617ba26", + "check_gpg": true + }, + { + "name": "python3-decorator", + "epoch": 0, + "version": "4.2.1", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-decorator-4.2.1-2.el8.noarch.rpm", + "checksum": "sha256:0e9a8a0f823bf0ef948862f0ccb62353460bd07931e756c98f23908c1c526578", + "check_gpg": true + }, + { + "name": "python3-dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "name": "python3-dnf-plugins-core", + "epoch": 0, + "version": "4.0.18", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-plugins-core-4.0.18-3.el8.noarch.rpm", + "checksum": "sha256:941a9068b8fa524ecac58d37f941b95fbdcd9e38bd87c7f9d1330c5925a52a20", + "check_gpg": true + }, + { + "name": "python3-firewall", + "epoch": 0, + "version": "0.8.2", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-firewall-0.8.2-6.el8.noarch.rpm", + "checksum": "sha256:d9fcdf78bae8bf3f3e7d469686a07fdb337567a7f6159397eee990730eb8cd11", + "check_gpg": true + }, + { + "name": "python3-gobject-base", + "epoch": 0, + "version": "3.28.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gobject-base-3.28.3-2.el8.x86_64.rpm", + "checksum": "sha256:15dc15a5be210707852f051f4d09949c063a7283edc7d4ca3d4289eedcc0b509", + "check_gpg": true + }, + { + "name": "python3-gpg", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gpg-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "name": "python3-hawkey", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-hawkey-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "name": "python3-idna", + "epoch": 0, + "version": "2.5", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-idna-2.5-5.el8.noarch.rpm", + "checksum": "sha256:78c43d8a15ca018de1803e4baac5819e1baab1963fd31f1e44e54e8a573acbfc", + "check_gpg": true + }, + { + "name": "python3-jwt", + "epoch": 0, + "version": "1.6.1", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-jwt-1.6.1-2.el8.noarch.rpm", + "checksum": "sha256:ebeb05a4a9cdd5d060859eabac1349029c0120615c98fc939e26664c030655c1", + "check_gpg": true + }, + { + "name": "python3-libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "name": "python3-libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "name": "python3-libs", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libs-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "name": "python3-libselinux", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libselinux-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:59ba5bf69953a5a2e902b0f08b7187b66d84968852d46a3579a059477547d1a0", + "check_gpg": true + }, + { + "name": "python3-libsemanage", + "epoch": 0, + "version": "2.9", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libsemanage-2.9-6.el8.x86_64.rpm", + "checksum": "sha256:451d0cb6e2284578e3279b4cbb5ec98e9d98a687556c6b424adf8f1282d4ef58", + "check_gpg": true + }, + { + "name": "python3-linux-procfs", + "epoch": 0, + "version": "0.6.3", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-linux-procfs-0.6.3-1.el8.noarch.rpm", + "checksum": "sha256:dc835194ecfa6ebda81e0a764c953eff3422a61863e9a3e0dc74ea4cae7a4d94", + "check_gpg": true + }, + { + "name": "python3-nftables", + "epoch": 1, + "version": "0.9.3", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-nftables-0.9.3-17.el8.x86_64.rpm", + "checksum": "sha256:e1a85d0f6b23482247c81c449d87749cdc8e6b7df737b39aba170634b644da0f", + "check_gpg": true + }, + { + "name": "python3-oauthlib", + "epoch": 0, + "version": "2.1.0", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-oauthlib-2.1.0-1.el8.noarch.rpm", + "checksum": "sha256:20874a9d40b12125c9e5b97fe4ccda3f94acbc03da1dec7299123901f5b56631", + "check_gpg": true + }, + { + "name": "python3-perf", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-perf-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:6aa1e29a4d805fc36c3196788fe78cb4552e2ebec8b3d0f8d32974e6a97025f2", + "check_gpg": true + }, + { + "name": "python3-pip-wheel", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pip-wheel-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "name": "python3-ply", + "epoch": 0, + "version": "3.9", + "release": "9.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-ply-3.9-9.el8.noarch.rpm", + "checksum": "sha256:d1e8c7a00924d1a6dee44ade189025853a501d4f77c73f3bfc006aa907d97daf", + "check_gpg": true + }, + { + "name": "python3-policycoreutils", + "epoch": 0, + "version": "2.9", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-policycoreutils-2.9-12.el8.noarch.rpm", + "checksum": "sha256:142d4fe6236cdeac3f967517085d99649215d75026fbe00746e0c5214d7d20df", + "check_gpg": true + }, + { + "name": "python3-pycparser", + "epoch": 0, + "version": "2.14", + "release": "14.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pycparser-2.14-14.el8.noarch.rpm", + "checksum": "sha256:8891a9a4707611c13a5693b195201dd940254ffdb03cf5742952329282bb8cb7", + "check_gpg": true + }, + { + "name": "python3-pysocks", + "epoch": 0, + "version": "1.6.8", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pysocks-1.6.8-3.el8.noarch.rpm", + "checksum": "sha256:7f506879c64e0bb4d98782d025f46fb9a07517487ae4cbebbb3985a98f4e2154", + "check_gpg": true + }, + { + "name": "python3-pyudev", + "epoch": 0, + "version": "0.21.0", + "release": "7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pyudev-0.21.0-7.el8.noarch.rpm", + "checksum": "sha256:aa0007192287faeaecc72d9fa48efdb3108c764d450dc8fea65474476da32c45", + "check_gpg": true + }, + { + "name": "python3-pyyaml", + "epoch": 0, + "version": "3.12", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pyyaml-3.12-12.el8.x86_64.rpm", + "checksum": "sha256:525393e4d658e395c6280bd2ff4afe54999796c4722986325297ba4bfade3ea5", + "check_gpg": true + }, + { + "name": "python3-requests", + "epoch": 0, + "version": "2.20.0", + "release": "2.1.el8_1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-requests-2.20.0-2.1.el8_1.noarch.rpm", + "checksum": "sha256:003ee19ec5b88de212c3246bdfdb3e97a9910a25a219fd7cf5030b7bc666fea9", + "check_gpg": true + }, + { + "name": "python3-rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "name": "python3-schedutils", + "epoch": 0, + "version": "0.6", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-schedutils-0.6-6.el8.x86_64.rpm", + "checksum": "sha256:bafc2680bd298f0fac70854224ef03b7098d4c46ee35e270f6fd58d2e812ff1b", + "check_gpg": true + }, + { + "name": "python3-setools", + "epoch": 0, + "version": "4.3.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setools-4.3.0-2.el8.x86_64.rpm", + "checksum": "sha256:f56992135d789147285215cb062960fedcdf4b3296c62658fa430caa2c20165c", + "check_gpg": true + }, + { + "name": "python3-setuptools-wheel", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "name": "python3-six", + "epoch": 0, + "version": "1.11.0", + "release": "8.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-six-1.11.0-8.el8.noarch.rpm", + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "name": "python3-slip", + "epoch": 0, + "version": "0.6.4", + "release": "11.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-slip-0.6.4-11.el8.noarch.rpm", + "checksum": "sha256:233e5f78027b684e5aaac1395cc574aea3039059bf86eb4494422bc74216a396", + "check_gpg": true + }, + { + "name": "python3-slip-dbus", + "epoch": 0, + "version": "0.6.4", + "release": "11.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-slip-dbus-0.6.4-11.el8.noarch.rpm", + "checksum": "sha256:563b3741d26b6af963fdb7b0634e0791445a707d0b6093ac71c3224299241639", + "check_gpg": true + }, + { + "name": "python3-syspurpose", + "epoch": 0, + "version": "1.28.10", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-syspurpose-1.28.10-1.el8.x86_64.rpm", + "checksum": "sha256:017e78c5e23f98d6ee299255fc7be5381dba63d169e3f5dcb1de9d21b5d30ba5", + "check_gpg": true + }, + { + "name": "python3-urllib3", + "epoch": 0, + "version": "1.24.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-urllib3-1.24.2-5.el8.noarch.rpm", + "checksum": "sha256:aa1835fd302a37b84ac256db5dd0de09bd9883a5a07775aedb491faf46b18ee0", + "check_gpg": true + }, + { + "name": "rdma-core", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rdma-core-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "name": "readline", + "epoch": 0, + "version": "7.0", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/readline-7.0-10.el8.x86_64.rpm", + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "name": "rootfiles", + "epoch": 0, + "version": "8.1", + "release": "22.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rootfiles-8.1-22.el8.noarch.rpm", + "checksum": "sha256:d967d6bbb33bf7a295a64807f81875c84e82a8ecc59b6c72fe955141b1660d39", + "check_gpg": true + }, + { + "name": "rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "name": "rpm-build-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-build-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "name": "rpm-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "name": "rpm-plugin-selinux", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "name": "rpm-plugin-systemd-inhibit", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "name": "sed", + "epoch": 0, + "version": "4.5", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sed-4.5-2.el8.x86_64.rpm", + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "name": "selinux-policy", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "name": "selinux-policy-targeted", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-targeted-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "name": "setup", + "epoch": 0, + "version": "2.12.2", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/setup-2.12.2-6.el8.noarch.rpm", + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "name": "sg3_utils", + "epoch": 0, + "version": "1.44", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-1.44-5.el8.x86_64.rpm", + "checksum": "sha256:a1d1bac6c4710e0a1a6e8a507b06a630dda6687f12642be0847768c14ce7271e", + "check_gpg": true + }, + { + "name": "sg3_utils-libs", + "epoch": 0, + "version": "1.44", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-libs-1.44-5.el8.x86_64.rpm", + "checksum": "sha256:774d214a379c0b729d7e989f9d5094fdfda7df68c1e792ba9200542032f04c91", + "check_gpg": true + }, + { + "name": "shadow-utils", + "epoch": 2, + "version": "4.6", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shadow-utils-4.6-12.el8.x86_64.rpm", + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "name": "shared-mime-info", + "epoch": 0, + "version": "1.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shared-mime-info-1.9-3.el8.x86_64.rpm", + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "name": "shim-x64", + "epoch": 0, + "version": "15", + "release": "15.el8_2", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shim-x64-15-15.el8_2.x86_64.rpm", + "checksum": "sha256:f0346c485da9a7e8c8d93624f335cbb25790a7f37c6c03e43232517bb73bbacb", + "check_gpg": true + }, + { + "name": "slang", + "epoch": 0, + "version": "2.3.2", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/slang-2.3.2-3.el8.x86_64.rpm", + "checksum": "sha256:be628d396303d6547b9d7239897fbf4fad7447375cb5e898b394a458f420b550", + "check_gpg": true + }, + { + "name": "snappy", + "epoch": 0, + "version": "1.1.8", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/snappy-1.1.8-3.el8.x86_64.rpm", + "checksum": "sha256:839c62cd7fc7e152decded6f28c80b5f7b8f34a5e319057867b38b26512cee67", + "check_gpg": true + }, + { + "name": "sqlite-libs", + "epoch": 0, + "version": "3.26.0", + "release": "13.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sqlite-libs-3.26.0-13.el8.x86_64.rpm", + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "name": "squashfs-tools", + "epoch": 0, + "version": "4.3", + "release": "19.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/squashfs-tools-4.3-19.el8.x86_64.rpm", + "checksum": "sha256:a0c8f83cef355dd98d7750e3d8eb3e9f3e9f8f5e9a3ee441cb4bc4014c647e31", + "check_gpg": true + }, + { + "name": "sssd-client", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-client-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:b1871d8ac1abaf5e809448c5f37e32487f177aee3080d9033efb4b160f755aba", + "check_gpg": true + }, + { + "name": "sssd-common", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-common-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:fe944d9dd89d550d2aa44d33cfeb11c803b074bfcda0dbbad486c392bf1cc9d0", + "check_gpg": true + }, + { + "name": "sssd-kcm", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-kcm-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:6cd7444c22d56201f61fed5fd741b44cfaae18d95b811d25c5f0ffe2f8e55a8f", + "check_gpg": true + }, + { + "name": "sssd-nfs-idmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-nfs-idmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:7115a12fad224b469419e19ee5c0d38322f467fe7a1c441c1b0239b197baac2a", + "check_gpg": true + }, + { + "name": "sudo", + "epoch": 0, + "version": "1.8.29", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sudo-1.8.29-7.el8.x86_64.rpm", + "checksum": "sha256:cbcade4487fbf372b487b9f82ed85e04ff037551c96c4b461abc3716338ff9c4", + "check_gpg": true + }, + { + "name": "systemd", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-239-44.el8.x86_64.rpm", + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "name": "systemd-libs", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-libs-239-44.el8.x86_64.rpm", + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "name": "systemd-pam", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-pam-239-44.el8.x86_64.rpm", + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "name": "systemd-udev", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-udev-239-44.el8.x86_64.rpm", + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "name": "teamd", + "epoch": 0, + "version": "1.31", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/teamd-1.31-2.el8.x86_64.rpm", + "checksum": "sha256:9664aba8dfd6bd6fda669fcf8f6ff04914305a6373b09d8b675322c7337b9c36", + "check_gpg": true + }, + { + "name": "tpm2-tss", + "epoch": 0, + "version": "2.3.2", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tpm2-tss-2.3.2-3.el8.x86_64.rpm", + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "name": "trousers", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "name": "trousers-lib", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-lib-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "name": "tuned", + "epoch": 0, + "version": "2.15.0", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tuned-2.15.0-1.el8.noarch.rpm", + "checksum": "sha256:b3bc3f1c9e8028a177599f1ed9cb6c31d2d6e75111e34623d25e736d3ddcf8fd", + "check_gpg": true + }, + { + "name": "tzdata", + "epoch": 0, + "version": "2021a", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tzdata-2021a-1.el8.noarch.rpm", + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "name": "util-linux", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/util-linux-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "name": "vim-minimal", + "epoch": 2, + "version": "8.0.1763", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/vim-minimal-8.0.1763-15.el8.x86_64.rpm", + "checksum": "sha256:3efd6a2548813167fe37718546bc768a5aa8ba59aa80edcecd8ba408bec329b0", + "check_gpg": true + }, + { + "name": "virt-what", + "epoch": 0, + "version": "1.18", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/virt-what-1.18-6.el8.x86_64.rpm", + "checksum": "sha256:4c02e3e1808f0189269b242242468a364007a8f12c6e38afc24b599b2848b0fa", + "check_gpg": true + }, + { + "name": "which", + "epoch": 0, + "version": "2.21", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/which-2.21-12.el8.x86_64.rpm", + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "name": "xfsprogs", + "epoch": 0, + "version": "5.0.0", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xfsprogs-5.0.0-8.el8.x86_64.rpm", + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "name": "xz", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "name": "xz-libs", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-libs-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "name": "yum", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/yum-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:4302361b12eefd5574f57bf0c49c0e5bdc738eddda33634af8b35adfb53a52a1", + "check_gpg": true + }, + { + "name": "zlib", + "epoch": 0, + "version": "1.2.11", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/zlib-1.2.11-17.el8.x86_64.rpm", + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "name": "alsa-lib", + "epoch": 0, + "version": "1.2.4", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/alsa-lib-1.2.4-5.el8.x86_64.rpm", + "checksum": "sha256:61fa9846a0eac2d4739fcacf618d4832ed809b5a5c5d18c30d1f216e0817f43b", + "check_gpg": true + }, + { + "name": "cloud-init", + "epoch": 0, + "version": "20.3", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cloud-init-20.3-10.el8.noarch.rpm", + "checksum": "sha256:dc4f0cc77cf4c89469cf0f9c88b52f2c8c2c35f4e6d714bbdae2083440483311", + "check_gpg": true + }, + { + "name": "geolite2-city", + "epoch": 0, + "version": "20180605", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-city-20180605-1.el8.noarch.rpm", + "checksum": "sha256:cad86777bcb265db0da766952ff63e8d33f0fd4f3b90b22d0a1da587a785db44", + "check_gpg": true + }, + { + "name": "geolite2-country", + "epoch": 0, + "version": "20180605", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-country-20180605-1.el8.noarch.rpm", + "checksum": "sha256:67419432fe7d373f8e5ddaa7b0dd1c25389608bf2f4ee76dbabcc2d96eb8c9d0", + "check_gpg": true + }, + { + "name": "langpacks-en", + "epoch": 0, + "version": "1.0", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/langpacks-en-1.0-12.el8.noarch.rpm", + "checksum": "sha256:c99db07c2548246f6b2ec98c1d2b536e40b2f4dbba39f3430044868a27985732", + "check_gpg": true + }, + { + "name": "libX11", + "epoch": 0, + "version": "1.6.8", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libX11-1.6.8-4.el8.x86_64.rpm", + "checksum": "sha256:41a5551a1bdf84359c3f86f08bb1e5c13c0bc1e057ae5d9f0cdf9930afeb37a1", + "check_gpg": true + }, + { + "name": "libX11-common", + "epoch": 0, + "version": "1.6.8", + "release": "4.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libX11-common-1.6.8-4.el8.noarch.rpm", + "checksum": "sha256:5f445b2b2a4bdeabd555e25dfa10119d9f4e4e500d1c4492219dd8647f119ce2", + "check_gpg": true + }, + { + "name": "libXau", + "epoch": 0, + "version": "1.0.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXau-1.0.9-3.el8.x86_64.rpm", + "checksum": "sha256:49d972c660b9238dd1d58ab5952285b77e440820bf4563cce2b5ecd2f6ceba78", + "check_gpg": true + }, + { + "name": "libXext", + "epoch": 0, + "version": "1.3.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXext-1.3.4-1.el8.x86_64.rpm", + "checksum": "sha256:9869db60ee2b6d8f2115937857fb0586802720a75e043baf21514011a9fa79aa", + "check_gpg": true + }, + { + "name": "libXfixes", + "epoch": 0, + "version": "5.0.3", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXfixes-5.0.3-7.el8.x86_64.rpm", + "checksum": "sha256:81f7df4c736963636c9ebab7441ca4f4e41a7483ef6e7b2ac0d1bf37afe52a14", + "check_gpg": true + }, + { + "name": "libXinerama", + "epoch": 0, + "version": "1.1.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXinerama-1.1.4-1.el8.x86_64.rpm", + "checksum": "sha256:f07f41680f3d3a29981415c5c6d83e40da2958abbadc2417be6fbc467259be9b", + "check_gpg": true + }, + { + "name": "libXrandr", + "epoch": 0, + "version": "1.5.2", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXrandr-1.5.2-1.el8.x86_64.rpm", + "checksum": "sha256:f81bfbb4ad309a6f934aaf8ee3d11847360557c4f5e7198eff3e74e73d0d76fc", + "check_gpg": true + }, + { + "name": "libXrender", + "epoch": 0, + "version": "0.9.10", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXrender-0.9.10-7.el8.x86_64.rpm", + "checksum": "sha256:11ac209220f3a53a762adebb4eeb43190e02ef7cdad2c54bcb474b206f7eb6f2", + "check_gpg": true + }, + { + "name": "libatasmart", + "epoch": 0, + "version": "0.19", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libatasmart-0.19-14.el8.x86_64.rpm", + "checksum": "sha256:e1133a81512bfba8d4bf06bc12aafee7fe13d6319fc8690b81e6f46d978930eb", + "check_gpg": true + }, + { + "name": "libblockdev", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:3cf4fcd2fe43e6477d5f1c05167c669c247dcbeea1ab37bf3b7d42dcab482565", + "check_gpg": true + }, + { + "name": "libblockdev-crypto", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-crypto-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:226bb890cc85bfc60d874a9cb13cb7f7f1e90d90308c7726e25e14cee5487e66", + "check_gpg": true + }, + { + "name": "libblockdev-fs", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-fs-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:142c67cdc69366820a7fc7567e40567b545b52f279d1ff992e4787d3c1ea4956", + "check_gpg": true + }, + { + "name": "libblockdev-loop", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-loop-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:d29207af6ff12bec1a5b9712550f2faf7efbff75c597cc2e84b6c9d0dfe2de68", + "check_gpg": true + }, + { + "name": "libblockdev-mdraid", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-mdraid-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:ced1d02dd424b1d087347d452420e17ba83af2b926041c794471798dfa5f5868", + "check_gpg": true + }, + { + "name": "libblockdev-part", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-part-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:e308e1ebc85889742a002fd9892d71894fd6fae473320fbc7b1ffb94248602cd", + "check_gpg": true + }, + { + "name": "libblockdev-swap", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-swap-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:8d3bdefac6c0f39e66e092d62b37efa3076976ae66def1f9dd1f217022406efa", + "check_gpg": true + }, + { + "name": "libblockdev-utils", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-utils-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:be0181770c94141852b6bb618baf56e7b8df9f70524b0c2e0e391e550285231f", + "check_gpg": true + }, + { + "name": "libbytesize", + "epoch": 0, + "version": "1.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libbytesize-1.4-3.el8.x86_64.rpm", + "checksum": "sha256:d1cc79976965be3fe769cb8c23a281064816eaa195caf6057b8d1da0e9ff7ae5", + "check_gpg": true + }, + { + "name": "libdrm", + "epoch": 0, + "version": "2.4.103", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libdrm-2.4.103-1.el8.x86_64.rpm", + "checksum": "sha256:42edf6b8e8be5e64f7e0f9714c5b199a364393c141cb170f6272ab2e9e0e4d88", + "check_gpg": true + }, + { + "name": "libestr", + "epoch": 0, + "version": "0.1.10", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libestr-0.1.10-1.el8.x86_64.rpm", + "checksum": "sha256:7bc2e2a25b04b52a4ec5de2858e75eb07f16495d4de5f7ce926777130302cfe3", + "check_gpg": true + }, + { + "name": "libfastjson", + "epoch": 0, + "version": "0.99.8", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libfastjson-0.99.8-2.el8.x86_64.rpm", + "checksum": "sha256:105beb1a237e66802e64e620f79b357dfc8f3bb8952ac2f293548f1d68ca40b1", + "check_gpg": true + }, + { + "name": "libmaxminddb", + "epoch": 0, + "version": "1.2.0", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libmaxminddb-1.2.0-10.el8.x86_64.rpm", + "checksum": "sha256:19ca7ab9cb2e39ec452ed1424f828ec464266094e31903301680d5a5d0e2ac2c", + "check_gpg": true + }, + { + "name": "libudisks2", + "epoch": 0, + "version": "2.9.0", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libudisks2-2.9.0-6.el8.x86_64.rpm", + "checksum": "sha256:1824bc3233b76fabb2305d11bd9bc905cb8e8d7f44006f253164b64808be4b39", + "check_gpg": true + }, + { + "name": "libxcb", + "epoch": 0, + "version": "1.13.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxcb-1.13.1-1.el8.x86_64.rpm", + "checksum": "sha256:0221e6e3671c2bd130e9519a7b352404b7e510584b4707d38e1a733e19c7f74f", + "check_gpg": true + }, + { + "name": "libxkbcommon", + "epoch": 0, + "version": "0.9.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxkbcommon-0.9.1-1.el8.x86_64.rpm", + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "name": "nspr", + "epoch": 0, + "version": "4.25.0", + "release": "2.el8_2", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nspr-4.25.0-2.el8_2.x86_64.rpm", + "checksum": "sha256:34321e09964f724b712ed709115f794b1953f4a4d472d655bec0993d27c51a22", + "check_gpg": true + }, + { + "name": "nss", + "epoch": 0, + "version": "3.53.1", + "release": "17.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-3.53.1-17.el8_3.x86_64.rpm", + "checksum": "sha256:c11eba3a7ae0ee7ceaea4bbf78edf9a1c3c5d9629b3f40167f5fb8004b2c19a0", + "check_gpg": true + }, + { + "name": "nss-softokn", + "epoch": 0, + "version": "3.53.1", + "release": "17.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-softokn-3.53.1-17.el8_3.x86_64.rpm", + "checksum": "sha256:2e0b39dbf3b7e68a06f321a04797d4e521b9b484ffc8d6d53f7662613e077065", + "check_gpg": true + }, + { + "name": "nss-softokn-freebl", + "epoch": 0, + "version": "3.53.1", + "release": "17.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-softokn-freebl-3.53.1-17.el8_3.x86_64.rpm", + "checksum": "sha256:cff4bc30873c62698e4bc2f519bb0aa6814534d7ce99f1ba757dd345b881505f", + "check_gpg": true + }, + { + "name": "nss-sysinit", + "epoch": 0, + "version": "3.53.1", + "release": "17.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-sysinit-3.53.1-17.el8_3.x86_64.rpm", + "checksum": "sha256:71fbed9d1b1f6965b42a5c87c98732bed84a8a2efb43c2218b4d1c59e9eaf190", + "check_gpg": true + }, + { + "name": "nss-util", + "epoch": 0, + "version": "3.53.1", + "release": "17.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-util-3.53.1-17.el8_3.x86_64.rpm", + "checksum": "sha256:947fee92d0c147d832bbb3ab53e0b96817d03c38260429a4ff01856324b160da", + "check_gpg": true + }, + { + "name": "pinentry", + "epoch": 0, + "version": "1.1.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pinentry-1.1.0-2.el8.x86_64.rpm", + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "name": "plymouth", + "epoch": 0, + "version": "0.9.4", + "release": "9.20200615git1e36e30.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/plymouth-0.9.4-9.20200615git1e36e30.el8.x86_64.rpm", + "checksum": "sha256:8e4f8fed6f2fdf05e85fc84023778dbf23e09f1dc2f6a0940860886d3f59831b", + "check_gpg": true + }, + { + "name": "plymouth-core-libs", + "epoch": 0, + "version": "0.9.4", + "release": "9.20200615git1e36e30.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/plymouth-core-libs-0.9.4-9.20200615git1e36e30.el8.x86_64.rpm", + "checksum": "sha256:44c659fb58e1ee64f5d77b35459dc43a0fded79c8a6e2278a2c9c71461792ff1", + "check_gpg": true + }, + { + "name": "plymouth-scripts", + "epoch": 0, + "version": "0.9.4", + "release": "9.20200615git1e36e30.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/plymouth-scripts-0.9.4-9.20200615git1e36e30.el8.x86_64.rpm", + "checksum": "sha256:bfbd05db004755c45f7ec31be67b02d9c7fa0c9b1bb060bb2ffe85b3f2b5d811", + "check_gpg": true + }, + { + "name": "python3-babel", + "epoch": 0, + "version": "2.5.1", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-babel-2.5.1-5.el8.noarch.rpm", + "checksum": "sha256:9dbf3ceb7de5a727f1a36edd5add73dcd96c83f24afc81d78e254b518551da96", + "check_gpg": true + }, + { + "name": "python3-jinja2", + "epoch": 0, + "version": "2.10.1", + "release": "2.el8_0", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jinja2-2.10.1-2.el8_0.noarch.rpm", + "checksum": "sha256:5f4f256128dba88a13599d6458908c24c0e9c18d8979ae44bf5734da8e7cab70", + "check_gpg": true + }, + { + "name": "python3-jsonpatch", + "epoch": 0, + "version": "1.21", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonpatch-1.21-2.el8.noarch.rpm", + "checksum": "sha256:85eb614fc608f3b3f4bbd08d4a3b0ff6af188677ea4e009be021680c521cedae", + "check_gpg": true + }, + { + "name": "python3-jsonpointer", + "epoch": 0, + "version": "1.10", + "release": "11.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonpointer-1.10-11.el8.noarch.rpm", + "checksum": "sha256:60b0cbc5e435be346bb06f45f3336f8936d7362022d8bceda80ff16bc3fb7dd2", + "check_gpg": true + }, + { + "name": "python3-jsonschema", + "epoch": 0, + "version": "2.6.0", + "release": "4.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonschema-2.6.0-4.el8.noarch.rpm", + "checksum": "sha256:0feac495306bbe6e3149a352025bea8d23cda512859a230cbd3f510cf48caaf7", + "check_gpg": true + }, + { + "name": "python3-markupsafe", + "epoch": 0, + "version": "0.23", + "release": "19.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-markupsafe-0.23-19.el8.x86_64.rpm", + "checksum": "sha256:9c7a5a6f73c8e32559226c54d229cb25304a81a853af22d9f829b9bb09b21f53", + "check_gpg": true + }, + { + "name": "python3-prettytable", + "epoch": 0, + "version": "0.7.2", + "release": "14.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-prettytable-0.7.2-14.el8.noarch.rpm", + "checksum": "sha256:1b53c868277dec628058b31b1a8a8a2ccd8efe832ce9694805b5f82564136eb3", + "check_gpg": true + }, + { + "name": "python3-pyserial", + "epoch": 0, + "version": "3.1.1", + "release": "8.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pyserial-3.1.1-8.el8.noarch.rpm", + "checksum": "sha256:82ce159a9e4e4b6b4fdce9ad954aa507f67108430bd261a4dcd826e44d0152a4", + "check_gpg": true + }, + { + "name": "python3-pytz", + "epoch": 0, + "version": "2017.2", + "release": "9.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pytz-2017.2-9.el8.noarch.rpm", + "checksum": "sha256:0edde19e0c027c8cff31b82e1f4b0b198c00bf924047fcf4dd610a7d4965ab52", + "check_gpg": true + }, + { + "name": "python3-unbound", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-unbound-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "name": "qemu-guest-agent", + "epoch": 15, + "version": "4.2.0", + "release": "35.module_el8.4.0+547+a85d02ba", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/qemu-guest-agent-4.2.0-35.module_el8.4.0+547+a85d02ba.x86_64.rpm", + "checksum": "sha256:04bcd912af3b987311c2dab6331b65c0d9223c312c4b0654649d821a713133be", + "check_gpg": true + }, + { + "name": "rsyslog", + "epoch": 0, + "version": "8.1911.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/rsyslog-8.1911.0-7.el8.x86_64.rpm", + "checksum": "sha256:ca82090f18d47e454cc512e832bf3ec771edf65299e3c1d56d5df9fab0428869", + "check_gpg": true + }, + { + "name": "spice-vdagent", + "epoch": 0, + "version": "0.20.0", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/spice-vdagent-0.20.0-3.el8.x86_64.rpm", + "checksum": "sha256:94a33381a41c8e4b237fd0df630efcc5d7b8f32a2650aadd492bddd1e9eb9684", + "check_gpg": true + }, + { + "name": "udisks2", + "epoch": 0, + "version": "2.9.0", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/udisks2-2.9.0-6.el8.x86_64.rpm", + "checksum": "sha256:98f622a37cb22857fdce63d8c97d9711c74cdbd3451e588e2b519532db55a5a2", + "check_gpg": true + }, + { + "name": "unbound-libs", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/unbound-libs-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "name": "volume_key-libs", + "epoch": 0, + "version": "0.3.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/volume_key-libs-0.3.11-5.el8.x86_64.rpm", + "checksum": "sha256:5c0cf0adf7a3ad24ddde58f298ebf4ce741bccdfc8eff0103644115c837f80d6", + "check_gpg": true + }, + { + "name": "xkeyboard-config", + "epoch": 0, + "version": "2.28", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xkeyboard-config-2.28-1.el8.noarch.rpm", + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ], + "checksums": { + "0": "sha256:06fa6273454f85c58ca743a0ef0202bed4cac267393049dc447839cdb39f4a54", + "1": "sha256:5b16e44261a7beffd5d7bf961fe269da407bd57abb1faac407c46a81969dfd63" + } + }, + "image-info": { + "boot-environment": { + "kernelopts": "root=UUID=0194fdc2-fa2f-4cc0-81d3-ff12045b73c8 ro net.ifnames=0" + }, + "bootloader": "grub", + "bootmenu": [ + { + "grub_arg": "--unrestricted", + "grub_class": "kernel", + "grub_users": "$grub_users", + "id": "centos-20210203204355-4.18.0-277.el8.x86_64", + "initrd": "/boot/initramfs-4.18.0-277.el8.x86_64.img $tuned_initrd", + "linux": "/boot/vmlinuz-4.18.0-277.el8.x86_64", + "options": "$kernelopts $tuned_params", + "title": "CentOS Stream (4.18.0-277.el8.x86_64) 8", + "version": "4.18.0-277.el8.x86_64" + } + ], + "default-target": "graphical.target", + "firewall-enabled": [ + "ssh", + "dhcpv6-client", + "cockpit" + ], + "fstab": [ + [ + "UUID=0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "/", + "xfs", + "defaults", + "0", + "0" + ], + [ + "UUID=7B77-95E7", + "/boot/efi", + "vfat", + "defaults,uid=0,gid=0,umask=077,shortname=winnt", + "0", + "2" + ] + ], + "groups": [ + "adm:x:4:", + "audio:x:63:", + "bin:x:1:", + "cdrom:x:11:", + "daemon:x:2:", + "dbus:x:81:", + "dialout:x:18:", + "disk:x:6:", + "floppy:x:19:", + "ftp:x:50:", + "games:x:20:", + "input:x:999:", + "kmem:x:9:", + "kvm:x:36:", + "lock:x:54:", + "lp:x:7:", + "mail:x:12:", + "man:x:15:", + "mem:x:8:", + "nobody:x:65534:", + "polkitd:x:996:", + "redhat:x:1000:", + "render:x:998:", + "root:x:0:", + "ssh_keys:x:995:", + "sshd:x:74:", + "sssd:x:993:", + "sys:x:3:", + "systemd-coredump:x:997:", + "systemd-journal:x:190:", + "systemd-resolve:x:193:", + "tape:x:33:", + "tss:x:59:", + "tty:x:5:", + "unbound:x:994:", + "users:x:100:", + "utempter:x:35:", + "utmp:x:22:", + "video:x:39:", + "wheel:x:10:" + ], + "image-format": "qcow2", + "os-release": { + "ANSI_COLOR": "0;31", + "BUG_REPORT_URL": "https://bugzilla.redhat.com/", + "CPE_NAME": "cpe:/o:centos:centos:8", + "HOME_URL": "https://centos.org/", + "ID": "centos", + "ID_LIKE": "rhel fedora", + "NAME": "CentOS Stream", + "PLATFORM_ID": "platform:el8", + "PRETTY_NAME": "CentOS Stream 8", + "REDHAT_SUPPORT_PRODUCT": "Red Hat Enterprise Linux 8", + "REDHAT_SUPPORT_PRODUCT_VERSION": "CentOS Stream", + "VERSION": "8", + "VERSION_ID": "8" + }, + "packages": [ + "ModemManager-glib-1.10.8-2.el8.x86_64", + "NetworkManager-1.30.0-0.9.el8.x86_64", + "NetworkManager-libnm-1.30.0-0.9.el8.x86_64", + "NetworkManager-team-1.30.0-0.9.el8.x86_64", + "NetworkManager-tui-1.30.0-0.9.el8.x86_64", + "acl-2.2.53-1.el8.x86_64", + "alsa-lib-1.2.4-5.el8.x86_64", + "audit-3.0-0.17.20191104git1c2f876.el8.x86_64", + "audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64", + "authselect-1.2.2-1.el8.x86_64", + "authselect-libs-1.2.2-1.el8.x86_64", + "basesystem-11-5.el8.noarch", + "bash-4.4.19-14.el8.x86_64", + "bind-export-libs-9.11.26-2.el8.x86_64", + "biosdevname-0.7.3-2.el8.x86_64", + "brotli-1.0.6-3.el8.x86_64", + "bubblewrap-0.4.0-1.el8.x86_64", + "bzip2-libs-1.0.6-26.el8.x86_64", + "c-ares-1.13.0-5.el8.x86_64", + "ca-certificates-2020.2.41-80.0.el8_2.noarch", + "centos-gpg-keys-8-2.el8.noarch", + "centos-stream-release-8.4-1.el8.noarch", + "centos-stream-repos-8-2.el8.noarch", + "checkpolicy-2.9-1.el8.x86_64", + "chkconfig-1.13-2.el8.x86_64", + "cloud-init-20.3-10.el8.noarch", + "coreutils-8.30-8.el8.x86_64", + "coreutils-common-8.30-8.el8.x86_64", + "cpio-2.12-10.el8.x86_64", + "cracklib-2.9.6-15.el8.x86_64", + "cracklib-dicts-2.9.6-15.el8.x86_64", + "cronie-1.5.2-4.el8.x86_64", + "cronie-anacron-1.5.2-4.el8.x86_64", + "crontabs-1.11-17.20190603git.el8.noarch", + "crypto-policies-20200713-1.git51d1222.el8.noarch", + "crypto-policies-scripts-20200713-1.git51d1222.el8.noarch", + "cryptsetup-libs-2.3.3-2.el8.x86_64", + "curl-7.61.1-18.el8.x86_64", + "cyrus-sasl-lib-2.1.27-5.el8.x86_64", + "dbus-1.12.8-12.el8.x86_64", + "dbus-common-1.12.8-12.el8.noarch", + "dbus-daemon-1.12.8-12.el8.x86_64", + "dbus-glib-0.110-2.el8.x86_64", + "dbus-libs-1.12.8-12.el8.x86_64", + "dbus-tools-1.12.8-12.el8.x86_64", + "device-mapper-1.02.175-3.el8.x86_64", + "device-mapper-libs-1.02.175-3.el8.x86_64", + "dhcp-client-4.3.6-44.0.1.el8.x86_64", + "dhcp-common-4.3.6-44.0.1.el8.noarch", + "dhcp-libs-4.3.6-44.0.1.el8.x86_64", + "diffutils-3.6-6.el8.x86_64", + "dmidecode-3.2-8.el8.x86_64", + "dnf-4.4.2-5.el8.noarch", + "dnf-data-4.4.2-5.el8.noarch", + "dnf-plugins-core-4.0.18-3.el8.noarch", + "dosfstools-4.1-6.el8.x86_64", + "dracut-049-133.git20210112.el8.x86_64", + "dracut-config-generic-049-133.git20210112.el8.x86_64", + "dracut-network-049-133.git20210112.el8.x86_64", + "dracut-squash-049-133.git20210112.el8.x86_64", + "e2fsprogs-1.45.6-1.el8.x86_64", + "e2fsprogs-libs-1.45.6-1.el8.x86_64", + "efi-filesystem-3-3.el8.noarch", + "efivar-libs-37-4.el8.x86_64", + "elfutils-debuginfod-client-0.182-3.el8.x86_64", + "elfutils-default-yama-scope-0.182-3.el8.noarch", + "elfutils-libelf-0.182-3.el8.x86_64", + "elfutils-libs-0.182-3.el8.x86_64", + "ethtool-5.8-5.el8.x86_64", + "expat-2.2.5-4.el8.x86_64", + "file-5.33-16.el8.x86_64", + "file-libs-5.33-16.el8.x86_64", + "filesystem-3.8-4.el8.x86_64", + "findutils-4.6.0-20.el8.x86_64", + "firewalld-0.8.2-6.el8.noarch", + "firewalld-filesystem-0.8.2-6.el8.noarch", + "freetype-2.9.1-5.el8.x86_64", + "fuse-libs-2.9.7-12.el8.x86_64", + "fwupd-1.5.5-1.el8.x86_64", + "gawk-4.2.1-2.el8.x86_64", + "gdbm-1.18-1.el8.x86_64", + "gdbm-libs-1.18-1.el8.x86_64", + "gdisk-1.0.3-6.el8.x86_64", + "geolite2-city-20180605-1.el8.noarch", + "geolite2-country-20180605-1.el8.noarch", + "gettext-0.19.8.1-17.el8.x86_64", + "gettext-libs-0.19.8.1-17.el8.x86_64", + "glib2-2.56.4-9.el8.x86_64", + "glibc-2.28-147.el8.x86_64", + "glibc-common-2.28-147.el8.x86_64", + "glibc-langpack-en-2.28-147.el8.x86_64", + "gmp-6.1.2-10.el8.x86_64", + "gnupg2-2.2.20-2.el8.x86_64", + "gnupg2-smime-2.2.20-2.el8.x86_64", + "gnutls-3.6.14-7.el8_3.x86_64", + "gobject-introspection-1.56.1-1.el8.x86_64", + "gpg-pubkey-8483c65d-5ccc5b19", + "gpgme-1.13.1-7.el8.x86_64", + "grep-3.1-6.el8.x86_64", + "groff-base-1.22.3-18.el8.x86_64", + "grub2-common-2.02-93.el8.noarch", + "grub2-efi-x64-2.02-93.el8.x86_64", + "grub2-pc-2.02-93.el8.x86_64", + "grub2-pc-modules-2.02-93.el8.noarch", + "grub2-tools-2.02-93.el8.x86_64", + "grub2-tools-extra-2.02-93.el8.x86_64", + "grub2-tools-minimal-2.02-93.el8.x86_64", + "grubby-8.40-41.el8.x86_64", + "gzip-1.9-12.el8.x86_64", + "hardlink-1.3-6.el8.x86_64", + "hdparm-9.54-3.el8.x86_64", + "hostname-3.20-6.el8.x86_64", + "hwdata-0.314-8.7.el8.noarch", + "ima-evm-utils-1.3.2-11.el8.x86_64", + "info-6.5-6.el8.x86_64", + "initscripts-10.00.12-1.el8.x86_64", + "ipcalc-0.2.4-4.el8.x86_64", + "iproute-5.9.0-2.el8.x86_64", + "iprutils-2.4.19-1.el8.x86_64", + "ipset-7.1-1.el8.x86_64", + "ipset-libs-7.1-1.el8.x86_64", + "iptables-1.8.4-17.el8.x86_64", + "iptables-ebtables-1.8.4-17.el8.x86_64", + "iptables-libs-1.8.4-17.el8.x86_64", + "iputils-20180629-6.el8.x86_64", + "irqbalance-1.4.0-6.el8.x86_64", + "iwl100-firmware-39.31.5.1-102.el8.1.noarch", + "iwl1000-firmware-39.31.5.1-102.el8.1.noarch", + "iwl105-firmware-18.168.6.1-102.el8.1.noarch", + "iwl135-firmware-18.168.6.1-102.el8.1.noarch", + "iwl2000-firmware-18.168.6.1-102.el8.1.noarch", + "iwl2030-firmware-18.168.6.1-102.el8.1.noarch", + "iwl3160-firmware-25.30.13.0-102.el8.1.noarch", + "iwl5000-firmware-8.83.5.1_1-102.el8.1.noarch", + "iwl5150-firmware-8.24.2.2-102.el8.1.noarch", + "iwl6000-firmware-9.221.4.1-102.el8.1.noarch", + "iwl6000g2a-firmware-18.168.6.1-102.el8.1.noarch", + "iwl6050-firmware-41.28.5.1-102.el8.1.noarch", + "iwl7260-firmware-25.30.13.0-102.el8.1.noarch", + "jansson-2.11-3.el8.x86_64", + "json-c-0.13.1-0.4.el8.x86_64", + "json-glib-1.4.4-1.el8.x86_64", + "kbd-2.0.4-10.el8.x86_64", + "kbd-legacy-2.0.4-10.el8.noarch", + "kbd-misc-2.0.4-10.el8.noarch", + "kernel-4.18.0-277.el8.x86_64", + "kernel-core-4.18.0-277.el8.x86_64", + "kernel-modules-4.18.0-277.el8.x86_64", + "kernel-tools-4.18.0-277.el8.x86_64", + "kernel-tools-libs-4.18.0-277.el8.x86_64", + "kexec-tools-2.0.20-45.el8.x86_64", + "keyutils-libs-1.5.10-6.el8.x86_64", + "kmod-25-17.el8.x86_64", + "kmod-libs-25-17.el8.x86_64", + "kpartx-0.8.4-8.el8.x86_64", + "krb5-libs-1.18.2-8.el8.x86_64", + "langpacks-en-1.0-12.el8.noarch", + "less-530-1.el8.x86_64", + "libX11-1.6.8-4.el8.x86_64", + "libX11-common-1.6.8-4.el8.noarch", + "libXau-1.0.9-3.el8.x86_64", + "libXext-1.3.4-1.el8.x86_64", + "libXfixes-5.0.3-7.el8.x86_64", + "libXinerama-1.1.4-1.el8.x86_64", + "libXrandr-1.5.2-1.el8.x86_64", + "libXrender-0.9.10-7.el8.x86_64", + "libacl-2.2.53-1.el8.x86_64", + "libarchive-3.3.3-1.el8.x86_64", + "libassuan-2.5.1-3.el8.x86_64", + "libatasmart-0.19-14.el8.x86_64", + "libattr-2.4.48-3.el8.x86_64", + "libbasicobjects-0.1.1-39.el8.x86_64", + "libblkid-2.32.1-27.el8.x86_64", + "libblockdev-2.24-5.el8.x86_64", + "libblockdev-crypto-2.24-5.el8.x86_64", + "libblockdev-fs-2.24-5.el8.x86_64", + "libblockdev-loop-2.24-5.el8.x86_64", + "libblockdev-mdraid-2.24-5.el8.x86_64", + "libblockdev-part-2.24-5.el8.x86_64", + "libblockdev-swap-2.24-5.el8.x86_64", + "libblockdev-utils-2.24-5.el8.x86_64", + "libbytesize-1.4-3.el8.x86_64", + "libcap-2.26-4.el8.x86_64", + "libcap-ng-0.7.9-5.el8.x86_64", + "libcollection-0.7.0-39.el8.x86_64", + "libcom_err-1.45.6-1.el8.x86_64", + "libcomps-0.1.11-5.el8.x86_64", + "libcroco-0.6.12-4.el8_2.1.x86_64", + "libcurl-7.61.1-18.el8.x86_64", + "libdaemon-0.14-15.el8.x86_64", + "libdb-5.3.28-40.el8.x86_64", + "libdb-utils-5.3.28-40.el8.x86_64", + "libdhash-0.5.0-39.el8.x86_64", + "libdnf-0.55.0-2.el8.x86_64", + "libdrm-2.4.103-1.el8.x86_64", + "libedit-3.1-23.20170329cvs.el8.x86_64", + "libestr-0.1.10-1.el8.x86_64", + "libevent-2.1.8-5.el8.x86_64", + "libfastjson-0.99.8-2.el8.x86_64", + "libfdisk-2.32.1-27.el8.x86_64", + "libffi-3.1-22.el8.x86_64", + "libgcab1-1.1-1.el8.x86_64", + "libgcc-8.4.1-1.el8.x86_64", + "libgcrypt-1.8.5-4.el8.x86_64", + "libgomp-8.4.1-1.el8.x86_64", + "libgpg-error-1.31-1.el8.x86_64", + "libgudev-232-4.el8.x86_64", + "libgusb-0.3.0-1.el8.x86_64", + "libibverbs-32.0-4.el8.x86_64", + "libidn2-2.2.0-1.el8.x86_64", + "libini_config-1.3.1-39.el8.x86_64", + "libkcapi-1.2.0-2.el8.x86_64", + "libkcapi-hmaccalc-1.2.0-2.el8.x86_64", + "libksba-1.3.5-7.el8.x86_64", + "libldb-2.2.0-1.el8.x86_64", + "libmaxminddb-1.2.0-10.el8.x86_64", + "libmbim-1.20.2-1.el8.x86_64", + "libmetalink-0.1.3-7.el8.x86_64", + "libmnl-1.0.4-6.el8.x86_64", + "libmodulemd-2.9.4-2.el8.x86_64", + "libmount-2.32.1-27.el8.x86_64", + "libndp-1.7-3.el8.x86_64", + "libnetfilter_conntrack-1.0.6-5.el8.x86_64", + "libnfnetlink-1.0.1-13.el8.x86_64", + "libnfsidmap-2.3.3-41.el8.x86_64", + "libnftnl-1.1.5-4.el8.x86_64", + "libnghttp2-1.33.0-3.el8_2.1.x86_64", + "libnl3-3.5.0-1.el8.x86_64", + "libnl3-cli-3.5.0-1.el8.x86_64", + "libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64", + "libpath_utils-0.2.1-39.el8.x86_64", + "libpcap-1.9.1-5.el8.x86_64", + "libpciaccess-0.14-1.el8.x86_64", + "libpipeline-1.5.0-2.el8.x86_64", + "libpng-1.6.34-5.el8.x86_64", + "libpsl-0.20.2-6.el8.x86_64", + "libpwquality-1.4.4-1.el8.x86_64", + "libqmi-1.24.0-1.el8.x86_64", + "libref_array-0.1.5-39.el8.x86_64", + "librepo-1.12.0-3.el8.x86_64", + "libreport-filesystem-2.9.5-15.el8.x86_64", + "libseccomp-2.4.3-1.el8.x86_64", + "libsecret-0.18.6-1.el8.x86_64", + "libselinux-2.9-5.el8.x86_64", + "libselinux-utils-2.9-5.el8.x86_64", + "libsemanage-2.9-6.el8.x86_64", + "libsepol-2.9-2.el8.x86_64", + "libsigsegv-2.11-5.el8.x86_64", + "libsmartcols-2.32.1-27.el8.x86_64", + "libsmbios-2.4.1-2.el8.x86_64", + "libsolv-0.7.16-2.el8.x86_64", + "libss-1.45.6-1.el8.x86_64", + "libssh-0.9.4-2.el8.x86_64", + "libssh-config-0.9.4-2.el8.noarch", + "libsss_autofs-2.4.0-7.el8.x86_64", + "libsss_certmap-2.4.0-7.el8.x86_64", + "libsss_idmap-2.4.0-7.el8.x86_64", + "libsss_nss_idmap-2.4.0-7.el8.x86_64", + "libsss_sudo-2.4.0-7.el8.x86_64", + "libstdc++-8.4.1-1.el8.x86_64", + "libsysfs-2.1.0-24.el8.x86_64", + "libtalloc-2.3.1-2.el8.x86_64", + "libtasn1-4.13-3.el8.x86_64", + "libtdb-1.4.3-1.el8.x86_64", + "libteam-1.31-2.el8.x86_64", + "libtevent-0.10.2-2.el8.x86_64", + "libtirpc-1.1.4-4.el8.x86_64", + "libudisks2-2.9.0-6.el8.x86_64", + "libunistring-0.9.9-3.el8.x86_64", + "libusbx-1.0.23-4.el8.x86_64", + "libuser-0.62-23.el8.x86_64", + "libutempter-1.1.6-14.el8.x86_64", + "libuuid-2.32.1-27.el8.x86_64", + "libverto-0.3.0-5.el8.x86_64", + "libxcb-1.13.1-1.el8.x86_64", + "libxcrypt-4.1.1-4.el8.x86_64", + "libxkbcommon-0.9.1-1.el8.x86_64", + "libxml2-2.9.7-9.el8.x86_64", + "libxmlb-0.1.15-1.el8.x86_64", + "libyaml-0.1.7-5.el8.x86_64", + "libzstd-1.4.4-1.el8.x86_64", + "linux-firmware-20201218-102.git05789708.el8.noarch", + "lmdb-libs-0.9.24-1.el8.x86_64", + "logrotate-3.14.0-4.el8.x86_64", + "lshw-B.02.19.2-5.el8.x86_64", + "lsscsi-0.32-2.el8.x86_64", + "lua-libs-5.3.4-11.el8.x86_64", + "lz4-libs-1.8.3-2.el8.x86_64", + "lzo-2.08-14.el8.x86_64", + "man-db-2.7.6.1-17.el8.x86_64", + "mdadm-4.1-15.el8.x86_64", + "memstrack-0.1.11-1.el8.x86_64", + "microcode_ctl-20201112-2.el8.x86_64", + "mokutil-0.3.0-11.el8.x86_64", + "mozjs60-60.9.0-4.el8.x86_64", + "mpfr-3.1.6-1.el8.x86_64", + "ncurses-6.1-7.20180224.el8.x86_64", + "ncurses-base-6.1-7.20180224.el8.noarch", + "ncurses-libs-6.1-7.20180224.el8.x86_64", + "nettle-3.4.1-2.el8.x86_64", + "newt-0.52.20-11.el8.x86_64", + "nftables-0.9.3-17.el8.x86_64", + "npth-1.5-4.el8.x86_64", + "nspr-4.25.0-2.el8_2.x86_64", + "nss-3.53.1-17.el8_3.x86_64", + "nss-softokn-3.53.1-17.el8_3.x86_64", + "nss-softokn-freebl-3.53.1-17.el8_3.x86_64", + "nss-sysinit-3.53.1-17.el8_3.x86_64", + "nss-util-3.53.1-17.el8_3.x86_64", + "numactl-libs-2.0.12-11.el8.x86_64", + "openldap-2.4.46-16.el8.x86_64", + "openssh-8.0p1-5.el8.x86_64", + "openssh-clients-8.0p1-5.el8.x86_64", + "openssh-server-8.0p1-5.el8.x86_64", + "openssl-1.1.1g-12.el8_3.x86_64", + "openssl-libs-1.1.1g-12.el8_3.x86_64", + "openssl-pkcs11-0.4.10-2.el8.x86_64", + "os-prober-1.74-6.el8.x86_64", + "p11-kit-0.23.22-1.el8.x86_64", + "p11-kit-trust-0.23.22-1.el8.x86_64", + "pam-1.3.1-14.el8.x86_64", + "parted-3.2-38.el8.x86_64", + "passwd-0.80-3.el8.x86_64", + "pciutils-3.7.0-1.el8.x86_64", + "pciutils-libs-3.7.0-1.el8.x86_64", + "pcre-8.42-4.el8.x86_64", + "pcre2-10.32-2.el8.x86_64", + "pigz-2.4-4.el8.x86_64", + "pinentry-1.1.0-2.el8.x86_64", + "platform-python-3.6.8-36.el8.x86_64", + "platform-python-pip-9.0.3-19.el8.noarch", + "platform-python-setuptools-39.2.0-6.el8.noarch", + "plymouth-0.9.4-9.20200615git1e36e30.el8.x86_64", + "plymouth-core-libs-0.9.4-9.20200615git1e36e30.el8.x86_64", + "plymouth-scripts-0.9.4-9.20200615git1e36e30.el8.x86_64", + "policycoreutils-2.9-12.el8.x86_64", + "polkit-0.115-11.el8.x86_64", + "polkit-libs-0.115-11.el8.x86_64", + "polkit-pkla-compat-0.1-12.el8.x86_64", + "popt-1.18-1.el8.x86_64", + "prefixdevname-0.1.0-6.el8.x86_64", + "procps-ng-3.3.15-6.el8.x86_64", + "publicsuffix-list-dafsa-20180723-1.el8.noarch", + "python3-audit-3.0-0.17.20191104git1c2f876.el8.x86_64", + "python3-babel-2.5.1-5.el8.noarch", + "python3-cffi-1.11.5-5.el8.x86_64", + "python3-chardet-3.0.4-7.el8.noarch", + "python3-configobj-5.0.6-11.el8.noarch", + "python3-cryptography-3.2.1-3.el8.x86_64", + "python3-dateutil-2.6.1-6.el8.noarch", + "python3-dbus-1.2.4-15.el8.x86_64", + "python3-decorator-4.2.1-2.el8.noarch", + "python3-dnf-4.4.2-5.el8.noarch", + "python3-dnf-plugins-core-4.0.18-3.el8.noarch", + "python3-firewall-0.8.2-6.el8.noarch", + "python3-gobject-base-3.28.3-2.el8.x86_64", + "python3-gpg-1.13.1-7.el8.x86_64", + "python3-hawkey-0.55.0-2.el8.x86_64", + "python3-idna-2.5-5.el8.noarch", + "python3-jinja2-2.10.1-2.el8_0.noarch", + "python3-jsonpatch-1.21-2.el8.noarch", + "python3-jsonpointer-1.10-11.el8.noarch", + "python3-jsonschema-2.6.0-4.el8.noarch", + "python3-jwt-1.6.1-2.el8.noarch", + "python3-libcomps-0.1.11-5.el8.x86_64", + "python3-libdnf-0.55.0-2.el8.x86_64", + "python3-libs-3.6.8-36.el8.x86_64", + "python3-libselinux-2.9-5.el8.x86_64", + "python3-libsemanage-2.9-6.el8.x86_64", + "python3-linux-procfs-0.6.3-1.el8.noarch", + "python3-markupsafe-0.23-19.el8.x86_64", + "python3-nftables-0.9.3-17.el8.x86_64", + "python3-oauthlib-2.1.0-1.el8.noarch", + "python3-perf-4.18.0-277.el8.x86_64", + "python3-pip-wheel-9.0.3-19.el8.noarch", + "python3-ply-3.9-9.el8.noarch", + "python3-policycoreutils-2.9-12.el8.noarch", + "python3-prettytable-0.7.2-14.el8.noarch", + "python3-pycparser-2.14-14.el8.noarch", + "python3-pyserial-3.1.1-8.el8.noarch", + "python3-pysocks-1.6.8-3.el8.noarch", + "python3-pytz-2017.2-9.el8.noarch", + "python3-pyudev-0.21.0-7.el8.noarch", + "python3-pyyaml-3.12-12.el8.x86_64", + "python3-requests-2.20.0-2.1.el8_1.noarch", + "python3-rpm-4.14.3-10.el8.x86_64", + "python3-schedutils-0.6-6.el8.x86_64", + "python3-setools-4.3.0-2.el8.x86_64", + "python3-setuptools-wheel-39.2.0-6.el8.noarch", + "python3-six-1.11.0-8.el8.noarch", + "python3-slip-0.6.4-11.el8.noarch", + "python3-slip-dbus-0.6.4-11.el8.noarch", + "python3-syspurpose-1.28.10-1.el8.x86_64", + "python3-unbound-1.7.3-15.el8.x86_64", + "python3-urllib3-1.24.2-5.el8.noarch", + "qemu-guest-agent-4.2.0-35.module_el8.4.0+547+a85d02ba.x86_64", + "rdma-core-32.0-4.el8.x86_64", + "readline-7.0-10.el8.x86_64", + "rootfiles-8.1-22.el8.noarch", + "rpm-4.14.3-10.el8.x86_64", + "rpm-build-libs-4.14.3-10.el8.x86_64", + "rpm-libs-4.14.3-10.el8.x86_64", + "rpm-plugin-selinux-4.14.3-10.el8.x86_64", + "rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64", + "rsyslog-8.1911.0-7.el8.x86_64", + "sed-4.5-2.el8.x86_64", + "selinux-policy-3.14.3-62.el8.noarch", + "selinux-policy-targeted-3.14.3-62.el8.noarch", + "setup-2.12.2-6.el8.noarch", + "sg3_utils-1.44-5.el8.x86_64", + "sg3_utils-libs-1.44-5.el8.x86_64", + "shadow-utils-4.6-12.el8.x86_64", + "shared-mime-info-1.9-3.el8.x86_64", + "shim-x64-15-15.el8_2.x86_64", + "slang-2.3.2-3.el8.x86_64", + "snappy-1.1.8-3.el8.x86_64", + "spice-vdagent-0.20.0-3.el8.x86_64", + "sqlite-libs-3.26.0-13.el8.x86_64", + "squashfs-tools-4.3-19.el8.x86_64", + "sssd-client-2.4.0-7.el8.x86_64", + "sssd-common-2.4.0-7.el8.x86_64", + "sssd-kcm-2.4.0-7.el8.x86_64", + "sssd-nfs-idmap-2.4.0-7.el8.x86_64", + "sudo-1.8.29-7.el8.x86_64", + "systemd-239-44.el8.x86_64", + "systemd-libs-239-44.el8.x86_64", + "systemd-pam-239-44.el8.x86_64", + "systemd-udev-239-44.el8.x86_64", + "teamd-1.31-2.el8.x86_64", + "tpm2-tss-2.3.2-3.el8.x86_64", + "trousers-0.3.15-1.el8.x86_64", + "trousers-lib-0.3.15-1.el8.x86_64", + "tuned-2.15.0-1.el8.noarch", + "tzdata-2021a-1.el8.noarch", + "udisks2-2.9.0-6.el8.x86_64", + "unbound-libs-1.7.3-15.el8.x86_64", + "util-linux-2.32.1-27.el8.x86_64", + "vim-minimal-8.0.1763-15.el8.x86_64", + "virt-what-1.18-6.el8.x86_64", + "volume_key-libs-0.3.11-5.el8.x86_64", + "which-2.21-12.el8.x86_64", + "xfsprogs-5.0.0-8.el8.x86_64", + "xkeyboard-config-2.28-1.el8.noarch", + "xz-5.2.4-3.el8.x86_64", + "xz-libs-5.2.4-3.el8.x86_64", + "yum-4.4.2-5.el8.noarch", + "zlib-1.2.11-17.el8.x86_64" + ], + "partition-table": "gpt", + "partition-table-id": "D209C89E-EA5E-4FBD-B161-B461CCE297E0", + "partitions": [ + { + "bootable": false, + "fstype": null, + "label": null, + "partuuid": "FAC7F1FB-3E8D-4137-A512-961DE09A5549", + "size": 1048576, + "start": 1048576, + "type": "21686148-6449-6E6F-744E-656564454649", + "uuid": null + }, + { + "bootable": false, + "fstype": "vfat", + "label": null, + "partuuid": "68B2905B-DF3E-4FB3-80FA-49D1E773AA33", + "size": 104857600, + "start": 2097152, + "type": "C12A7328-F81F-11D2-BA4B-00A0C93EC93B", + "uuid": "7B77-95E7" + }, + { + "bootable": false, + "fstype": "xfs", + "label": "root", + "partuuid": "6264D520-3FB9-423F-8AB8-7A0A8E3D3562", + "size": 4187995648, + "start": 106954752, + "type": "0FC63DAF-8483-4772-8E79-3D69D8477DE4", + "uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8" + } + ], + "passwd": [ + "adm:x:3:4:adm:/var/adm:/sbin/nologin", + "bin:x:1:1:bin:/bin:/sbin/nologin", + "daemon:x:2:2:daemon:/sbin:/sbin/nologin", + "dbus:x:81:81:System message bus:/:/sbin/nologin", + "ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin", + "games:x:12:100:games:/usr/games:/sbin/nologin", + "halt:x:7:0:halt:/sbin:/sbin/halt", + "lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin", + "mail:x:8:12:mail:/var/spool/mail:/sbin/nologin", + "nobody:x:65534:65534:Kernel Overflow User:/:/sbin/nologin", + "operator:x:11:0:operator:/root:/sbin/nologin", + "polkitd:x:998:996:User for polkitd:/:/sbin/nologin", + "redhat:x:1000:1000::/home/redhat:/bin/bash", + "root:x:0:0:root:/root:/bin/bash", + "shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown", + "sshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:/sbin/nologin", + "sssd:x:996:993:User for sssd:/:/sbin/nologin", + "sync:x:5:0:sync:/sbin:/bin/sync", + "systemd-coredump:x:999:997:systemd Core Dumper:/:/sbin/nologin", + "systemd-resolve:x:193:193:systemd Resolver:/:/sbin/nologin", + "tss:x:59:59:Account used for TPM access:/dev/null:/sbin/nologin", + "unbound:x:997:994:Unbound DNS resolver:/etc/unbound:/sbin/nologin" + ], + "rpm-verify": { + "changed": { + "/boot/efi/EFI/centos/grubx64.efi": ".......T.", + "/etc/crypto-policies/back-ends/nss.config": ".M.......", + "/etc/fwupd/remotes.d/dell-esrt.conf": ".......T.", + "/etc/fwupd/remotes.d/lvfs-testing.conf": ".......T.", + "/etc/fwupd/remotes.d/lvfs.conf": ".......T.", + "/etc/fwupd/remotes.d/vendor-directory.conf": ".......T.", + "/etc/fwupd/remotes.d/vendor.conf": ".......T.", + "/etc/machine-id": ".M.......", + "/proc": ".M.......", + "/sys": ".M.......", + "/var/log/lastlog": ".M....G..", + "/var/spool/anacron/cron.daily": ".M.......", + "/var/spool/anacron/cron.monthly": ".M.......", + "/var/spool/anacron/cron.weekly": ".M......." + }, + "missing": [] + }, + "services-disabled": [ + "console-getty.service", + "cpupower.service", + "ctrl-alt-del.target", + "debug-shell.service", + "ebtables.service", + "exit.target", + "fstrim.timer", + "fwupd-refresh.timer", + "halt.target", + "iprdump.service", + "iprinit.service", + "iprupdate.service", + "iprutils.target", + "kexec.target", + "mdcheck_continue.timer", + "mdcheck_start.timer", + "mdmonitor-oneshot.timer", + "nftables.service", + "poweroff.target", + "qemu-guest-agent.service", + "rdisc.service", + "reboot.target", + "remote-cryptsetup.target", + "runlevel0.target", + "runlevel6.target", + "serial-getty@.service", + "sshd-keygen@.service", + "sshd.socket", + "sssd-autofs.socket", + "sssd-nss.socket", + "sssd-pac.socket", + "sssd-pam-priv.socket", + "sssd-pam.socket", + "sssd-ssh.socket", + "sssd-sudo.socket", + "systemd-resolved.service", + "tcsd.service", + "tmp.mount" + ], + "services-enabled": [ + "NetworkManager-dispatcher.service", + "NetworkManager-wait-online.service", + "NetworkManager.service", + "auditd.service", + "autovt@.service", + "cloud-config.service", + "cloud-final.service", + "cloud-init-local.service", + "cloud-init.service", + "crond.service", + "dbus-org.fedoraproject.FirewallD1.service", + "dbus-org.freedesktop.nm-dispatcher.service", + "dnf-makecache.timer", + "firewalld.service", + "getty@.service", + "import-state.service", + "irqbalance.service", + "kdump.service", + "loadmodules.service", + "mdmonitor.service", + "microcode.service", + "nis-domainname.service", + "remote-fs.target", + "rsyslog.service", + "selinux-autorelabel-mark.service", + "sshd.service", + "sssd-kcm.socket", + "sssd.service", + "syslog.service", + "tuned.service", + "udisks2.service", + "unbound-anchor.timer" + ], + "sysconfig": { + "kernel": { + "DEFAULTKERNEL": "kernel", + "UPDATEDEFAULT": "yes" + }, + "network": { + "NETWORKING": "yes", + "NOZEROCONF": "yes" + } + }, + "timezone": "New_York" + } +} \ No newline at end of file diff --git a/test/data/manifests/centos_8-x86_64-qcow2-boot.json b/test/data/manifests/centos_8-x86_64-qcow2-boot.json new file mode 100644 index 000000000..d2304c472 --- /dev/null +++ b/test/data/manifests/centos_8-x86_64-qcow2-boot.json @@ -0,0 +1,11665 @@ +{ + "boot": { + "type": "qemu" + }, + "compose-request": { + "distro": "centos-8", + "arch": "x86_64", + "image-type": "qcow2", + "repositories": [ + { + "name": "baseos", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + }, + { + "name": "appstream", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + } + ], + "filename": "disk.qcow2", + "blueprint": { + "name": "qcow2-boot-test", + "description": "Image for boot test", + "packages": [], + "modules": [], + "groups": [], + "customizations": { + "user": [ + { + "name": "redhat", + "key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC61wMCjOSHwbVb4VfVyl5sn497qW4PsdQ7Ty7aD6wDNZ/QjjULkDV/yW5WjDlDQ7UqFH0Sr7vywjqDizUAqK7zM5FsUKsUXWHWwg/ehKg8j9xKcMv11AkFoUoujtfAujnKODkk58XSA9whPr7qcw3vPrmog680pnMSzf9LC7J6kXfs6lkoKfBh9VnlxusCrw2yg0qI1fHAZBLPx7mW6+me71QZsS6sVz8v8KXyrXsKTdnF50FjzHcK9HXDBtSJS5wA3fkcRYymJe0o6WMWNdgSRVpoSiWaHHmFgdMUJaYoCfhXzyl7LtNb3Q+Sveg+tJK7JaRXBLMUllOlJ6ll5Hod root@localhost" + } + ] + } + } + }, + "manifest": { + "sources": { + "org.osbuild.files": { + "urls": { + "sha256:003ee19ec5b88de212c3246bdfdb3e97a9910a25a219fd7cf5030b7bc666fea9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-requests-2.20.0-2.1.el8_1.noarch.rpm" + }, + "sha256:0064a3aeff41fb7345c061956c35e4b9d0b8802954e717491fb6eb51028d22fd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lmdb-libs-0.9.24-1.el8.x86_64.rpm" + }, + "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libs-0.182-3.el8.x86_64.rpm" + }, + "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libyaml-0.1.7-5.el8.x86_64.rpm" + }, + "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnghttp2-1.33.0-3.el8_2.1.x86_64.rpm" + }, + "sha256:017e78c5e23f98d6ee299255fc7be5381dba63d169e3f5dcb1de9d21b5d30ba5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-syspurpose-1.28.10-1.el8.x86_64.rpm" + }, + "sha256:0221e6e3671c2bd130e9519a7b352404b7e510584b4707d38e1a733e19c7f74f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxcb-1.13.1-1.el8.x86_64.rpm" + }, + "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsigsegv-2.11-5.el8.x86_64.rpm" + }, + "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-5.2.4-3.el8.x86_64.rpm" + }, + "sha256:03b50a4ea5cf5655c67e2358fabb6e563eec4e7929e7fc6c4e92c92694f60fa0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mozjs60-60.9.0-4.el8.x86_64.rpm" + }, + "sha256:04bcd912af3b987311c2dab6331b65c0d9223c312c4b0654649d821a713133be": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/qemu-guest-agent-4.2.0-35.module_el8.4.0+547+a85d02ba.x86_64.rpm" + }, + "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-5.33-16.el8.x86_64.rpm" + }, + "sha256:066f254f9ac7712b44214816de907a87eb8dfd0d2ea9570a7513db9a6617ba26": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dbus-1.2.4-15.el8.x86_64.rpm" + }, + "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-2.0.4-10.el8.x86_64.rpm" + }, + "sha256:07ed1209e898552e6aeac0e6d148271d562c576f7d903cb7a99a697643068f58": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-cffi-1.11.5-5.el8.x86_64.rpm" + }, + "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.182-3.el8.noarch.rpm" + }, + "sha256:084c55bef75a2ce2ab67aa4eeb6726ca59ea6d7c2b23bc6e4084f11aac7e17f8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-client-4.3.6-44.0.1.el8.x86_64.rpm" + }, + "sha256:08b76b0af07db4d3b27776a96bb7d0dc0f02b7219569676ac79036190d731d5b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libedit-3.1-23.20170329cvs.el8.x86_64.rpm" + }, + "sha256:09128c1b70cb8ea1a9bfbc6f3314dd5a8ba0c1a1886a82cd0fbe6845d48215dc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-0.115-11.el8.x86_64.rpm" + }, + "sha256:0aaaaa29cc1bb4d358142db6eb7d12df9252a8166bf61956203878eed210785c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libteam-1.31-2.el8.x86_64.rpm" + }, + "sha256:0bc637f0d028043e8388b083cdd8d0a0acea7fdbc79c0bc9401dfb02c20fb817": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pexpect-4.3.1-3.el8.noarch.rpm" + }, + "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/expat-2.2.5-4.el8.x86_64.rpm" + }, + "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-scripts-20200713-1.git51d1222.el8.noarch.rpm" + }, + "sha256:0cb3dccf2c3bd45c773dd3fbf14bd9d7e7a40fe33edd36077738066af3c95517": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/subscription-manager-rhsm-certificates-1.28.10-1.el8.x86_64.rpm" + }, + "sha256:0e9a8a0f823bf0ef948862f0ccb62353460bd07931e756c98f23908c1c526578": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-decorator-4.2.1-2.el8.noarch.rpm" + }, + "sha256:0edde19e0c027c8cff31b82e1f4b0b198c00bf924047fcf4dd610a7d4965ab52": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pytz-2017.2-9.el8.noarch.rpm" + }, + "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-25-17.el8.x86_64.rpm" + }, + "sha256:0feac495306bbe6e3149a352025bea8d23cda512859a230cbd3f510cf48caaf7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonschema-2.6.0-4.el8.noarch.rpm" + }, + "sha256:105beb1a237e66802e64e620f79b357dfc8f3bb8952ac2f293548f1d68ca40b1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libfastjson-0.99.8-2.el8.x86_64.rpm" + }, + "sha256:109d6db30e5515601b00954b2fd8750c421730a18afc12e1fa7781e24e5b0863": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-inotify-0.9.6-13.el8.noarch.rpm" + }, + "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cpio-2.12-10.el8.x86_64.rpm" + }, + "sha256:11838afbfab4da7d5fa6e01046f76cce0b0a0c174a87c522eba440fce16e316f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/abattis-cantarell-fonts-0.0.25-6.el8.noarch.rpm" + }, + "sha256:11ac209220f3a53a762adebb4eeb43190e02ef7cdad2c54bcb474b206f7eb6f2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXrender-0.9.10-7.el8.x86_64.rpm" + }, + "sha256:1230ddb5d92fe538a0526e3a9f05563a111ae4ff1978fc8e18de889974b5b46c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_autofs-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:142d4fe6236cdeac3f967517085d99649215d75026fbe00746e0c5214d7d20df": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-policycoreutils-2.9-12.el8.noarch.rpm" + }, + "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-6.1-7.20180224.el8.x86_64.rpm" + }, + "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libblkid-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:15dc15a5be210707852f051f4d09949c063a7283edc7d4ca3d4289eedcc0b509": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gobject-base-3.28.3-2.el8.x86_64.rpm" + }, + "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-libs-25-17.el8.x86_64.rpm" + }, + "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/npth-1.5-4.el8.x86_64.rpm" + }, + "sha256:16b34582f757aebb9bc7b0a0475458cbb186238b5b528ef8fdb099cb739ba383": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-squash-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:16d05b70027f6e2879e84887c028043617b899fe3966c36e54c0a7078fbcb411": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/centos-logos-82.0-2.el8.x86_64.rpm" + }, + "sha256:173a812d859c70f8db7b014d507c5cacb76c62ab5480c44be217f880465f42c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-server-8.0p1-5.el8.x86_64.rpm" + }, + "sha256:176ffcb2cf0fdcbdd2d8119cbd98eef60a30fdb0fb065a9382d2c95e90c79652": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-chardet-3.0.4-7.el8.noarch.rpm" + }, + "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-c-0.13.1-0.4.el8.x86_64.rpm" + }, + "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-2.02-93.el8.x86_64.rpm" + }, + "sha256:185f36b3af9367e6142233af358df22f23ee623697bc6a45c47091013707872e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpath_utils-0.2.1-39.el8.x86_64.rpm" + }, + "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grubby-8.40-41.el8.x86_64.rpm" + }, + "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-5.3.28-40.el8.x86_64.rpm" + }, + "sha256:19ca7ab9cb2e39ec452ed1424f828ec464266094e31903301680d5a5d0e2ac2c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libmaxminddb-1.2.0-10.el8.x86_64.rpm" + }, + "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.6-26.el8.x86_64.rpm" + }, + "sha256:1b5187e9b694e439a059be58d8de5317f04278371d1195bf000b001ba8699197": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libldb-2.2.0-1.el8.x86_64.rpm" + }, + "sha256:1b53c868277dec628058b31b1a8a8a2ccd8efe832ce9694805b5f82564136eb3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-prettytable-0.7.2-14.el8.noarch.rpm" + }, + "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/freetype-2.9.1-5.el8.x86_64.rpm" + }, + "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kpartx-0.8.4-8.el8.x86_64.rpm" + }, + "sha256:1bd969e0521820374122f5132e5998d9bd2ab185be66565a7266096297419c8e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-configobj-5.0.6-11.el8.noarch.rpm" + }, + "sha256:1c4b186665558747023a60d0d662d3780a1bc49e578062f4b70100c71ab2220c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mokutil-0.3.0-11.el8.x86_64.rpm" + }, + "sha256:1cef673b1e520903e3b1c17d0d284d205a6f949908c351618dae892f40fb011b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-subscription-manager-rhsm-1.28.10-1.el8.x86_64.rpm" + }, + "sha256:1d130b0daf86899c3987d59567303ce7ae44c3273f2d8d0f0625bef7e6bad16d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-base-6.1-7.20180224.el8.noarch.rpm" + }, + "sha256:20874a9d40b12125c9e5b97fe4ccda3f94acbc03da1dec7299123901f5b56631": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-oauthlib-2.1.0-1.el8.noarch.rpm" + }, + "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libunistring-0.9.9-3.el8.x86_64.rpm" + }, + "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-libs-1.1.1g-12.el8_3.x86_64.rpm" + }, + "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-3.5.0-1.el8.x86_64.rpm" + }, + "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/acl-2.2.53-1.el8.x86_64.rpm" + }, + "sha256:230820d3f9dbaa9dcd013836f4ba56d0514946bc05cac7727ef2aaff3a3dde26": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libappstream-glib-0.7.14-3.el8.x86_64.rpm" + }, + "sha256:233e5f78027b684e5aaac1395cc574aea3039059bf86eb4494422bc74216a396": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-slip-0.6.4-11.el8.noarch.rpm" + }, + "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:2c63399bee449fb6e921671a9bbf3356fda73f890b578820f7d926202e98a479": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libaio-0.3.112-1.el8.x86_64.rpm" + }, + "sha256:2c6dd4f21d9c4bde29f693d32e44f0d1c5dc73d78d013767df531d69bbfc6ed8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_nss_idmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:2d4cf3bd8b8046adfa869fbb5b472294469457f6445db36abcc227959be9adeb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bind-export-libs-9.11.26-2.el8.x86_64.rpm" + }, + "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/filesystem-3.8-4.el8.x86_64.rpm" + }, + "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstdc++-8.4.1-1.el8.x86_64.rpm" + }, + "sha256:2e8d4ee76fa8678b0e4d6c0297b16f96e0116201bf96b36e8924b1b080abcddd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-cli-3.5.0-1.el8.x86_64.rpm" + }, + "sha256:2ebe28be2e0a413af31a0f49b6a2774670067cdbe48e723040b19922ae205d6b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-cryptography-3.2.1-3.el8.x86_64.rpm" + }, + "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-pkcs11-0.4.10-2.el8.x86_64.rpm" + }, + "sha256:2f1548290dba27526a7b5541e4c7ff76d3124285f8e6335cd6d72919e2aafd41": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/tcpdump-4.9.3-1.el8.x86_64.rpm" + }, + "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-libs-239-44.el8.x86_64.rpm" + }, + "sha256:2fbf7e0ba8e8249b45392720a851905a42de547e1b760d461a799e2d1273cd97": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/oddjob-0.34.7-1.el8.x86_64.rpm" + }, + "sha256:2fcd7a063cab2e103fd4fdf8f4c63d09b9f3d60759c3b0982c75ed9a9e57bdf8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cairo-1.15.12-3.el8.x86_64.rpm" + }, + "sha256:30f37ca1fe1592e29d3e97c1dec0646015000d19bffc40f13dcfe73e15be66fc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/setroubleshoot-plugins-3.3.13-1.el8.noarch.rpm" + }, + "sha256:30fab73ee155f03dbbd99c1e30fe59dfba4ae8fdb2e7213451ccc36d6918bfcc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmnl-1.0.4-6.el8.x86_64.rpm" + }, + "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sed-4.5-2.el8.x86_64.rpm" + }, + "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gpg-1.13.1-7.el8.x86_64.rpm" + }, + "sha256:370b74a811249b8f0bdfcd34137507f058a85196775e9d0d2bb244c100d194ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_sudo-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:377ad20c1681518bff1f40884589bddc4a692506384c7676f072ddf86ae429f9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_idmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pigz-2.4-4.el8.x86_64.rpm" + }, + "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdnf-0.55.0-2.el8.x86_64.rpm" + }, + "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libffi-3.1-22.el8.x86_64.rpm" + }, + "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-all-langpacks-2.28-147.el8.x86_64.rpm" + }, + "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-libs-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-libs-1.18-1.el8.x86_64.rpm" + }, + "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libfdisk-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:3acd2c8b6ea534811308b3138859b5fa150b89604bb60f16b0650747039d696a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/irqbalance-1.4.0-6.el8.x86_64.rpm" + }, + "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gmp-6.1.2-10.el8.x86_64.rpm" + }, + "sha256:3c6650fd6e32fdc24b8cf1f7a85ae8232661b47bda7019e49fd0eb474683ff23": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hdparm-9.54-3.el8.x86_64.rpm" + }, + "sha256:3cd092e6e03efb4bb49b91dedd52b43f891092d04a2ff040b9f2197ec2082511": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/logrotate-3.14.0-4.el8.x86_64.rpm" + }, + "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ima-evm-utils-1.3.2-11.el8.x86_64.rpm" + }, + "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-4.4.2-5.el8.noarch.rpm" + }, + "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chkconfig-1.13-2.el8.x86_64.rpm" + }, + "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmartcols-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:3efd6a2548813167fe37718546bc768a5aa8ba59aa80edcecd8ba408bec329b0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/vim-minimal-8.0.1763-15.el8.x86_64.rpm" + }, + "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shared-mime-info-1.9-3.el8.x86_64.rpm" + }, + "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grep-3.1-6.el8.x86_64.rpm" + }, + "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/popt-1.18-1.el8.x86_64.rpm" + }, + "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dosfstools-4.1-6.el8.x86_64.rpm" + }, + "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-release-8.4-1.el8.noarch.rpm" + }, + "sha256:41a5551a1bdf84359c3f86f08bb1e5c13c0bc1e057ae5d9f0cdf9930afeb37a1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libX11-1.6.8-4.el8.x86_64.rpm" + }, + "sha256:41d9c9f8e17c83f73e51e90f02e08927bb9c836d033815c6cdddc6da44e321f0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-libnm-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:4280042747c9027c3252d360fa33d63490aa518858849115b20162a097a37146": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kexec-tools-2.0.20-45.el8.x86_64.rpm" + }, + "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-2.2.20-2.el8.x86_64.rpm" + }, + "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-1.2.0-2.el8.x86_64.rpm" + }, + "sha256:4302361b12eefd5574f57bf0c49c0e5bdc738eddda33634af8b35adfb53a52a1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/yum-4.4.2-5.el8.noarch.rpm" + }, + "sha256:436e93b4c072f8b6f90f41a037d017406be10c18efafc8c634f6da59bbac1105": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-libs-4.3.6-44.0.1.el8.x86_64.rpm" + }, + "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-common-2.28-147.el8.x86_64.rpm" + }, + "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-libs-6.1-7.20180224.el8.x86_64.rpm" + }, + "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tzdata-2021a-1.el8.noarch.rpm" + }, + "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcrypt-1.8.5-4.el8.x86_64.rpm" + }, + "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nettle-3.4.1-2.el8.x86_64.rpm" + }, + "sha256:44c8d429eda78196b566c95603bdbcc23483c1dab3dd6e0efae29aa6d848a431": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-python-utils-2.9-12.el8.noarch.rpm" + }, + "sha256:451d0cb6e2284578e3279b4cbb5ec98e9d98a687556c6b424adf8f1282d4ef58": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libsemanage-2.9-6.el8.x86_64.rpm" + }, + "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-libs-5.33-16.el8.x86_64.rpm" + }, + "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/unbound-libs-1.7.3-15.el8.x86_64.rpm" + }, + "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/basesystem-11-5.el8.noarch.rpm" + }, + "sha256:48bfe66d6f07baf1974355e8a3ebbc44f2d9812b823ddfff1c15f35635a8dc4e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efivar-libs-37-4.el8.x86_64.rpm" + }, + "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libacl-2.2.53-1.el8.x86_64.rpm" + }, + "sha256:499e48b35f3b5f5da45031fa78fba559fee6a480ecb106e6c300eb8344510958": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-ptyprocess-0.5.2-4.el8.noarch.rpm" + }, + "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-3.14.3-62.el8.noarch.rpm" + }, + "sha256:49d972c660b9238dd1d58ab5952285b77e440820bf4563cce2b5ecd2f6ceba78": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXau-1.0.9-3.el8.x86_64.rpm" + }, + "sha256:4a28d9fa9785d7e8515deaf5e1a381a553c37b02a81a20ddd4fa202b33413ac9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-network-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:4c02e3e1808f0189269b242242468a364007a8f12c6e38afc24b599b2848b0fa": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/virt-what-1.18-6.el8.x86_64.rpm" + }, + "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-libs-3.7.0-1.el8.x86_64.rpm" + }, + "sha256:4c5c7f3773c634c054b0a5fc1b40d0a8448b44bb5aff410bfa88facf9e2059ff": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/parted-3.2-38.el8.x86_64.rpm" + }, + "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-3.7.0-1.el8.x86_64.rpm" + }, + "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtirpc-1.1.4-4.el8.x86_64.rpm" + }, + "sha256:4e1b66f11f9e38bbd4a83aaf20f773925522a32b9fb1d0d75b3cca435556ff02": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-gobject-3.28.3-2.el8.x86_64.rpm" + }, + "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-config-0.9.4-2.el8.noarch.rpm" + }, + "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-rpm-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-utils-2.9-5.el8.x86_64.rpm" + }, + "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgomp-8.4.1-1.el8.x86_64.rpm" + }, + "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/curl-7.61.1-18.el8.x86_64.rpm" + }, + "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-pip-9.0.3-19.el8.noarch.rpm" + }, + "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-0.3.15-1.el8.x86_64.rpm" + }, + "sha256:525393e4d658e395c6280bd2ff4afe54999796c4722986325297ba4bfade3ea5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pyyaml-3.12-12.el8.x86_64.rpm" + }, + "sha256:538899f9a39e085ef14bd34f84327c12b862981df1428bb1353ef4082ddd3a4c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-libevent-0.3.0-5.el8.x86_64.rpm" + }, + "sha256:53ae3ecd59ec61852cabbd039c748ed63ceb6a88da98587d4c33323ba4095154": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsysfs-2.1.0-24.el8.x86_64.rpm" + }, + "sha256:5452b96e4b57c275dd41e48d55af1ca4f77ccfb3ae403796e599a039d7382b91": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libbasicobjects-0.1.1-39.el8.x86_64.rpm" + }, + "sha256:563b3741d26b6af963fdb7b0634e0791445a707d0b6093ac71c3224299241639": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-slip-dbus-0.6.4-11.el8.noarch.rpm" + }, + "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libarchive-3.3.3-1.el8.x86_64.rpm" + }, + "sha256:58026205b6bd63438307d6afc0b0fb15d1d2d09736cbd0f8b245fadffec81003": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nfs-utils-2.3.3-41.el8.x86_64.rpm" + }, + "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64.rpm" + }, + "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libdnf-0.55.0-2.el8.x86_64.rpm" + }, + "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.3.3-2.el8.x86_64.rpm" + }, + "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libibverbs-32.0-4.el8.x86_64.rpm" + }, + "sha256:59ba5bf69953a5a2e902b0f08b7187b66d84968852d46a3579a059477547d1a0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libselinux-2.9-5.el8.x86_64.rpm" + }, + "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-20200713-1.git51d1222.el8.noarch.rpm" + }, + "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxml2-2.9.7-9.el8.x86_64.rpm" + }, + "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-iniparse-0.4-31.el8.noarch.rpm" + }, + "sha256:5c68635cb03533a38d4a42f6547c21a1d5f9952351bb01f3cf865d2621a6e634": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lzo-2.08-14.el8.x86_64.rpm" + }, + "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hwdata-0.314-8.7.el8.noarch.rpm" + }, + "sha256:5deb66cc8e9094931cf74002186385c1ebdc022936cd8f10ec4c4675a99b9b2a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsoup-2.62.3-2.el8.x86_64.rpm" + }, + "sha256:5e24dd39ae59ef7b7a386f28509cc80d8fabb23f0932e52ea365cf064ff76c59": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/numactl-libs-2.0.12-11.el8.x86_64.rpm" + }, + "sha256:5f3d3d3b27b7df75738d1ee31112c60d39c54b8d7f92b6900606187f6cffce1d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chrony-3.5-1.el8.x86_64.rpm" + }, + "sha256:5f445b2b2a4bdeabd555e25dfa10119d9f4e4e500d1c4492219dd8647f119ce2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libX11-common-1.6.8-4.el8.noarch.rpm" + }, + "sha256:5f45a2ff1a9c9f3d4fcae463c1ca70b1a16caccc59816ce391f064c9d8b9d8ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:5f4f256128dba88a13599d6458908c24c0e9c18d8979ae44bf5734da8e7cab70": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jinja2-2.10.1-2.el8_0.noarch.rpm" + }, + "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxcrypt-4.1.1-4.el8.x86_64.rpm" + }, + "sha256:60b0cbc5e435be346bb06f45f3336f8936d7362022d8bceda80ff16bc3fb7dd2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonpointer-1.10-11.el8.noarch.rpm" + }, + "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/info-6.5-6.el8.x86_64.rpm" + }, + "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-libs-5.2.4-3.el8.x86_64.rpm" + }, + "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gpgme-1.13.1-7.el8.x86_64.rpm" + }, + "sha256:6327624b7b0d726a3c95f2245619efb1df8e70023fadcc8158afed39f57859e7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdhash-0.5.0-39.el8.x86_64.rpm" + }, + "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpsl-0.20.2-6.el8.x86_64.rpm" + }, + "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsepol-2.9-2.el8.x86_64.rpm" + }, + "sha256:63a6b7765828081cc88b36d10c68621acbebf02a7c2e7d7f1a1217c8742ea6ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-1.5.2-4.el8.x86_64.rpm" + }, + "sha256:657db08f58b6776f48fda17d2b734a26918b431253f9e4eba9fd5a46d9f89aef": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-tui-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pip-wheel-9.0.3-19.el8.noarch.rpm" + }, + "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.175-3.el8.x86_64.rpm" + }, + "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20180723-1.el8.noarch.rpm" + }, + "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcom_err-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:67419432fe7d373f8e5ddaa7b0dd1c25389608bf2f4ee76dbabcc2d96eb8c9d0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-country-20180605-1.el8.noarch.rpm" + }, + "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-smime-2.2.20-2.el8.x86_64.rpm" + }, + "sha256:69fc3075751693fe23c0658d1e97c0e14366d8833a78ab75b951596b07345827": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbxtool-8-5.el8.x86_64.rpm" + }, + "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-0.23.22-1.el8.x86_64.rpm" + }, + "sha256:6aa1e29a4d805fc36c3196788fe78cb4552e2ebec8b3d0f8d32974e6a97025f2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-perf-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:6b740563ba5858573ff3c2d2a827aeaf6e7166178e36066755d2cde4cf8a016f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libref_array-0.1.5-39.el8.x86_64.rpm" + }, + "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsemanage-2.9-6.el8.x86_64.rpm" + }, + "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sqlite-libs-3.26.0-13.el8.x86_64.rpm" + }, + "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-libs-2.9.7-12.el8.x86_64.rpm" + }, + "sha256:6cd7444c22d56201f61fed5fd741b44cfaae18d95b811d25c5f0ffe2f8e55a8f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-kcm-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gzip-1.9-12.el8.x86_64.rpm" + }, + "sha256:6ef6573d410f9e9dfa4bb4a4e1b2ff2f7555b50b1fc4b2ff8fb890e46b4b8d8a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-systemd-234-8.el8.x86_64.rpm" + }, + "sha256:6fc3208be9c78bf1f843f9f7d4d3f04096f116dc056285142235bf76472ba382": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/timedatex-0.5-3.el8.x86_64.rpm" + }, + "sha256:6fded933d86737a21c5cd77399e68e3912125c2da1afb95592e7089ba5594056": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/sscg-2.3.3-14.el8.x86_64.rpm" + }, + "sha256:700b9050aa490b5eca6d1f8630cbebceb122fce11c370689b5ccb37f5a43ee2f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fontpackages-filesystem-1.44-22.el8.noarch.rpm" + }, + "sha256:708a8fd75f7c6987d66e2d62de664b5a84c6f75fd4e5230e244681897b15a25d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcollection-0.7.0-39.el8.x86_64.rpm" + }, + "sha256:70b5e4e580da72969ad3bb144c15293910b7d679e195c118cee60d8320f01851": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuser-0.62-23.el8.x86_64.rpm" + }, + "sha256:7115a12fad224b469419e19ee5c0d38322f467fe7a1c441c1b0239b197baac2a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-nfs-idmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tpm2-tss-2.3.2-3.el8.x86_64.rpm" + }, + "sha256:71fcbbec3aa152bc1427cb4d597375b008438f6259b20cfcb68fff21eef80f91": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-anacron-1.5.2-4.el8.x86_64.rpm" + }, + "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libelf-0.182-3.el8.x86_64.rpm" + }, + "sha256:7443e0df4d55a40a0ba3cec4cd4da620200a255605e31a137bee001cb4b43af3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rsync-3.1.3-12.el8.x86_64.rpm" + }, + "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libevent-2.1.8-5.el8.x86_64.rpm" + }, + "sha256:74b842ba3352d7c4ada7e991aeadf8749f058a4d00ccc6f79f1c82a281497cb7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iputils-20180629-6.el8.x86_64.rpm" + }, + "sha256:759d9669521b99f19f60f8067e64b4aa42942e22ca62b7f98503f6a932125783": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gsettings-desktop-schemas-3.32.0-5.el8.x86_64.rpm" + }, + "sha256:760141c74870a93505dbba2174034287b6a97b9bb2b12c5ca2b7af056773b45b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-config-generic-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-1.18-1.el8.x86_64.rpm" + }, + "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-targeted-3.14.3-62.el8.noarch.rpm" + }, + "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-239-44.el8.x86_64.rpm" + }, + "sha256:774d214a379c0b729d7e989f9d5094fdfda7df68c1e792ba9200542032f04c91": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-libs-1.44-5.el8.x86_64.rpm" + }, + "sha256:776a182ecaab9f86c7e869db2eb2deea1f291caee701cddbd752da8cd3c57458": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/prefixdevname-0.1.0-6.el8.x86_64.rpm" + }, + "sha256:7800dfd0d4769a898d11db330fdb5b19614533628a45fe91cce406d6cd1f0c71": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cloud-utils-growpart-0.31-1.el8.noarch.rpm" + }, + "sha256:78596f457c3d737a97a4edfe9a03a01f593606379c281701ab7f7eba13ecaf18": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-1.0.6-26.el8.x86_64.rpm" + }, + "sha256:78ade36bcaa352e60732f94d0f668ea62a34e88aa2cadd4cb0d1ec0f21392525": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libxml2-2.9.7-9.el8.x86_64.rpm" + }, + "sha256:78c43d8a15ca018de1803e4baac5819e1baab1963fd31f1e44e54e8a573acbfc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-idna-2.5-5.el8.noarch.rpm" + }, + "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodulemd-2.9.4-2.el8.x86_64.rpm" + }, + "sha256:79277d872ae6035009a1a40e914ec09bca21aefcac9d73dee65880c86387f3c9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-efi-x64-2.02-93.el8.x86_64.rpm" + }, + "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openldap-2.4.46-16.el8.x86_64.rpm" + }, + "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-data-4.4.2-5.el8.noarch.rpm" + }, + "sha256:7a7963e2052bfb45b8569f64619dc5cb92fe8aeb78c754b7cf948b9784646785": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hostname-3.20-6.el8.x86_64.rpm" + }, + "sha256:7bc2e2a25b04b52a4ec5de2858e75eb07f16495d4de5f7ce926777130302cfe3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libestr-0.1.10-1.el8.x86_64.rpm" + }, + "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libzstd-1.4.4-1.el8.x86_64.rpm" + }, + "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-libs-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libidn2-2.2.0-1.el8.x86_64.rpm" + }, + "sha256:7e2804a4494d4179ed50c0c99da1e30c3a6abf8db889c1412b458943cff0e3e5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gobject-introspection-1.56.1-1.el8.x86_64.rpm" + }, + "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libusbx-1.0.23-4.el8.x86_64.rpm" + }, + "sha256:7e73df2868a12881f6b98fe025485e9e6345978511e2866132503e05b1ccefda": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cockpit-system-236-1.el8.noarch.rpm" + }, + "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:7ec48db9e1e9896f29a16cbea53cdeecdd7dd2bc278c06721ebca2e71e9dcd6d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-common-4.3.6-44.0.1.el8.noarch.rpm" + }, + "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libs-3.6.8-36.el8.x86_64.rpm" + }, + "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpcap-1.9.1-5.el8.x86_64.rpm" + }, + "sha256:7f506879c64e0bb4d98782d025f46fb9a07517487ae4cbebbb3985a98f4e2154": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pysocks-1.6.8-3.el8.noarch.rpm" + }, + "sha256:7fa8fbc576f7d54c388fa39fc3ed86bacb7964cac4544c48b3ffabcdcdc27b61": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/initscripts-10.00.12-1.el8.x86_64.rpm" + }, + "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-hmaccalc-1.2.0-2.el8.x86_64.rpm" + }, + "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/findutils-4.6.0-20.el8.x86_64.rpm" + }, + "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcurl-7.61.1-18.el8.x86_64.rpm" + }, + "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-0.19.8.1-17.el8.x86_64.rpm" + }, + "sha256:82ce159a9e4e4b6b4fdce9ad954aa507f67108430bd261a4dcd826e44d0152a4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pyserial-3.1.1-8.el8.noarch.rpm" + }, + "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/util-linux-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libcomps-0.1.11-5.el8.x86_64.rpm" + }, + "sha256:839c62cd7fc7e152decded6f28c80b5f7b8f34a5e319057867b38b26512cee67": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/snappy-1.1.8-3.el8.x86_64.rpm" + }, + "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-gpg-keys-8-2.el8.noarch.rpm" + }, + "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgpg-error-1.31-1.el8.x86_64.rpm" + }, + "sha256:85eb614fc608f3b3f4bbd08d4a3b0ff6af188677ea4e009be021680c521cedae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonpatch-1.21-2.el8.noarch.rpm" + }, + "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcroco-0.6.12-4.el8_2.1.x86_64.rpm" + }, + "sha256:881bdb9aa79de1933dc553fcf0b6597897b60e0e4b73a369572e4d9460fab439": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gssproxy-0.8.0-19.el8.x86_64.rpm" + }, + "sha256:8842ae7b6585715e5daeb82bebccd993a81a3e0697ea105735b7a920feb1a7ed": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efivar-37-4.el8.x86_64.rpm" + }, + "sha256:8846acb4df4306e2274bd8a496e0c47ee1fea1d211f6d3369e261ec863fddcb1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sos-4.0-7.el8.noarch.rpm" + }, + "sha256:8852282172440cd618c695356449cbc035be4091b2a0833c785c8e42cc1df0e6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnfsidmap-2.3.3-41.el8.x86_64.rpm" + }, + "sha256:8891a9a4707611c13a5693b195201dd940254ffdb03cf5742952329282bb8cb7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pycparser-2.14-14.el8.noarch.rpm" + }, + "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-2.9-5.el8.x86_64.rpm" + }, + "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-udev-239-44.el8.x86_64.rpm" + }, + "sha256:8cad468b07c285444728b39817df72c77f7a96e06367e63f09ac979d3349d386": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/subscription-manager-1.28.10-1.el8.x86_64.rpm" + }, + "sha256:8cb26212a1235f514b9529868ca86e119ad269755ba4c5e5cf1832523a4efc14": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/authselect-compat-1.2.2-1.el8.x86_64.rpm" + }, + "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:8d6742dce47f8ed65e222864872e919f30c678f5df1e99c134fba8a0fc7f454d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-libs-0.115-11.el8.x86_64.rpm" + }, + "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libss-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-2.28-147.el8.x86_64.rpm" + }, + "sha256:913d735c486bf4f564d91bfb247ade86f7567d6d7a7631d16b95e89fd2d0c3ba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/setroubleshoot-server-3.3.24-2.el8.x86_64.rpm" + }, + "sha256:918518368513d162d772dfc5d16536ad2799276bcba2f47514a1c7098de2b43f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtalloc-2.3.1-2.el8.x86_64.rpm" + }, + "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/os-prober-1.74-6.el8.x86_64.rpm" + }, + "sha256:92d0b9ec103da224c892da489441a7beec1df28e2a0962b56a949a1e66372bf6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-plugin-subscription-manager-1.28.10-1.el8.x86_64.rpm" + }, + "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-unbound-1.7.3-15.el8.x86_64.rpm" + }, + "sha256:941a9068b8fa524ecac58d37f941b95fbdcd9e38bd87c7f9d1330c5925a52a20": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-plugins-core-4.0.18-3.el8.noarch.rpm" + }, + "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-setuptools-39.2.0-6.el8.noarch.rpm" + }, + "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-1.02.175-3.el8.x86_64.rpm" + }, + "sha256:94cb8dceb47a5b01e3c0542ea3b48601d720325da28e6e6d89ae529e4fddcd97": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdk-pixbuf2-2.36.12-5.el8.x86_64.rpm" + }, + "sha256:960f841e4a286b6b9511d47e6736753e4d1f0fd05395a078bacccfb1c8b164aa": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fontconfig-2.13.1-3.el8.x86_64.rpm" + }, + "sha256:9664aba8dfd6bd6fda669fcf8f6ff04914305a6373b09d8b675322c7337b9c36": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/teamd-1.31-2.el8.x86_64.rpm" + }, + "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre-8.42-4.el8.x86_64.rpm" + }, + "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libseccomp-2.4.3-1.el8.x86_64.rpm" + }, + "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuuid-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:9869db60ee2b6d8f2115937857fb0586802720a75e043baf21514011a9fa79aa": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXext-1.3.4-1.el8.x86_64.rpm" + }, + "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lua-libs-5.3.4-11.el8.x86_64.rpm" + }, + "sha256:98a6386df94fc9595365c3ecbc630708420fa68d1774614a723dec4a55e84b9c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-glib-1.4.4-1.el8.x86_64.rpm" + }, + "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-common-1.12.8-12.el8.noarch.rpm" + }, + "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pinentry-1.1.0-2.el8.x86_64.rpm" + }, + "sha256:9b121a03314f1f0822a58059efba09944df192c35e22267f39137f70a28cda1c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstemmer-0-10.585svn.el8.x86_64.rpm" + }, + "sha256:9c7a5a6f73c8e32559226c54d229cb25304a81a853af22d9f829b9bb09b21f53": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-markupsafe-0.23-19.el8.x86_64.rpm" + }, + "sha256:9c849b1d4fd605ae749fd9d090715b6034520af871c23729cd4003f22e0990de": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/passwd-0.80-3.el8.x86_64.rpm" + }, + "sha256:9d160cdfba107ddc0613e169311bf57077c04e71a052a57704f3bdb64729d565": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/c-ares-1.13.0-5.el8.x86_64.rpm" + }, + "sha256:9d433d8c058e59c891c0852b95b3b87795ea30a85889c77ba0b12f965517d626": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/psmisc-23.1-5.el8.x86_64.rpm" + }, + "sha256:9dbf3ceb7de5a727f1a36edd5add73dcd96c83f24afc81d78e254b518551da96": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-babel-2.5.1-5.el8.noarch.rpm" + }, + "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/setup-2.12.2-6.el8.noarch.rpm" + }, + "sha256:9eb9c1a67c5be04487cc133bdb8498eaf260e4d930a0143d2e1aa772e3d6cf64": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpipeline-1.5.0-2.el8.x86_64.rpm" + }, + "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-common-2.02-93.el8.noarch.rpm" + }, + "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libattr-2.4.48-3.el8.x86_64.rpm" + }, + "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-six-1.11.0-8.el8.noarch.rpm" + }, + "sha256:a06e1d34df03aaf429d290d5c281356fefe0ad510c229189405b88b3c0f40374": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/jansson-2.11-3.el8.x86_64.rpm" + }, + "sha256:a0b6a8d5530f5003f5c8d56211246cd1130a5b4dc1396dc50da70ce0e128b02c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/man-db-2.7.6.1-17.el8.x86_64.rpm" + }, + "sha256:a0c8f83cef355dd98d7750e3d8eb3e9f3e9f8f5e9a3ee441cb4bc4014c647e31": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/squashfs-tools-4.3-19.el8.x86_64.rpm" + }, + "sha256:a1d1bac6c4710e0a1a6e8a507b06a630dda6687f12642be0847768c14ce7271e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-1.44-5.el8.x86_64.rpm" + }, + "sha256:a205b1ca2ee6452bec8a2a6a5817f26ed60a5490b99b333c0b3baf8171ef0c71": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cockpit-ws-236-1.el8.x86_64.rpm" + }, + "sha256:a217b0fbe9757a0225b66d16c1668cdf5cb2aa69c68b89e79783abd507f2e7bf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-libs-1.2.2-1.el8.x86_64.rpm" + }, + "sha256:a2418e8e12144d4e84965298e7bbefedc876c0d0d93771afb9b5c6c2eb139dc0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pip-9.0.3-19.el8.noarch.rpm" + }, + "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xkeyboard-config-2.28-1.el8.noarch.rpm" + }, + "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcomps-0.1.11-5.el8.x86_64.rpm" + }, + "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-legacy-2.0.4-10.el8.noarch.rpm" + }, + "sha256:a456039834ccc5432949120f1d80b18329b552cf44d1b59ea1b60d2192e7bc5c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iproute-5.9.0-2.el8.x86_64.rpm" + }, + "sha256:a5228fc876cffc7dc79769ada5653cb9bfb80d469fb3c9f0acc14a1a0d15782d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtdb-1.4.3-1.el8.x86_64.rpm" + }, + "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-minimal-2.02-93.el8.x86_64.rpm" + }, + "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/zlib-1.2.11-17.el8.x86_64.rpm" + }, + "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xfsprogs-5.0.0-8.el8.x86_64.rpm" + }, + "sha256:a7f9ae54f45ca4fcecf78d9885d12a789f7325119794178bfa2814c6185a953d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib-networking-2.56.1-1.1.el8.x86_64.rpm" + }, + "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-repos-8-2.el8.noarch.rpm" + }, + "sha256:a8a27e1ffbb92356d6376334687b9eaa0cb5f2eece2670128f3a01e391e9f3bb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dejavu-sans-mono-fonts-2.35-7.el8.noarch.rpm" + }, + "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-common-8.30-8.el8.x86_64.rpm" + }, + "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:a9ec13abf63c69913acc1ac7070ab315c8b5a58c6006c3dfc5b27662f7f22260": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-clients-8.0p1-5.el8.x86_64.rpm" + }, + "sha256:aa0007192287faeaecc72d9fa48efdb3108c764d450dc8fea65474476da32c45": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pyudev-0.21.0-7.el8.noarch.rpm" + }, + "sha256:aa1835fd302a37b84ac256db5dd0de09bd9883a5a07775aedb491faf46b18ee0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-urllib3-1.24.2-5.el8.noarch.rpm" + }, + "sha256:aa938dc6f13d0d57ca811b8c299b1017723fa419997b87754f74db770430c2d9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-3.6.8-36.el8.x86_64.rpm" + }, + "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnutls-3.6.14-7.el8_3.x86_64.rpm" + }, + "sha256:ab1be3dcea74c7a7fac49f9a1cad4113fded2d3edabb61b29ed8489a737033fe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-libs-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:acec114d3d071379d70634e0c9c097cce38aa418500d010a8057b3fa1f69b27e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-librepo-1.12.0-3.el8.x86_64.rpm" + }, + "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcc-8.4.1-1.el8.x86_64.rpm" + }, + "sha256:ad2fb5876a4be399a0bcbb1b45f796229186b557d100c5f8f9017955dfd20065": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/oddjob-mkhomedir-0.34.7-1.el8.x86_64.rpm" + }, + "sha256:addf80c52d794aed47874eb9d5ddbbaa90cb248fda1634d793054a41da0d92d7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-audit-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm" + }, + "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-libs-0.19.8.1-17.el8.x86_64.rpm" + }, + "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-libs-1.5.10-6.el8.x86_64.rpm" + }, + "sha256:b00855013100d3796e9ed6d82b1ab2d4dc7f4a3a3fa2e186f6de8523577974a0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/groff-base-1.22.3-18.el8.x86_64.rpm" + }, + "sha256:b0149d85f0172e98866ff2483660af2cf6c6fa0c8f9cab2c51cc2af479c9e319": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm" + }, + "sha256:b028aa2b393a124c5bf8665f9111caa9e4c2aa757d880b100c1616c207848a3f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rhsm-icons-1.28.10-1.el8.noarch.rpm" + }, + "sha256:b06fa62d0a585a7bc3b9d3341923736b3ee4b6cc6d7ca83bebcb97225ca86ac9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libini_config-1.3.1-39.el8.x86_64.rpm" + }, + "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shadow-utils-4.6-12.el8.x86_64.rpm" + }, + "sha256:b1871d8ac1abaf5e809448c5f37e32487f177aee3080d9033efb4b160f755aba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-client-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-39.2.0-6.el8.noarch.rpm" + }, + "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-tools-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:b2cd2dc5cf9c1c118053e7e650c6d910b1d37e810a38d90de27d80a04b702e39": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dmidecode-3.2-8.el8.x86_64.rpm" + }, + "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pam-1.3.1-14.el8.x86_64.rpm" + }, + "sha256:b3bc3f1c9e8028a177599f1ed9cb6c31d2d6e75111e34623d25e736d3ddcf8fd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tuned-2.15.0-1.el8.noarch.rpm" + }, + "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libassuan-2.5.1-3.el8.x86_64.rpm" + }, + "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsolv-0.7.16-2.el8.x86_64.rpm" + }, + "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/librepo-1.12.0-3.el8.x86_64.rpm" + }, + "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-hawkey-0.55.0-2.el8.x86_64.rpm" + }, + "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib2-2.56.4-9.el8.x86_64.rpm" + }, + "sha256:b7dbc8efe4e3de5b47742959530182be455a17a7fdc3cd289d15316ae8f54223": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/PackageKit-1.1.12-6.el8.x86_64.rpm" + }, + "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-1.1.1g-12.el8_3.x86_64.rpm" + }, + "sha256:b8e4cfecbbe7d2d6d9f3003432e826398f6bea21d5aba11a17ee74358cb84a6e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtevent-0.10.2-2.el8.x86_64.rpm" + }, + "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libreport-filesystem-2.9.5-15.el8.x86_64.rpm" + }, + "sha256:babad6e897ab2e5b46386edaf34dbc77649bb3705df50190c022d4b6f54f15de": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/PackageKit-glib-1.1.12-6.el8.x86_64.rpm" + }, + "sha256:bad350fece3f69757d9345ad97acdf1ba72e8d09ed2162fbfe4cc128039594e1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/yum-utils-4.0.18-3.el8.noarch.rpm" + }, + "sha256:bafc2680bd298f0fac70854224ef03b7098d4c46ee35e270f6fd58d2e812ff1b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-schedutils-0.6-6.el8.x86_64.rpm" + }, + "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lz4-libs-1.8.3-2.el8.x86_64.rpm" + }, + "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gawk-4.2.1-2.el8.x86_64.rpm" + }, + "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-ng-0.7.9-5.el8.x86_64.rpm" + }, + "sha256:bce152ddd2f05f892e5ce483a7c12606ba7d2c42108402fc9609ada04048e6df": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/microcode_ctl-20201112-2.el8.x86_64.rpm" + }, + "sha256:bcf25aae89f7368b16346bc1ec92850175bcc2312bf7a5e74bc3c512bcd345b0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crontabs-1.11-17.20190603git.el8.noarch.rpm" + }, + "sha256:be628d396303d6547b9d7239897fbf4fad7447375cb5e898b394a458f420b550": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/slang-2.3.2-3.el8.x86_64.rpm" + }, + "sha256:bfa39369bd3c36833126b6f46b747de0736a66835d97196195c0810161c24549": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pydbus-0.6.0-5.el8.noarch.rpm" + }, + "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hardlink-1.3-6.el8.x86_64.rpm" + }, + "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-2.9-12.el8.x86_64.rpm" + }, + "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-build-libs-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/krb5-libs-1.18.2-8.el8.x86_64.rpm" + }, + "sha256:c357a350aa169402db3c898c7edcfee333e1d11a44f62bbeaba3fd3d2f31644d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libndp-1.7-3.el8.x86_64.rpm" + }, + "sha256:c39a53566ad66d6db9e101ca9a6db316843a1d1f6f5ac5f2286c6028638a8ab7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dmidecode-3.12.2-15.el8.x86_64.rpm" + }, + "sha256:c3b8c553b166491d3114793e198cd1aad95e494d177af8d0dc7180b8b841124d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodman-2.0.1-17.el8.x86_64.rpm" + }, + "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmetalink-0.1.3-7.el8.x86_64.rpm" + }, + "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-5.el8.x86_64.rpm" + }, + "sha256:c44dbbff4fe503f5f49b71ab17db7848c6c67fe19d9a4cc6cef59cc6dd15f1a6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:c4a5df7ec884bdcc929e73e066c7def89cfb8cf53306ffcf9f33a5c9e4ae84c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-plugins-core-4.0.18-3.el8.noarch.rpm" + }, + "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/diffutils-3.6-6.el8.x86_64.rpm" + }, + "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-1.el8.x86_64.rpm" + }, + "sha256:c5b5967a094ced90899052a82e2c245529b75ba3f46e0ce1a89cfc95edb935ea": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dateutil-2.6.1-6.el8.noarch.rpm" + }, + "sha256:c6f27b6e01d80e756408e3c1451e4af00e7d02da0aa24402644c0785118753fe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-39.2.0-6.el8.noarch.rpm" + }, + "sha256:c746d43bd63dd184b8c585dd7323e261567928e521e830720d4754fca76157e0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-ethtool-0.14-3.el8.x86_64.rpm" + }, + "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libutempter-1.1.6-14.el8.x86_64.rpm" + }, + "sha256:c8fc05dd997477fc80e2f3195e719ca2e569fc8997f05a64a13c52c8358e8239": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lsscsi-0.32-2.el8.x86_64.rpm" + }, + "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-modules-2.02-93.el8.noarch.rpm" + }, + "sha256:c9597eecf39a25497b2ac3c69bc9777eda05b9eaa6d5d29d004a81d71a45d0d7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libproxy-0.4.15-5.2.el8.x86_64.rpm" + }, + "sha256:c9df7c58da59500e1717e435c565e221daa344212db8e83eb33b6a9c8e9a67bb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/newt-0.52.20-11.el8.x86_64.rpm" + }, + "sha256:ca82090f18d47e454cc512e832bf3ec771edf65299e3c1d56d5df9fab0428869": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/rsyslog-8.1911.0-7.el8.x86_64.rpm" + }, + "sha256:cad76a2802c5f355b527df3cabde70bd58b31ec4b7de3b1ac15a429cda5b9b03": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/linux-firmware-20201218-102.git05789708.el8.noarch.rpm" + }, + "sha256:cad86777bcb265db0da766952ff63e8d33f0fd4f3b90b22d0a1da587a785db44": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-city-20180605-1.el8.noarch.rpm" + }, + "sha256:cb5072917ce75dbde8fe474fa872db85da5dbac59cc1eb4a9125e7b6280f254e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-1.2.2-1.el8.x86_64.rpm" + }, + "sha256:cbcade4487fbf372b487b9f82ed85e04ff037551c96c4b461abc3716338ff9c4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sudo-1.8.29-7.el8.x86_64.rpm" + }, + "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpng-1.6.34-5.el8.x86_64.rpm" + }, + "sha256:ce43ade7d1cb2519c12119621990ac8075c2f9e7577c739990ca949d6c42737a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-cairo-1.16.3-6.el8.x86_64.rpm" + }, + "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-2.26-4.el8.x86_64.rpm" + }, + "sha256:d1e8c7a00924d1a6dee44ade189025853a501d4f77c73f3bfc006aa907d97daf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-ply-3.9-9.el8.noarch.rpm" + }, + "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-trust-0.23.22-1.el8.x86_64.rpm" + }, + "sha256:d367fa4bad5f6494c390791b570c43ca15fc65db3aa14544ead87571364cd426": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/subscription-manager-cockpit-1.28.10-1.el8.noarch.rpm" + }, + "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-2.02-93.el8.x86_64.rpm" + }, + "sha256:d46e4c5067f182974d74691885cef31100c9cef59966c4ef399a284be3b91608": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/quota-4.04-12.el8.x86_64.rpm" + }, + "sha256:d5c283da0d2666742635754626263f6f78e273cd46d83d2d66ed43730a731685": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/checkpolicy-2.9-1.el8.x86_64.rpm" + }, + "sha256:d655ee126614010e72bac89b7ecaf38b515647181a22940cb774647442d28beb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efi-filesystem-3-3.el8.noarch.rpm" + }, + "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-0.9.4-2.el8.x86_64.rpm" + }, + "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmount-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:d967d6bbb33bf7a295a64807f81875c84e82a8ecc59b6c72fe955141b1660d39": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rootfiles-8.1-22.el8.noarch.rpm" + }, + "sha256:da77940ecadc9edb5d14aad51e4bf06664e5763fe6e46b20364732ec3aa2e08a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:dae52ddd215b506d1805b66873194df5043fd758d42960dee68f029eab329b42": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdaemon-0.14-15.el8.x86_64.rpm" + }, + "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-2.9.6-15.el8.x86_64.rpm" + }, + "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-libs-1.8.4-17.el8.x86_64.rpm" + }, + "sha256:dc4f0cc77cf4c89469cf0f9c88b52f2c8c2c35f4e6d714bbdae2083440483311": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cloud-init-20.3-10.el8.noarch.rpm" + }, + "sha256:dc835194ecfa6ebda81e0a764c953eff3422a61863e9a3e0dc74ea4cae7a4d94": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-linux-procfs-0.6.3-1.el8.noarch.rpm" + }, + "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ca-certificates-2020.2.41-80.0.el8_2.noarch.rpm" + }, + "sha256:dd80a8169e27959a27651616e998be8b49ffdca141744177cb42126ff0ae12b5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dejavu-fonts-common-2.35-7.el8.noarch.rpm" + }, + "sha256:ddbbf3a8191dbc1a9fcb67ccf9cea0d34dbe9bbb74780e1359933cd03ee24451": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pixman-0.38.4-1.el8.x86_64.rpm" + }, + "sha256:dea18976861575d40ffca814dee08a225376c7828a5afc9e5d0a383edd3d8907": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipcalc-0.2.4-4.el8.x86_64.rpm" + }, + "sha256:df417aae69f2ba5bd4324a14dcfd30dfbfefba440085bbf916c5ef19286cba20": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python36-3.6.8-2.module_el8.4.0+666+456f5f48.x86_64.rpm" + }, + "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bash-4.4.19-14.el8.x86_64.rpm" + }, + "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-utils-5.3.28-40.el8.x86_64.rpm" + }, + "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.182-3.el8.x86_64.rpm" + }, + "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxkbcommon-0.9.1-1.el8.x86_64.rpm" + }, + "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/brotli-1.0.6-3.el8.x86_64.rpm" + }, + "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libksba-1.3.5-7.el8.x86_64.rpm" + }, + "sha256:e76ffaf54db6ac36f0aa56c8013431c352c6187c8d674c6d468e25c573e31597": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpcbind-1.2.5-8.el8.x86_64.rpm" + }, + "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm" + }, + "sha256:e7ee4b6d6456cb7da0332f5a6fb8a7c47df977bcf616f12f0455413765367e89": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-pkla-compat-0.1-12.el8.x86_64.rpm" + }, + "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mpfr-3.1.6-1.el8.x86_64.rpm" + }, + "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtasn1-4.13-3.el8.x86_64.rpm" + }, + "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-4.4.2-5.el8.noarch.rpm" + }, + "sha256:ebeb05a4a9cdd5d060859eabac1349029c0120615c98fc939e26664c030655c1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-jwt-1.6.1-2.el8.noarch.rpm" + }, + "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tar-1.30-5.el8.x86_64.rpm" + }, + "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/which-2.21-12.el8.x86_64.rpm" + }, + "sha256:ee4413fda60078f82c3b209557f0fc730871bb2a24cc380db6d01b511322ac85": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cairo-gobject-1.15.12-3.el8.x86_64.rpm" + }, + "sha256:eec162a2757ee2ffbbee95e1dbcd33318119e5113e53af877ce9416529a19082": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/usermode-1.113-1.el8.x86_64.rpm" + }, + "sha256:ef2734017b25f7e9e1abf67315a7d1c97216642b5dfb979c19b1a3f74cff1e54": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_certmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-misc-2.0.4-10.el8.noarch.rpm" + }, + "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/memstrack-0.1.11-1.el8.x86_64.rpm" + }, + "sha256:f0346c485da9a7e8c8d93624f335cbb25790a7f37c6c03e43232517bb73bbacb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shim-x64-15-15.el8_2.x86_64.rpm" + }, + "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rdma-core-32.0-4.el8.x86_64.rpm" + }, + "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-extra-2.02-93.el8.x86_64.rpm" + }, + "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-15.el8.x86_64.rpm" + }, + "sha256:f56992135d789147285215cb062960fedcdf4b3296c62658fa430caa2c20165c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setools-4.3.0-2.el8.x86_64.rpm" + }, + "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/procps-ng-3.3.15-6.el8.x86_64.rpm" + }, + "sha256:f602f145a2deb352013006744cd47e2e1ff9a740ddbeb9412e50e801b5dbe02a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-1.5.10-6.el8.x86_64.rpm" + }, + "sha256:f60f24ba76f7f9d9f42421153d296a279fb616165a27cf2c71657a901a425bb1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-team-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:f6f7907ccf8faa83a93e6d48801970aa45181a3a3c05ad7102b540a07534e318": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/qemu-img-4.2.0-35.module_el8.4.0+547+a85d02ba.x86_64.rpm" + }, + "sha256:f7e6debd0279cb07f0c805d90b707c187bb55b9ee34643898eec800b79fa6b1b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ethtool-5.8-5.el8.x86_64.rpm" + }, + "sha256:f86fec6c6a844fbbfbf7c806d79dd7e72e4eef9c804472547a6d3ecf34cddca6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-glib-0.110-2.el8.x86_64.rpm" + }, + "sha256:f8bdaf5211c6fc72c8f60c7ddd59b8ca124ab26d2670ee6490a7fabb5177d919": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-8.0p1-5.el8.x86_64.rpm" + }, + "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsecret-0.18.6-1.el8.x86_64.rpm" + }, + "sha256:f94172554b8ceeab97b560d0b05c2e2df4b2e737471adce6eca82fd3209be254": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/less-530-1.el8.x86_64.rpm" + }, + "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-0.3.0-5.el8.x86_64.rpm" + }, + "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre2-10.32-2.el8.x86_64.rpm" + }, + "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-daemon-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:fda078d8edd4e0902246dd3121efb6c57cb8231dbb975380f9249c64163f0d88": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lshw-B.02.19.2-5.el8.x86_64.rpm" + }, + "sha256:fe0767b57c921cd1df4b53f8d73936cb8e2d870cb1ed1d8c22d33b6e04e947c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cockpit-bridge-236-1.el8.x86_64.rpm" + }, + "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-8.30-8.el8.x86_64.rpm" + }, + "sha256:fe944d9dd89d550d2aa44d33cfeb11c803b074bfcda0dbbad486c392bf1cc9d0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-common-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/readline-7.0-10.el8.x86_64.rpm" + }, + "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-pam-239-44.el8.x86_64.rpm" + }, + "sha256:ff3846c5910773af5466b5c3640ffd3c867c2bcbcccc11a7c11eb4438d9e3ae2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/quota-nls-4.04-12.el8.noarch.rpm" + }, + "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-lib-0.3.15-1.el8.x86_64.rpm" + } + } + } + }, + "pipeline": { + "build": { + "pipeline": { + "stages": [ + { + "name": "org.osbuild.rpm", + "options": { + "gpgkeys": [ + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n" + ], + "packages": [ + { + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "checksum": "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af", + "check_gpg": true + }, + { + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "checksum": "sha256:2c63399bee449fb6e921671a9bbf3356fda73f890b578820f7d926202e98a479", + "check_gpg": true + }, + { + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "checksum": "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178", + "check_gpg": true + }, + { + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "checksum": "sha256:c6f27b6e01d80e756408e3c1451e4af00e7d02da0aa24402644c0785118753fe", + "check_gpg": true + }, + { + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "checksum": "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393", + "check_gpg": true + }, + { + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "checksum": "sha256:a2418e8e12144d4e84965298e7bbefedc876c0d0d93771afb9b5c6c2eb139dc0", + "check_gpg": true + }, + { + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "checksum": "sha256:df417aae69f2ba5bd4324a14dcfd30dfbfefba440085bbf916c5ef19286cba20", + "check_gpg": true + }, + { + "checksum": "sha256:f6f7907ccf8faa83a93e6d48801970aa45181a3a3c05ad7102b540a07534e318", + "check_gpg": true + }, + { + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ] + } + }, + { + "name": "org.osbuild.selinux", + "options": { + "file_contexts": "etc/selinux/targeted/contexts/files/file_contexts" + } + } + ] + }, + "runner": "org.osbuild.centos8" + }, + "stages": [ + { + "name": "org.osbuild.rpm", + "options": { + "gpgkeys": [ + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n" + ], + "packages": [ + { + "checksum": "sha256:1d130b0daf86899c3987d59567303ce7ae44c3273f2d8d0f0625bef7e6bad16d", + "check_gpg": true + }, + { + "checksum": "sha256:41d9c9f8e17c83f73e51e90f02e08927bb9c836d033815c6cdddc6da44e321f0", + "check_gpg": true + }, + { + "checksum": "sha256:f60f24ba76f7f9d9f42421153d296a279fb616165a27cf2c71657a901a425bb1", + "check_gpg": true + }, + { + "checksum": "sha256:657db08f58b6776f48fda17d2b734a26918b431253f9e4eba9fd5a46d9f89aef", + "check_gpg": true + }, + { + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "checksum": "sha256:b0149d85f0172e98866ff2483660af2cf6c6fa0c8f9cab2c51cc2af479c9e319", + "check_gpg": true + }, + { + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "checksum": "sha256:cb5072917ce75dbde8fe474fa872db85da5dbac59cc1eb4a9125e7b6280f254e", + "check_gpg": true + }, + { + "checksum": "sha256:a217b0fbe9757a0225b66d16c1668cdf5cb2aa69c68b89e79783abd507f2e7bf", + "check_gpg": true + }, + { + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "checksum": "sha256:2d4cf3bd8b8046adfa869fbb5b472294469457f6445db36abcc227959be9adeb", + "check_gpg": true + }, + { + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "checksum": "sha256:78596f457c3d737a97a4edfe9a03a01f593606379c281701ab7f7eba13ecaf18", + "check_gpg": true + }, + { + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "checksum": "sha256:9d160cdfba107ddc0613e169311bf57077c04e71a052a57704f3bdb64729d565", + "check_gpg": true + }, + { + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "checksum": "sha256:d5c283da0d2666742635754626263f6f78e273cd46d83d2d66ed43730a731685", + "check_gpg": true + }, + { + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "checksum": "sha256:5f3d3d3b27b7df75738d1ee31112c60d39c54b8d7f92b6900606187f6cffce1d", + "check_gpg": true + }, + { + "checksum": "sha256:fe0767b57c921cd1df4b53f8d73936cb8e2d870cb1ed1d8c22d33b6e04e947c7", + "check_gpg": true + }, + { + "checksum": "sha256:7e73df2868a12881f6b98fe025485e9e6345978511e2866132503e05b1ccefda", + "check_gpg": true + }, + { + "checksum": "sha256:a205b1ca2ee6452bec8a2a6a5817f26ed60a5490b99b333c0b3baf8171ef0c71", + "check_gpg": true + }, + { + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "checksum": "sha256:63a6b7765828081cc88b36d10c68621acbebf02a7c2e7d7f1a1217c8742ea6ae", + "check_gpg": true + }, + { + "checksum": "sha256:71fcbbec3aa152bc1427cb4d597375b008438f6259b20cfcb68fff21eef80f91", + "check_gpg": true + }, + { + "checksum": "sha256:bcf25aae89f7368b16346bc1ec92850175bcc2312bf7a5e74bc3c512bcd345b0", + "check_gpg": true + }, + { + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "checksum": "sha256:f86fec6c6a844fbbfbf7c806d79dd7e72e4eef9c804472547a6d3ecf34cddca6", + "check_gpg": true + }, + { + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "checksum": "sha256:69fc3075751693fe23c0658d1e97c0e14366d8833a78ab75b951596b07345827", + "check_gpg": true + }, + { + "checksum": "sha256:dd80a8169e27959a27651616e998be8b49ffdca141744177cb42126ff0ae12b5", + "check_gpg": true + }, + { + "checksum": "sha256:a8a27e1ffbb92356d6376334687b9eaa0cb5f2eece2670128f3a01e391e9f3bb", + "check_gpg": true + }, + { + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "checksum": "sha256:084c55bef75a2ce2ab67aa4eeb6726ca59ea6d7c2b23bc6e4084f11aac7e17f8", + "check_gpg": true + }, + { + "checksum": "sha256:7ec48db9e1e9896f29a16cbea53cdeecdd7dd2bc278c06721ebca2e71e9dcd6d", + "check_gpg": true + }, + { + "checksum": "sha256:436e93b4c072f8b6f90f41a037d017406be10c18efafc8c634f6da59bbac1105", + "check_gpg": true + }, + { + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "checksum": "sha256:b2cd2dc5cf9c1c118053e7e650c6d910b1d37e810a38d90de27d80a04b702e39", + "check_gpg": true + }, + { + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "checksum": "sha256:92d0b9ec103da224c892da489441a7beec1df28e2a0962b56a949a1e66372bf6", + "check_gpg": true + }, + { + "checksum": "sha256:c4a5df7ec884bdcc929e73e066c7def89cfb8cf53306ffcf9f33a5c9e4ae84c7", + "check_gpg": true + }, + { + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "checksum": "sha256:760141c74870a93505dbba2174034287b6a97b9bb2b12c5ca2b7af056773b45b", + "check_gpg": true + }, + { + "checksum": "sha256:4a28d9fa9785d7e8515deaf5e1a381a553c37b02a81a20ddd4fa202b33413ac9", + "check_gpg": true + }, + { + "checksum": "sha256:16b34582f757aebb9bc7b0a0475458cbb186238b5b528ef8fdb099cb739ba383", + "check_gpg": true + }, + { + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "checksum": "sha256:d655ee126614010e72bac89b7ecaf38b515647181a22940cb774647442d28beb", + "check_gpg": true + }, + { + "checksum": "sha256:8842ae7b6585715e5daeb82bebccd993a81a3e0697ea105735b7a920feb1a7ed", + "check_gpg": true + }, + { + "checksum": "sha256:48bfe66d6f07baf1974355e8a3ebbc44f2d9812b823ddfff1c15f35635a8dc4e", + "check_gpg": true + }, + { + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "checksum": "sha256:f7e6debd0279cb07f0c805d90b707c187bb55b9ee34643898eec800b79fa6b1b", + "check_gpg": true + }, + { + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "checksum": "sha256:960f841e4a286b6b9511d47e6736753e4d1f0fd05395a078bacccfb1c8b164aa", + "check_gpg": true + }, + { + "checksum": "sha256:700b9050aa490b5eca6d1f8630cbebceb122fce11c370689b5ccb37f5a43ee2f", + "check_gpg": true + }, + { + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "checksum": "sha256:94cb8dceb47a5b01e3c0542ea3b48601d720325da28e6e6d89ae529e4fddcd97", + "check_gpg": true + }, + { + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "checksum": "sha256:a7f9ae54f45ca4fcecf78d9885d12a789f7325119794178bfa2814c6185a953d", + "check_gpg": true + }, + { + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "checksum": "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af", + "check_gpg": true + }, + { + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "checksum": "sha256:7e2804a4494d4179ed50c0c99da1e30c3a6abf8db889c1412b458943cff0e3e5", + "check_gpg": true + }, + { + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "checksum": "sha256:b00855013100d3796e9ed6d82b1ab2d4dc7f4a3a3fa2e186f6de8523577974a0", + "check_gpg": true + }, + { + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "checksum": "sha256:79277d872ae6035009a1a40e914ec09bca21aefcac9d73dee65880c86387f3c9", + "check_gpg": true + }, + { + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "checksum": "sha256:759d9669521b99f19f60f8067e64b4aa42942e22ca62b7f98503f6a932125783", + "check_gpg": true + }, + { + "checksum": "sha256:881bdb9aa79de1933dc553fcf0b6597897b60e0e4b73a369572e4d9460fab439", + "check_gpg": true + }, + { + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "checksum": "sha256:3c6650fd6e32fdc24b8cf1f7a85ae8232661b47bda7019e49fd0eb474683ff23", + "check_gpg": true + }, + { + "checksum": "sha256:7a7963e2052bfb45b8569f64619dc5cb92fe8aeb78c754b7cf948b9784646785", + "check_gpg": true + }, + { + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "checksum": "sha256:7fa8fbc576f7d54c388fa39fc3ed86bacb7964cac4544c48b3ffabcdcdc27b61", + "check_gpg": true + }, + { + "checksum": "sha256:dea18976861575d40ffca814dee08a225376c7828a5afc9e5d0a383edd3d8907", + "check_gpg": true + }, + { + "checksum": "sha256:a456039834ccc5432949120f1d80b18329b552cf44d1b59ea1b60d2192e7bc5c", + "check_gpg": true + }, + { + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "checksum": "sha256:74b842ba3352d7c4ada7e991aeadf8749f058a4d00ccc6f79f1c82a281497cb7", + "check_gpg": true + }, + { + "checksum": "sha256:3acd2c8b6ea534811308b3138859b5fa150b89604bb60f16b0650747039d696a", + "check_gpg": true + }, + { + "checksum": "sha256:a06e1d34df03aaf429d290d5c281356fefe0ad510c229189405b88b3c0f40374", + "check_gpg": true + }, + { + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "checksum": "sha256:98a6386df94fc9595365c3ecbc630708420fa68d1774614a723dec4a55e84b9c", + "check_gpg": true + }, + { + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "checksum": "sha256:c44dbbff4fe503f5f49b71ab17db7848c6c67fe19d9a4cc6cef59cc6dd15f1a6", + "check_gpg": true + }, + { + "checksum": "sha256:aa938dc6f13d0d57ca811b8c299b1017723fa419997b87754f74db770430c2d9", + "check_gpg": true + }, + { + "checksum": "sha256:da77940ecadc9edb5d14aad51e4bf06664e5763fe6e46b20364732ec3aa2e08a", + "check_gpg": true + }, + { + "checksum": "sha256:5f45a2ff1a9c9f3d4fcae463c1ca70b1a16caccc59816ce391f064c9d8b9d8ae", + "check_gpg": true + }, + { + "checksum": "sha256:ab1be3dcea74c7a7fac49f9a1cad4113fded2d3edabb61b29ed8489a737033fe", + "check_gpg": true + }, + { + "checksum": "sha256:4280042747c9027c3252d360fa33d63490aa518858849115b20162a097a37146", + "check_gpg": true + }, + { + "checksum": "sha256:f602f145a2deb352013006744cd47e2e1ff9a740ddbeb9412e50e801b5dbe02a", + "check_gpg": true + }, + { + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "checksum": "sha256:f94172554b8ceeab97b560d0b05c2e2df4b2e737471adce6eca82fd3209be254", + "check_gpg": true + }, + { + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "checksum": "sha256:230820d3f9dbaa9dcd013836f4ba56d0514946bc05cac7727ef2aaff3a3dde26", + "check_gpg": true + }, + { + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "checksum": "sha256:5452b96e4b57c275dd41e48d55af1ca4f77ccfb3ae403796e599a039d7382b91", + "check_gpg": true + }, + { + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "checksum": "sha256:708a8fd75f7c6987d66e2d62de664b5a84c6f75fd4e5230e244681897b15a25d", + "check_gpg": true + }, + { + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "checksum": "sha256:dae52ddd215b506d1805b66873194df5043fd758d42960dee68f029eab329b42", + "check_gpg": true + }, + { + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "checksum": "sha256:6327624b7b0d726a3c95f2245619efb1df8e70023fadcc8158afed39f57859e7", + "check_gpg": true + }, + { + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "checksum": "sha256:08b76b0af07db4d3b27776a96bb7d0dc0f02b7219569676ac79036190d731d5b", + "check_gpg": true + }, + { + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "checksum": "sha256:b06fa62d0a585a7bc3b9d3341923736b3ee4b6cc6d7ca83bebcb97225ca86ac9", + "check_gpg": true + }, + { + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "checksum": "sha256:1b5187e9b694e439a059be58d8de5317f04278371d1195bf000b001ba8699197", + "check_gpg": true + }, + { + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "checksum": "sha256:30fab73ee155f03dbbd99c1e30fe59dfba4ae8fdb2e7213451ccc36d6918bfcc", + "check_gpg": true + }, + { + "checksum": "sha256:c3b8c553b166491d3114793e198cd1aad95e494d177af8d0dc7180b8b841124d", + "check_gpg": true + }, + { + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "checksum": "sha256:c357a350aa169402db3c898c7edcfee333e1d11a44f62bbeaba3fd3d2f31644d", + "check_gpg": true + }, + { + "checksum": "sha256:8852282172440cd618c695356449cbc035be4091b2a0833c785c8e42cc1df0e6", + "check_gpg": true + }, + { + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "checksum": "sha256:2e8d4ee76fa8678b0e4d6c0297b16f96e0116201bf96b36e8924b1b080abcddd", + "check_gpg": true + }, + { + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "checksum": "sha256:185f36b3af9367e6142233af358df22f23ee623697bc6a45c47091013707872e", + "check_gpg": true + }, + { + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "checksum": "sha256:9eb9c1a67c5be04487cc133bdb8498eaf260e4d930a0143d2e1aa772e3d6cf64", + "check_gpg": true + }, + { + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "checksum": "sha256:c9597eecf39a25497b2ac3c69bc9777eda05b9eaa6d5d29d004a81d71a45d0d7", + "check_gpg": true + }, + { + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "checksum": "sha256:6b740563ba5858573ff3c2d2a827aeaf6e7166178e36066755d2cde4cf8a016f", + "check_gpg": true + }, + { + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "checksum": "sha256:5deb66cc8e9094931cf74002186385c1ebdc022936cd8f10ec4c4675a99b9b2a", + "check_gpg": true + }, + { + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "checksum": "sha256:1230ddb5d92fe538a0526e3a9f05563a111ae4ff1978fc8e18de889974b5b46c", + "check_gpg": true + }, + { + "checksum": "sha256:ef2734017b25f7e9e1abf67315a7d1c97216642b5dfb979c19b1a3f74cff1e54", + "check_gpg": true + }, + { + "checksum": "sha256:377ad20c1681518bff1f40884589bddc4a692506384c7676f072ddf86ae429f9", + "check_gpg": true + }, + { + "checksum": "sha256:2c6dd4f21d9c4bde29f693d32e44f0d1c5dc73d78d013767df531d69bbfc6ed8", + "check_gpg": true + }, + { + "checksum": "sha256:370b74a811249b8f0bdfcd34137507f058a85196775e9d0d2bb244c100d194ae", + "check_gpg": true + }, + { + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "checksum": "sha256:9b121a03314f1f0822a58059efba09944df192c35e22267f39137f70a28cda1c", + "check_gpg": true + }, + { + "checksum": "sha256:53ae3ecd59ec61852cabbd039c748ed63ceb6a88da98587d4c33323ba4095154", + "check_gpg": true + }, + { + "checksum": "sha256:918518368513d162d772dfc5d16536ad2799276bcba2f47514a1c7098de2b43f", + "check_gpg": true + }, + { + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "checksum": "sha256:a5228fc876cffc7dc79769ada5653cb9bfb80d469fb3c9f0acc14a1a0d15782d", + "check_gpg": true + }, + { + "checksum": "sha256:0aaaaa29cc1bb4d358142db6eb7d12df9252a8166bf61956203878eed210785c", + "check_gpg": true + }, + { + "checksum": "sha256:b8e4cfecbbe7d2d6d9f3003432e826398f6bea21d5aba11a17ee74358cb84a6e", + "check_gpg": true + }, + { + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "checksum": "sha256:70b5e4e580da72969ad3bb144c15293910b7d679e195c118cee60d8320f01851", + "check_gpg": true + }, + { + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "checksum": "sha256:538899f9a39e085ef14bd34f84327c12b862981df1428bb1353ef4082ddd3a4c", + "check_gpg": true + }, + { + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "checksum": "sha256:cad76a2802c5f355b527df3cabde70bd58b31ec4b7de3b1ac15a429cda5b9b03", + "check_gpg": true + }, + { + "checksum": "sha256:0064a3aeff41fb7345c061956c35e4b9d0b8802954e717491fb6eb51028d22fd", + "check_gpg": true + }, + { + "checksum": "sha256:3cd092e6e03efb4bb49b91dedd52b43f891092d04a2ff040b9f2197ec2082511", + "check_gpg": true + }, + { + "checksum": "sha256:fda078d8edd4e0902246dd3121efb6c57cb8231dbb975380f9249c64163f0d88", + "check_gpg": true + }, + { + "checksum": "sha256:c8fc05dd997477fc80e2f3195e719ca2e569fc8997f05a64a13c52c8358e8239", + "check_gpg": true + }, + { + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "checksum": "sha256:5c68635cb03533a38d4a42f6547c21a1d5f9952351bb01f3cf865d2621a6e634", + "check_gpg": true + }, + { + "checksum": "sha256:a0b6a8d5530f5003f5c8d56211246cd1130a5b4dc1396dc50da70ce0e128b02c", + "check_gpg": true + }, + { + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "checksum": "sha256:bce152ddd2f05f892e5ce483a7c12606ba7d2c42108402fc9609ada04048e6df", + "check_gpg": true + }, + { + "checksum": "sha256:1c4b186665558747023a60d0d662d3780a1bc49e578062f4b70100c71ab2220c", + "check_gpg": true + }, + { + "checksum": "sha256:03b50a4ea5cf5655c67e2358fabb6e563eec4e7929e7fc6c4e92c92694f60fa0", + "check_gpg": true + }, + { + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "checksum": "sha256:c9df7c58da59500e1717e435c565e221daa344212db8e83eb33b6a9c8e9a67bb", + "check_gpg": true + }, + { + "checksum": "sha256:58026205b6bd63438307d6afc0b0fb15d1d2d09736cbd0f8b245fadffec81003", + "check_gpg": true + }, + { + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "checksum": "sha256:5e24dd39ae59ef7b7a386f28509cc80d8fabb23f0932e52ea365cf064ff76c59", + "check_gpg": true + }, + { + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "checksum": "sha256:f8bdaf5211c6fc72c8f60c7ddd59b8ca124ab26d2670ee6490a7fabb5177d919", + "check_gpg": true + }, + { + "checksum": "sha256:a9ec13abf63c69913acc1ac7070ab315c8b5a58c6006c3dfc5b27662f7f22260", + "check_gpg": true + }, + { + "checksum": "sha256:173a812d859c70f8db7b014d507c5cacb76c62ab5480c44be217f880465f42c7", + "check_gpg": true + }, + { + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "checksum": "sha256:4c5c7f3773c634c054b0a5fc1b40d0a8448b44bb5aff410bfa88facf9e2059ff", + "check_gpg": true + }, + { + "checksum": "sha256:9c849b1d4fd605ae749fd9d090715b6034520af871c23729cd4003f22e0990de", + "check_gpg": true + }, + { + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "checksum": "sha256:44c8d429eda78196b566c95603bdbcc23483c1dab3dd6e0efae29aa6d848a431", + "check_gpg": true + }, + { + "checksum": "sha256:09128c1b70cb8ea1a9bfbc6f3314dd5a8ba0c1a1886a82cd0fbe6845d48215dc", + "check_gpg": true + }, + { + "checksum": "sha256:8d6742dce47f8ed65e222864872e919f30c678f5df1e99c134fba8a0fc7f454d", + "check_gpg": true + }, + { + "checksum": "sha256:e7ee4b6d6456cb7da0332f5a6fb8a7c47df977bcf616f12f0455413765367e89", + "check_gpg": true + }, + { + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "checksum": "sha256:776a182ecaab9f86c7e869db2eb2deea1f291caee701cddbd752da8cd3c57458", + "check_gpg": true + }, + { + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "checksum": "sha256:9d433d8c058e59c891c0852b95b3b87795ea30a85889c77ba0b12f965517d626", + "check_gpg": true + }, + { + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "checksum": "sha256:addf80c52d794aed47874eb9d5ddbbaa90cb248fda1634d793054a41da0d92d7", + "check_gpg": true + }, + { + "checksum": "sha256:07ed1209e898552e6aeac0e6d148271d562c576f7d903cb7a99a697643068f58", + "check_gpg": true + }, + { + "checksum": "sha256:176ffcb2cf0fdcbdd2d8119cbd98eef60a30fdb0fb065a9382d2c95e90c79652", + "check_gpg": true + }, + { + "checksum": "sha256:1bd969e0521820374122f5132e5998d9bd2ab185be66565a7266096297419c8e", + "check_gpg": true + }, + { + "checksum": "sha256:2ebe28be2e0a413af31a0f49b6a2774670067cdbe48e723040b19922ae205d6b", + "check_gpg": true + }, + { + "checksum": "sha256:c5b5967a094ced90899052a82e2c245529b75ba3f46e0ce1a89cfc95edb935ea", + "check_gpg": true + }, + { + "checksum": "sha256:066f254f9ac7712b44214816de907a87eb8dfd0d2ea9570a7513db9a6617ba26", + "check_gpg": true + }, + { + "checksum": "sha256:0e9a8a0f823bf0ef948862f0ccb62353460bd07931e756c98f23908c1c526578", + "check_gpg": true + }, + { + "checksum": "sha256:c39a53566ad66d6db9e101ca9a6db316843a1d1f6f5ac5f2286c6028638a8ab7", + "check_gpg": true + }, + { + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "checksum": "sha256:941a9068b8fa524ecac58d37f941b95fbdcd9e38bd87c7f9d1330c5925a52a20", + "check_gpg": true + }, + { + "checksum": "sha256:c746d43bd63dd184b8c585dd7323e261567928e521e830720d4754fca76157e0", + "check_gpg": true + }, + { + "checksum": "sha256:15dc15a5be210707852f051f4d09949c063a7283edc7d4ca3d4289eedcc0b509", + "check_gpg": true + }, + { + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "checksum": "sha256:78c43d8a15ca018de1803e4baac5819e1baab1963fd31f1e44e54e8a573acbfc", + "check_gpg": true + }, + { + "checksum": "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178", + "check_gpg": true + }, + { + "checksum": "sha256:109d6db30e5515601b00954b2fd8750c421730a18afc12e1fa7781e24e5b0863", + "check_gpg": true + }, + { + "checksum": "sha256:ebeb05a4a9cdd5d060859eabac1349029c0120615c98fc939e26664c030655c1", + "check_gpg": true + }, + { + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "checksum": "sha256:acec114d3d071379d70634e0c9c097cce38aa418500d010a8057b3fa1f69b27e", + "check_gpg": true + }, + { + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "checksum": "sha256:59ba5bf69953a5a2e902b0f08b7187b66d84968852d46a3579a059477547d1a0", + "check_gpg": true + }, + { + "checksum": "sha256:451d0cb6e2284578e3279b4cbb5ec98e9d98a687556c6b424adf8f1282d4ef58", + "check_gpg": true + }, + { + "checksum": "sha256:78ade36bcaa352e60732f94d0f668ea62a34e88aa2cadd4cb0d1ec0f21392525", + "check_gpg": true + }, + { + "checksum": "sha256:dc835194ecfa6ebda81e0a764c953eff3422a61863e9a3e0dc74ea4cae7a4d94", + "check_gpg": true + }, + { + "checksum": "sha256:20874a9d40b12125c9e5b97fe4ccda3f94acbc03da1dec7299123901f5b56631", + "check_gpg": true + }, + { + "checksum": "sha256:6aa1e29a4d805fc36c3196788fe78cb4552e2ebec8b3d0f8d32974e6a97025f2", + "check_gpg": true + }, + { + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "checksum": "sha256:d1e8c7a00924d1a6dee44ade189025853a501d4f77c73f3bfc006aa907d97daf", + "check_gpg": true + }, + { + "checksum": "sha256:142d4fe6236cdeac3f967517085d99649215d75026fbe00746e0c5214d7d20df", + "check_gpg": true + }, + { + "checksum": "sha256:8891a9a4707611c13a5693b195201dd940254ffdb03cf5742952329282bb8cb7", + "check_gpg": true + }, + { + "checksum": "sha256:7f506879c64e0bb4d98782d025f46fb9a07517487ae4cbebbb3985a98f4e2154", + "check_gpg": true + }, + { + "checksum": "sha256:aa0007192287faeaecc72d9fa48efdb3108c764d450dc8fea65474476da32c45", + "check_gpg": true + }, + { + "checksum": "sha256:525393e4d658e395c6280bd2ff4afe54999796c4722986325297ba4bfade3ea5", + "check_gpg": true + }, + { + "checksum": "sha256:003ee19ec5b88de212c3246bdfdb3e97a9910a25a219fd7cf5030b7bc666fea9", + "check_gpg": true + }, + { + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "checksum": "sha256:bafc2680bd298f0fac70854224ef03b7098d4c46ee35e270f6fd58d2e812ff1b", + "check_gpg": true + }, + { + "checksum": "sha256:f56992135d789147285215cb062960fedcdf4b3296c62658fa430caa2c20165c", + "check_gpg": true + }, + { + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "checksum": "sha256:233e5f78027b684e5aaac1395cc574aea3039059bf86eb4494422bc74216a396", + "check_gpg": true + }, + { + "checksum": "sha256:563b3741d26b6af963fdb7b0634e0791445a707d0b6093ac71c3224299241639", + "check_gpg": true + }, + { + "checksum": "sha256:1cef673b1e520903e3b1c17d0d284d205a6f949908c351618dae892f40fb011b", + "check_gpg": true + }, + { + "checksum": "sha256:017e78c5e23f98d6ee299255fc7be5381dba63d169e3f5dcb1de9d21b5d30ba5", + "check_gpg": true + }, + { + "checksum": "sha256:aa1835fd302a37b84ac256db5dd0de09bd9883a5a07775aedb491faf46b18ee0", + "check_gpg": true + }, + { + "checksum": "sha256:d46e4c5067f182974d74691885cef31100c9cef59966c4ef399a284be3b91608", + "check_gpg": true + }, + { + "checksum": "sha256:ff3846c5910773af5466b5c3640ffd3c867c2bcbcccc11a7c11eb4438d9e3ae2", + "check_gpg": true + }, + { + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "checksum": "sha256:b028aa2b393a124c5bf8665f9111caa9e4c2aa757d880b100c1616c207848a3f", + "check_gpg": true + }, + { + "checksum": "sha256:d967d6bbb33bf7a295a64807f81875c84e82a8ecc59b6c72fe955141b1660d39", + "check_gpg": true + }, + { + "checksum": "sha256:e76ffaf54db6ac36f0aa56c8013431c352c6187c8d674c6d468e25c573e31597", + "check_gpg": true + }, + { + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "checksum": "sha256:7443e0df4d55a40a0ba3cec4cd4da620200a255605e31a137bee001cb4b43af3", + "check_gpg": true + }, + { + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "checksum": "sha256:a1d1bac6c4710e0a1a6e8a507b06a630dda6687f12642be0847768c14ce7271e", + "check_gpg": true + }, + { + "checksum": "sha256:774d214a379c0b729d7e989f9d5094fdfda7df68c1e792ba9200542032f04c91", + "check_gpg": true + }, + { + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "checksum": "sha256:f0346c485da9a7e8c8d93624f335cbb25790a7f37c6c03e43232517bb73bbacb", + "check_gpg": true + }, + { + "checksum": "sha256:be628d396303d6547b9d7239897fbf4fad7447375cb5e898b394a458f420b550", + "check_gpg": true + }, + { + "checksum": "sha256:839c62cd7fc7e152decded6f28c80b5f7b8f34a5e319057867b38b26512cee67", + "check_gpg": true + }, + { + "checksum": "sha256:8846acb4df4306e2274bd8a496e0c47ee1fea1d211f6d3369e261ec863fddcb1", + "check_gpg": true + }, + { + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "checksum": "sha256:a0c8f83cef355dd98d7750e3d8eb3e9f3e9f8f5e9a3ee441cb4bc4014c647e31", + "check_gpg": true + }, + { + "checksum": "sha256:b1871d8ac1abaf5e809448c5f37e32487f177aee3080d9033efb4b160f755aba", + "check_gpg": true + }, + { + "checksum": "sha256:fe944d9dd89d550d2aa44d33cfeb11c803b074bfcda0dbbad486c392bf1cc9d0", + "check_gpg": true + }, + { + "checksum": "sha256:6cd7444c22d56201f61fed5fd741b44cfaae18d95b811d25c5f0ffe2f8e55a8f", + "check_gpg": true + }, + { + "checksum": "sha256:7115a12fad224b469419e19ee5c0d38322f467fe7a1c441c1b0239b197baac2a", + "check_gpg": true + }, + { + "checksum": "sha256:8cad468b07c285444728b39817df72c77f7a96e06367e63f09ac979d3349d386", + "check_gpg": true + }, + { + "checksum": "sha256:d367fa4bad5f6494c390791b570c43ca15fc65db3aa14544ead87571364cd426", + "check_gpg": true + }, + { + "checksum": "sha256:0cb3dccf2c3bd45c773dd3fbf14bd9d7e7a40fe33edd36077738066af3c95517", + "check_gpg": true + }, + { + "checksum": "sha256:cbcade4487fbf372b487b9f82ed85e04ff037551c96c4b461abc3716338ff9c4", + "check_gpg": true + }, + { + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "checksum": "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393", + "check_gpg": true + }, + { + "checksum": "sha256:9664aba8dfd6bd6fda669fcf8f6ff04914305a6373b09d8b675322c7337b9c36", + "check_gpg": true + }, + { + "checksum": "sha256:6fc3208be9c78bf1f843f9f7d4d3f04096f116dc056285142235bf76472ba382", + "check_gpg": true + }, + { + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "checksum": "sha256:b3bc3f1c9e8028a177599f1ed9cb6c31d2d6e75111e34623d25e736d3ddcf8fd", + "check_gpg": true + }, + { + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "checksum": "sha256:eec162a2757ee2ffbbee95e1dbcd33318119e5113e53af877ce9416529a19082", + "check_gpg": true + }, + { + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "checksum": "sha256:3efd6a2548813167fe37718546bc768a5aa8ba59aa80edcecd8ba408bec329b0", + "check_gpg": true + }, + { + "checksum": "sha256:4c02e3e1808f0189269b242242468a364007a8f12c6e38afc24b599b2848b0fa", + "check_gpg": true + }, + { + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "checksum": "sha256:4302361b12eefd5574f57bf0c49c0e5bdc738eddda33634af8b35adfb53a52a1", + "check_gpg": true + }, + { + "checksum": "sha256:bad350fece3f69757d9345ad97acdf1ba72e8d09ed2162fbfe4cc128039594e1", + "check_gpg": true + }, + { + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "checksum": "sha256:b7dbc8efe4e3de5b47742959530182be455a17a7fdc3cd289d15316ae8f54223", + "check_gpg": true + }, + { + "checksum": "sha256:babad6e897ab2e5b46386edaf34dbc77649bb3705df50190c022d4b6f54f15de", + "check_gpg": true + }, + { + "checksum": "sha256:11838afbfab4da7d5fa6e01046f76cce0b0a0c174a87c522eba440fce16e316f", + "check_gpg": true + }, + { + "checksum": "sha256:8cb26212a1235f514b9529868ca86e119ad269755ba4c5e5cf1832523a4efc14", + "check_gpg": true + }, + { + "checksum": "sha256:2fcd7a063cab2e103fd4fdf8f4c63d09b9f3d60759c3b0982c75ed9a9e57bdf8", + "check_gpg": true + }, + { + "checksum": "sha256:ee4413fda60078f82c3b209557f0fc730871bb2a24cc380db6d01b511322ac85", + "check_gpg": true + }, + { + "checksum": "sha256:16d05b70027f6e2879e84887c028043617b899fe3966c36e54c0a7078fbcb411", + "check_gpg": true + }, + { + "checksum": "sha256:dc4f0cc77cf4c89469cf0f9c88b52f2c8c2c35f4e6d714bbdae2083440483311", + "check_gpg": true + }, + { + "checksum": "sha256:7800dfd0d4769a898d11db330fdb5b19614533628a45fe91cce406d6cd1f0c71", + "check_gpg": true + }, + { + "checksum": "sha256:cad86777bcb265db0da766952ff63e8d33f0fd4f3b90b22d0a1da587a785db44", + "check_gpg": true + }, + { + "checksum": "sha256:67419432fe7d373f8e5ddaa7b0dd1c25389608bf2f4ee76dbabcc2d96eb8c9d0", + "check_gpg": true + }, + { + "checksum": "sha256:41a5551a1bdf84359c3f86f08bb1e5c13c0bc1e057ae5d9f0cdf9930afeb37a1", + "check_gpg": true + }, + { + "checksum": "sha256:5f445b2b2a4bdeabd555e25dfa10119d9f4e4e500d1c4492219dd8647f119ce2", + "check_gpg": true + }, + { + "checksum": "sha256:49d972c660b9238dd1d58ab5952285b77e440820bf4563cce2b5ecd2f6ceba78", + "check_gpg": true + }, + { + "checksum": "sha256:9869db60ee2b6d8f2115937857fb0586802720a75e043baf21514011a9fa79aa", + "check_gpg": true + }, + { + "checksum": "sha256:11ac209220f3a53a762adebb4eeb43190e02ef7cdad2c54bcb474b206f7eb6f2", + "check_gpg": true + }, + { + "checksum": "sha256:7bc2e2a25b04b52a4ec5de2858e75eb07f16495d4de5f7ce926777130302cfe3", + "check_gpg": true + }, + { + "checksum": "sha256:105beb1a237e66802e64e620f79b357dfc8f3bb8952ac2f293548f1d68ca40b1", + "check_gpg": true + }, + { + "checksum": "sha256:19ca7ab9cb2e39ec452ed1424f828ec464266094e31903301680d5a5d0e2ac2c", + "check_gpg": true + }, + { + "checksum": "sha256:0221e6e3671c2bd130e9519a7b352404b7e510584b4707d38e1a733e19c7f74f", + "check_gpg": true + }, + { + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "checksum": "sha256:2fbf7e0ba8e8249b45392720a851905a42de547e1b760d461a799e2d1273cd97", + "check_gpg": true + }, + { + "checksum": "sha256:ad2fb5876a4be399a0bcbb1b45f796229186b557d100c5f8f9017955dfd20065", + "check_gpg": true + }, + { + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "checksum": "sha256:ddbbf3a8191dbc1a9fcb67ccf9cea0d34dbe9bbb74780e1359933cd03ee24451", + "check_gpg": true + }, + { + "checksum": "sha256:9dbf3ceb7de5a727f1a36edd5add73dcd96c83f24afc81d78e254b518551da96", + "check_gpg": true + }, + { + "checksum": "sha256:ce43ade7d1cb2519c12119621990ac8075c2f9e7577c739990ca949d6c42737a", + "check_gpg": true + }, + { + "checksum": "sha256:4e1b66f11f9e38bbd4a83aaf20f773925522a32b9fb1d0d75b3cca435556ff02", + "check_gpg": true + }, + { + "checksum": "sha256:5f4f256128dba88a13599d6458908c24c0e9c18d8979ae44bf5734da8e7cab70", + "check_gpg": true + }, + { + "checksum": "sha256:85eb614fc608f3b3f4bbd08d4a3b0ff6af188677ea4e009be021680c521cedae", + "check_gpg": true + }, + { + "checksum": "sha256:60b0cbc5e435be346bb06f45f3336f8936d7362022d8bceda80ff16bc3fb7dd2", + "check_gpg": true + }, + { + "checksum": "sha256:0feac495306bbe6e3149a352025bea8d23cda512859a230cbd3f510cf48caaf7", + "check_gpg": true + }, + { + "checksum": "sha256:9c7a5a6f73c8e32559226c54d229cb25304a81a853af22d9f829b9bb09b21f53", + "check_gpg": true + }, + { + "checksum": "sha256:0bc637f0d028043e8388b083cdd8d0a0acea7fdbc79c0bc9401dfb02c20fb817", + "check_gpg": true + }, + { + "checksum": "sha256:1b53c868277dec628058b31b1a8a8a2ccd8efe832ce9694805b5f82564136eb3", + "check_gpg": true + }, + { + "checksum": "sha256:499e48b35f3b5f5da45031fa78fba559fee6a480ecb106e6c300eb8344510958", + "check_gpg": true + }, + { + "checksum": "sha256:bfa39369bd3c36833126b6f46b747de0736a66835d97196195c0810161c24549", + "check_gpg": true + }, + { + "checksum": "sha256:82ce159a9e4e4b6b4fdce9ad954aa507f67108430bd261a4dcd826e44d0152a4", + "check_gpg": true + }, + { + "checksum": "sha256:0edde19e0c027c8cff31b82e1f4b0b198c00bf924047fcf4dd610a7d4965ab52", + "check_gpg": true + }, + { + "checksum": "sha256:6ef6573d410f9e9dfa4bb4a4e1b2ff2f7555b50b1fc4b2ff8fb890e46b4b8d8a", + "check_gpg": true + }, + { + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "checksum": "sha256:04bcd912af3b987311c2dab6331b65c0d9223c312c4b0654649d821a713133be", + "check_gpg": true + }, + { + "checksum": "sha256:ca82090f18d47e454cc512e832bf3ec771edf65299e3c1d56d5df9fab0428869", + "check_gpg": true + }, + { + "checksum": "sha256:30f37ca1fe1592e29d3e97c1dec0646015000d19bffc40f13dcfe73e15be66fc", + "check_gpg": true + }, + { + "checksum": "sha256:913d735c486bf4f564d91bfb247ade86f7567d6d7a7631d16b95e89fd2d0c3ba", + "check_gpg": true + }, + { + "checksum": "sha256:6fded933d86737a21c5cd77399e68e3912125c2da1afb95592e7089ba5594056", + "check_gpg": true + }, + { + "checksum": "sha256:2f1548290dba27526a7b5541e4c7ff76d3124285f8e6335cd6d72919e2aafd41", + "check_gpg": true + }, + { + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ] + } + }, + { + "name": "org.osbuild.fix-bls", + "options": {} + }, + { + "name": "org.osbuild.fstab", + "options": { + "filesystems": [ + { + "uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "vfs_type": "xfs", + "path": "/", + "options": "defaults" + }, + { + "uuid": "7B77-95E7", + "vfs_type": "vfat", + "path": "/boot/efi", + "options": "defaults,uid=0,gid=0,umask=077,shortname=winnt", + "passno": 2 + } + ] + } + }, + { + "name": "org.osbuild.grub2", + "options": { + "root_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "kernel_opts": "console=tty0 console=ttyS0,115200n8 no_timer_check net.ifnames=0 crashkernel=auto", + "legacy": "i386-pc", + "uefi": { + "vendor": "centos" + } + } + }, + { + "name": "org.osbuild.locale", + "options": { + "language": "en_US" + } + }, + { + "name": "org.osbuild.timezone", + "options": { + "zone": "America/New_York" + } + }, + { + "name": "org.osbuild.users", + "options": { + "users": { + "redhat": { + "key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC61wMCjOSHwbVb4VfVyl5sn497qW4PsdQ7Ty7aD6wDNZ/QjjULkDV/yW5WjDlDQ7UqFH0Sr7vywjqDizUAqK7zM5FsUKsUXWHWwg/ehKg8j9xKcMv11AkFoUoujtfAujnKODkk58XSA9whPr7qcw3vPrmog680pnMSzf9LC7J6kXfs6lkoKfBh9VnlxusCrw2yg0qI1fHAZBLPx7mW6+me71QZsS6sVz8v8KXyrXsKTdnF50FjzHcK9HXDBtSJS5wA3fkcRYymJe0o6WMWNdgSRVpoSiWaHHmFgdMUJaYoCfhXzyl7LtNb3Q+Sveg+tJK7JaRXBLMUllOlJ6ll5Hod root@localhost" + } + } + } + }, + { + "name": "org.osbuild.systemd", + "options": { + "default_target": "multi-user.target" + } + }, + { + "name": "org.osbuild.selinux", + "options": { + "file_contexts": "etc/selinux/targeted/contexts/files/file_contexts" + } + }, + { + "name": "org.osbuild.sysconfig", + "options": { + "kernel": { + "update_default": true, + "default_kernel": "kernel" + }, + "network": { + "networking": true, + "no_zero_conf": true + } + } + }, + { + "name": "org.osbuild.rhsm", + "options": { + "dnf-plugins": { + "product-id": { + "enabled": false + }, + "subscription-manager": { + "enabled": false + } + } + } + } + ], + "assembler": { + "name": "org.osbuild.qemu", + "options": { + "bootloader": { + "type": "grub2" + }, + "format": "qcow2", + "filename": "disk.qcow2", + "size": 10737418240, + "ptuuid": "D209C89E-EA5E-4FBD-B161-B461CCE297E0", + "pttype": "gpt", + "partitions": [ + { + "start": 2048, + "size": 2048, + "type": "21686148-6449-6E6F-744E-656564454649", + "bootable": true, + "uuid": "FAC7F1FB-3E8D-4137-A512-961DE09A5549" + }, + { + "start": 4096, + "size": 204800, + "type": "C12A7328-F81F-11D2-BA4B-00A0C93EC93B", + "uuid": "68B2905B-DF3E-4FB3-80FA-49D1E773AA33", + "filesystem": { + "type": "vfat", + "uuid": "7B77-95E7", + "mountpoint": "/boot/efi" + } + }, + { + "start": 208896, + "type": "0FC63DAF-8483-4772-8E79-3D69D8477DE4", + "uuid": "6264D520-3FB9-423F-8AB8-7A0A8E3D3562", + "filesystem": { + "type": "xfs", + "uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "label": "root", + "mountpoint": "/" + } + } + ] + } + } + } + }, + "rpmmd": { + "build-packages": [ + { + "name": "acl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/acl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "name": "audit-libs", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "name": "basesystem", + "epoch": 0, + "version": "11", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/basesystem-11-5.el8.noarch.rpm", + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "name": "bash", + "epoch": 0, + "version": "4.4.19", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bash-4.4.19-14.el8.x86_64.rpm", + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "name": "brotli", + "epoch": 0, + "version": "1.0.6", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/brotli-1.0.6-3.el8.x86_64.rpm", + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "name": "bzip2-libs", + "epoch": 0, + "version": "1.0.6", + "release": "26.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.6-26.el8.x86_64.rpm", + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "name": "ca-certificates", + "epoch": 0, + "version": "2020.2.41", + "release": "80.0.el8_2", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ca-certificates-2020.2.41-80.0.el8_2.noarch.rpm", + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "name": "centos-gpg-keys", + "epoch": 1, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-gpg-keys-8-2.el8.noarch.rpm", + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "name": "centos-stream-release", + "epoch": 0, + "version": "8.4", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-release-8.4-1.el8.noarch.rpm", + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "name": "centos-stream-repos", + "epoch": 0, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-repos-8-2.el8.noarch.rpm", + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "name": "chkconfig", + "epoch": 0, + "version": "1.13", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chkconfig-1.13-2.el8.x86_64.rpm", + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "name": "coreutils", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "name": "coreutils-common", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-common-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "name": "cpio", + "epoch": 0, + "version": "2.12", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cpio-2.12-10.el8.x86_64.rpm", + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "name": "cracklib", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "name": "cracklib-dicts", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "name": "crypto-policies", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "name": "crypto-policies-scripts", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-scripts-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "name": "cryptsetup-libs", + "epoch": 0, + "version": "2.3.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.3.3-2.el8.x86_64.rpm", + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "name": "curl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/curl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "name": "cyrus-sasl-lib", + "epoch": 0, + "version": "2.1.27", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-5.el8.x86_64.rpm", + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "name": "dbus", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "name": "dbus-common", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-common-1.12.8-12.el8.noarch.rpm", + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "name": "dbus-daemon", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-daemon-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "name": "dbus-libs", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-libs-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "name": "dbus-tools", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-tools-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "name": "device-mapper", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "name": "device-mapper-libs", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "name": "diffutils", + "epoch": 0, + "version": "3.6", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/diffutils-3.6-6.el8.x86_64.rpm", + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "name": "dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "name": "dnf-data", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-data-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "name": "dosfstools", + "epoch": 0, + "version": "4.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dosfstools-4.1-6.el8.x86_64.rpm", + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "name": "dracut", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "name": "e2fsprogs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "name": "e2fsprogs-libs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "name": "elfutils-debuginfod-client", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "name": "elfutils-default-yama-scope", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.182-3.el8.noarch.rpm", + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "name": "elfutils-libelf", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libelf-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "name": "elfutils-libs", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libs-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "name": "expat", + "epoch": 0, + "version": "2.2.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/expat-2.2.5-4.el8.x86_64.rpm", + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "name": "file", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "name": "file-libs", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-libs-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "name": "filesystem", + "epoch": 0, + "version": "3.8", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/filesystem-3.8-4.el8.x86_64.rpm", + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "name": "findutils", + "epoch": 1, + "version": "4.6.0", + "release": "20.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/findutils-4.6.0-20.el8.x86_64.rpm", + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "name": "freetype", + "epoch": 0, + "version": "2.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/freetype-2.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "name": "fuse-libs", + "epoch": 0, + "version": "2.9.7", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-libs-2.9.7-12.el8.x86_64.rpm", + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "name": "gawk", + "epoch": 0, + "version": "4.2.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gawk-4.2.1-2.el8.x86_64.rpm", + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "name": "gdbm", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "name": "gdbm-libs", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-libs-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "name": "gettext", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "name": "gettext-libs", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-libs-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "name": "glib2", + "epoch": 0, + "version": "2.56.4", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib2-2.56.4-9.el8.x86_64.rpm", + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "name": "glibc", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "name": "glibc-all-langpacks", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-all-langpacks-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af", + "check_gpg": true + }, + { + "name": "glibc-common", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-common-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "name": "gmp", + "epoch": 1, + "version": "6.1.2", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gmp-6.1.2-10.el8.x86_64.rpm", + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "name": "gnupg2", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "name": "gnupg2-smime", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-smime-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "name": "gnutls", + "epoch": 0, + "version": "3.6.14", + "release": "7.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnutls-3.6.14-7.el8_3.x86_64.rpm", + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "name": "gpgme", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gpgme-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "name": "grep", + "epoch": 0, + "version": "3.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grep-3.1-6.el8.x86_64.rpm", + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "name": "grub2-common", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-common-2.02-93.el8.noarch.rpm", + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "name": "grub2-pc", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "name": "grub2-pc-modules", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-modules-2.02-93.el8.noarch.rpm", + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "name": "grub2-tools", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "name": "grub2-tools-extra", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-extra-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "name": "grub2-tools-minimal", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-minimal-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "name": "grubby", + "epoch": 0, + "version": "8.40", + "release": "41.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grubby-8.40-41.el8.x86_64.rpm", + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "name": "gzip", + "epoch": 0, + "version": "1.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gzip-1.9-12.el8.x86_64.rpm", + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "name": "hardlink", + "epoch": 1, + "version": "1.3", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hardlink-1.3-6.el8.x86_64.rpm", + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "name": "hwdata", + "epoch": 0, + "version": "0.314", + "release": "8.7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hwdata-0.314-8.7.el8.noarch.rpm", + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "name": "ima-evm-utils", + "epoch": 0, + "version": "1.3.2", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ima-evm-utils-1.3.2-11.el8.x86_64.rpm", + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "name": "info", + "epoch": 0, + "version": "6.5", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/info-6.5-6.el8.x86_64.rpm", + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "name": "iptables-libs", + "epoch": 0, + "version": "1.8.4", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-libs-1.8.4-17.el8.x86_64.rpm", + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "name": "json-c", + "epoch": 0, + "version": "0.13.1", + "release": "0.4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-c-0.13.1-0.4.el8.x86_64.rpm", + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "name": "kbd", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-2.0.4-10.el8.x86_64.rpm", + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "name": "kbd-legacy", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-legacy-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "name": "kbd-misc", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-misc-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "name": "keyutils-libs", + "epoch": 0, + "version": "1.5.10", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-libs-1.5.10-6.el8.x86_64.rpm", + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "name": "kmod", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-25-17.el8.x86_64.rpm", + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "name": "kmod-libs", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-libs-25-17.el8.x86_64.rpm", + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "name": "kpartx", + "epoch": 0, + "version": "0.8.4", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kpartx-0.8.4-8.el8.x86_64.rpm", + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "name": "krb5-libs", + "epoch": 0, + "version": "1.18.2", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/krb5-libs-1.18.2-8.el8.x86_64.rpm", + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "name": "libacl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libacl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "name": "libaio", + "epoch": 0, + "version": "0.3.112", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libaio-0.3.112-1.el8.x86_64.rpm", + "checksum": "sha256:2c63399bee449fb6e921671a9bbf3356fda73f890b578820f7d926202e98a479", + "check_gpg": true + }, + { + "name": "libarchive", + "epoch": 0, + "version": "3.3.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libarchive-3.3.3-1.el8.x86_64.rpm", + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "name": "libassuan", + "epoch": 0, + "version": "2.5.1", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libassuan-2.5.1-3.el8.x86_64.rpm", + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "name": "libattr", + "epoch": 0, + "version": "2.4.48", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libattr-2.4.48-3.el8.x86_64.rpm", + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "name": "libblkid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libblkid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "name": "libcap", + "epoch": 0, + "version": "2.26", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-2.26-4.el8.x86_64.rpm", + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "name": "libcap-ng", + "epoch": 0, + "version": "0.7.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-ng-0.7.9-5.el8.x86_64.rpm", + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "name": "libcom_err", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcom_err-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "name": "libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "name": "libcroco", + "epoch": 0, + "version": "0.6.12", + "release": "4.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcroco-0.6.12-4.el8_2.1.x86_64.rpm", + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "name": "libcurl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcurl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "name": "libdb", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "name": "libdb-utils", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-utils-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "name": "libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "name": "libevent", + "epoch": 0, + "version": "2.1.8", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libevent-2.1.8-5.el8.x86_64.rpm", + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "name": "libfdisk", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libfdisk-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "name": "libffi", + "epoch": 0, + "version": "3.1", + "release": "22.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libffi-3.1-22.el8.x86_64.rpm", + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "name": "libgcc", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcc-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "name": "libgcrypt", + "epoch": 0, + "version": "1.8.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcrypt-1.8.5-4.el8.x86_64.rpm", + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "name": "libgomp", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgomp-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "name": "libgpg-error", + "epoch": 0, + "version": "1.31", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgpg-error-1.31-1.el8.x86_64.rpm", + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "name": "libibverbs", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libibverbs-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "name": "libidn2", + "epoch": 0, + "version": "2.2.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libidn2-2.2.0-1.el8.x86_64.rpm", + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "name": "libkcapi", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "name": "libkcapi-hmaccalc", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-hmaccalc-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "name": "libksba", + "epoch": 0, + "version": "1.3.5", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libksba-1.3.5-7.el8.x86_64.rpm", + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "name": "libmetalink", + "epoch": 0, + "version": "0.1.3", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmetalink-0.1.3-7.el8.x86_64.rpm", + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "name": "libmodulemd", + "epoch": 0, + "version": "2.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodulemd-2.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "name": "libmount", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmount-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "name": "libnghttp2", + "epoch": 0, + "version": "1.33.0", + "release": "3.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnghttp2-1.33.0-3.el8_2.1.x86_64.rpm", + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "name": "libnl3", + "epoch": 0, + "version": "3.5.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-3.5.0-1.el8.x86_64.rpm", + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "name": "libnsl2", + "epoch": 0, + "version": "1.2.0", + "release": "2.20180605git4a062cf.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64.rpm", + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "name": "libpcap", + "epoch": 14, + "version": "1.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpcap-1.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "name": "libpng", + "epoch": 2, + "version": "1.6.34", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpng-1.6.34-5.el8.x86_64.rpm", + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "name": "libpsl", + "epoch": 0, + "version": "0.20.2", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpsl-0.20.2-6.el8.x86_64.rpm", + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "name": "libpwquality", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "name": "librepo", + "epoch": 0, + "version": "1.12.0", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/librepo-1.12.0-3.el8.x86_64.rpm", + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "name": "libreport-filesystem", + "epoch": 0, + "version": "2.9.5", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libreport-filesystem-2.9.5-15.el8.x86_64.rpm", + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "name": "libseccomp", + "epoch": 0, + "version": "2.4.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libseccomp-2.4.3-1.el8.x86_64.rpm", + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "name": "libsecret", + "epoch": 0, + "version": "0.18.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsecret-0.18.6-1.el8.x86_64.rpm", + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "name": "libselinux", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "name": "libselinux-utils", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-utils-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "name": "libsemanage", + "epoch": 0, + "version": "2.9", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsemanage-2.9-6.el8.x86_64.rpm", + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "name": "libsepol", + "epoch": 0, + "version": "2.9", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsepol-2.9-2.el8.x86_64.rpm", + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "name": "libsigsegv", + "epoch": 0, + "version": "2.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsigsegv-2.11-5.el8.x86_64.rpm", + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "name": "libsmartcols", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmartcols-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "name": "libsolv", + "epoch": 0, + "version": "0.7.16", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsolv-0.7.16-2.el8.x86_64.rpm", + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "name": "libss", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libss-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "name": "libssh", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-0.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "name": "libssh-config", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-config-0.9.4-2.el8.noarch.rpm", + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "name": "libstdc++", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstdc++-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "name": "libtasn1", + "epoch": 0, + "version": "4.13", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtasn1-4.13-3.el8.x86_64.rpm", + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "name": "libtirpc", + "epoch": 0, + "version": "1.1.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtirpc-1.1.4-4.el8.x86_64.rpm", + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "name": "libunistring", + "epoch": 0, + "version": "0.9.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libunistring-0.9.9-3.el8.x86_64.rpm", + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "name": "libusbx", + "epoch": 0, + "version": "1.0.23", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libusbx-1.0.23-4.el8.x86_64.rpm", + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "name": "libutempter", + "epoch": 0, + "version": "1.1.6", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libutempter-1.1.6-14.el8.x86_64.rpm", + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "name": "libuuid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuuid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "name": "libverto", + "epoch": 0, + "version": "0.3.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-0.3.0-5.el8.x86_64.rpm", + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "name": "libxcrypt", + "epoch": 0, + "version": "4.1.1", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxcrypt-4.1.1-4.el8.x86_64.rpm", + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "name": "libxml2", + "epoch": 0, + "version": "2.9.7", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxml2-2.9.7-9.el8.x86_64.rpm", + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "name": "libyaml", + "epoch": 0, + "version": "0.1.7", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libyaml-0.1.7-5.el8.x86_64.rpm", + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "name": "libzstd", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libzstd-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "name": "lua-libs", + "epoch": 0, + "version": "5.3.4", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lua-libs-5.3.4-11.el8.x86_64.rpm", + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "name": "lz4-libs", + "epoch": 0, + "version": "1.8.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lz4-libs-1.8.3-2.el8.x86_64.rpm", + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "name": "memstrack", + "epoch": 0, + "version": "0.1.11", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/memstrack-0.1.11-1.el8.x86_64.rpm", + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "name": "mpfr", + "epoch": 0, + "version": "3.1.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mpfr-3.1.6-1.el8.x86_64.rpm", + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "name": "ncurses", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "name": "ncurses-base", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-base-6.1-7.20180224.el8.noarch.rpm", + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "name": "ncurses-libs", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-libs-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "name": "nettle", + "epoch": 0, + "version": "3.4.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nettle-3.4.1-2.el8.x86_64.rpm", + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "name": "npth", + "epoch": 0, + "version": "1.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/npth-1.5-4.el8.x86_64.rpm", + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "name": "openldap", + "epoch": 0, + "version": "2.4.46", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openldap-2.4.46-16.el8.x86_64.rpm", + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "name": "openssl", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "name": "openssl-libs", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-libs-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "name": "openssl-pkcs11", + "epoch": 0, + "version": "0.4.10", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-pkcs11-0.4.10-2.el8.x86_64.rpm", + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "name": "os-prober", + "epoch": 0, + "version": "1.74", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/os-prober-1.74-6.el8.x86_64.rpm", + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "name": "p11-kit", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "name": "p11-kit-trust", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-trust-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "name": "pam", + "epoch": 0, + "version": "1.3.1", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pam-1.3.1-14.el8.x86_64.rpm", + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "name": "pciutils", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "name": "pciutils-libs", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-libs-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "name": "pcre", + "epoch": 0, + "version": "8.42", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre-8.42-4.el8.x86_64.rpm", + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "name": "pcre2", + "epoch": 0, + "version": "10.32", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre2-10.32-2.el8.x86_64.rpm", + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "name": "pigz", + "epoch": 0, + "version": "2.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pigz-2.4-4.el8.x86_64.rpm", + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "name": "platform-python", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "name": "platform-python-pip", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-pip-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "name": "platform-python-setuptools", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-setuptools-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "name": "policycoreutils", + "epoch": 0, + "version": "2.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-2.9-12.el8.x86_64.rpm", + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "name": "popt", + "epoch": 0, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/popt-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "name": "procps-ng", + "epoch": 0, + "version": "3.3.15", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/procps-ng-3.3.15-6.el8.x86_64.rpm", + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "name": "publicsuffix-list-dafsa", + "epoch": 0, + "version": "20180723", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20180723-1.el8.noarch.rpm", + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "name": "python3-dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "name": "python3-gpg", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gpg-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "name": "python3-hawkey", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-hawkey-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "name": "python3-iniparse", + "epoch": 0, + "version": "0.4", + "release": "31.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-iniparse-0.4-31.el8.noarch.rpm", + "checksum": "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178", + "check_gpg": true + }, + { + "name": "python3-libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "name": "python3-libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "name": "python3-libs", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libs-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "name": "python3-pip-wheel", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pip-wheel-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "name": "python3-rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "name": "python3-setuptools", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:c6f27b6e01d80e756408e3c1451e4af00e7d02da0aa24402644c0785118753fe", + "check_gpg": true + }, + { + "name": "python3-setuptools-wheel", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "name": "python3-six", + "epoch": 0, + "version": "1.11.0", + "release": "8.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-six-1.11.0-8.el8.noarch.rpm", + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "name": "rdma-core", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rdma-core-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "name": "readline", + "epoch": 0, + "version": "7.0", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/readline-7.0-10.el8.x86_64.rpm", + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "name": "rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "name": "rpm-build-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-build-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "name": "rpm-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "name": "rpm-plugin-selinux", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "name": "rpm-plugin-systemd-inhibit", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "name": "sed", + "epoch": 0, + "version": "4.5", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sed-4.5-2.el8.x86_64.rpm", + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "name": "selinux-policy", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "name": "selinux-policy-targeted", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-targeted-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "name": "setup", + "epoch": 0, + "version": "2.12.2", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/setup-2.12.2-6.el8.noarch.rpm", + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "name": "shadow-utils", + "epoch": 2, + "version": "4.6", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shadow-utils-4.6-12.el8.x86_64.rpm", + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "name": "shared-mime-info", + "epoch": 0, + "version": "1.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shared-mime-info-1.9-3.el8.x86_64.rpm", + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "name": "sqlite-libs", + "epoch": 0, + "version": "3.26.0", + "release": "13.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sqlite-libs-3.26.0-13.el8.x86_64.rpm", + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "name": "systemd", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-239-44.el8.x86_64.rpm", + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "name": "systemd-libs", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-libs-239-44.el8.x86_64.rpm", + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "name": "systemd-pam", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-pam-239-44.el8.x86_64.rpm", + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "name": "systemd-udev", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-udev-239-44.el8.x86_64.rpm", + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "name": "tar", + "epoch": 2, + "version": "1.30", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tar-1.30-5.el8.x86_64.rpm", + "checksum": "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393", + "check_gpg": true + }, + { + "name": "tpm2-tss", + "epoch": 0, + "version": "2.3.2", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tpm2-tss-2.3.2-3.el8.x86_64.rpm", + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "name": "trousers", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "name": "trousers-lib", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-lib-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "name": "tzdata", + "epoch": 0, + "version": "2021a", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tzdata-2021a-1.el8.noarch.rpm", + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "name": "util-linux", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/util-linux-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "name": "which", + "epoch": 0, + "version": "2.21", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/which-2.21-12.el8.x86_64.rpm", + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "name": "xfsprogs", + "epoch": 0, + "version": "5.0.0", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xfsprogs-5.0.0-8.el8.x86_64.rpm", + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "name": "xz", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "name": "xz-libs", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-libs-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "name": "zlib", + "epoch": 0, + "version": "1.2.11", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/zlib-1.2.11-17.el8.x86_64.rpm", + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "name": "libxkbcommon", + "epoch": 0, + "version": "0.9.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxkbcommon-0.9.1-1.el8.x86_64.rpm", + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "name": "pinentry", + "epoch": 0, + "version": "1.1.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pinentry-1.1.0-2.el8.x86_64.rpm", + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "name": "python3-pip", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pip-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:a2418e8e12144d4e84965298e7bbefedc876c0d0d93771afb9b5c6c2eb139dc0", + "check_gpg": true + }, + { + "name": "python3-unbound", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-unbound-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "name": "python36", + "epoch": 0, + "version": "3.6.8", + "release": "2.module_el8.4.0+666+456f5f48", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python36-3.6.8-2.module_el8.4.0+666+456f5f48.x86_64.rpm", + "checksum": "sha256:df417aae69f2ba5bd4324a14dcfd30dfbfefba440085bbf916c5ef19286cba20", + "check_gpg": true + }, + { + "name": "qemu-img", + "epoch": 15, + "version": "4.2.0", + "release": "35.module_el8.4.0+547+a85d02ba", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/qemu-img-4.2.0-35.module_el8.4.0+547+a85d02ba.x86_64.rpm", + "checksum": "sha256:f6f7907ccf8faa83a93e6d48801970aa45181a3a3c05ad7102b540a07534e318", + "check_gpg": true + }, + { + "name": "unbound-libs", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/unbound-libs-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "name": "xkeyboard-config", + "epoch": 0, + "version": "2.28", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xkeyboard-config-2.28-1.el8.noarch.rpm", + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ], + "packages": [ + { + "name": "NetworkManager", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:1d130b0daf86899c3987d59567303ce7ae44c3273f2d8d0f0625bef7e6bad16d", + "check_gpg": true + }, + { + "name": "NetworkManager-libnm", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-libnm-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:41d9c9f8e17c83f73e51e90f02e08927bb9c836d033815c6cdddc6da44e321f0", + "check_gpg": true + }, + { + "name": "NetworkManager-team", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-team-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:f60f24ba76f7f9d9f42421153d296a279fb616165a27cf2c71657a901a425bb1", + "check_gpg": true + }, + { + "name": "NetworkManager-tui", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-tui-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:657db08f58b6776f48fda17d2b734a26918b431253f9e4eba9fd5a46d9f89aef", + "check_gpg": true + }, + { + "name": "acl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/acl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "name": "audit", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:b0149d85f0172e98866ff2483660af2cf6c6fa0c8f9cab2c51cc2af479c9e319", + "check_gpg": true + }, + { + "name": "audit-libs", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "name": "authselect", + "epoch": 0, + "version": "1.2.2", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-1.2.2-1.el8.x86_64.rpm", + "checksum": "sha256:cb5072917ce75dbde8fe474fa872db85da5dbac59cc1eb4a9125e7b6280f254e", + "check_gpg": true + }, + { + "name": "authselect-libs", + "epoch": 0, + "version": "1.2.2", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-libs-1.2.2-1.el8.x86_64.rpm", + "checksum": "sha256:a217b0fbe9757a0225b66d16c1668cdf5cb2aa69c68b89e79783abd507f2e7bf", + "check_gpg": true + }, + { + "name": "basesystem", + "epoch": 0, + "version": "11", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/basesystem-11-5.el8.noarch.rpm", + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "name": "bash", + "epoch": 0, + "version": "4.4.19", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bash-4.4.19-14.el8.x86_64.rpm", + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "name": "bind-export-libs", + "epoch": 32, + "version": "9.11.26", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bind-export-libs-9.11.26-2.el8.x86_64.rpm", + "checksum": "sha256:2d4cf3bd8b8046adfa869fbb5b472294469457f6445db36abcc227959be9adeb", + "check_gpg": true + }, + { + "name": "brotli", + "epoch": 0, + "version": "1.0.6", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/brotli-1.0.6-3.el8.x86_64.rpm", + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "name": "bzip2", + "epoch": 0, + "version": "1.0.6", + "release": "26.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-1.0.6-26.el8.x86_64.rpm", + "checksum": "sha256:78596f457c3d737a97a4edfe9a03a01f593606379c281701ab7f7eba13ecaf18", + "check_gpg": true + }, + { + "name": "bzip2-libs", + "epoch": 0, + "version": "1.0.6", + "release": "26.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.6-26.el8.x86_64.rpm", + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "name": "c-ares", + "epoch": 0, + "version": "1.13.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/c-ares-1.13.0-5.el8.x86_64.rpm", + "checksum": "sha256:9d160cdfba107ddc0613e169311bf57077c04e71a052a57704f3bdb64729d565", + "check_gpg": true + }, + { + "name": "ca-certificates", + "epoch": 0, + "version": "2020.2.41", + "release": "80.0.el8_2", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ca-certificates-2020.2.41-80.0.el8_2.noarch.rpm", + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "name": "centos-gpg-keys", + "epoch": 1, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-gpg-keys-8-2.el8.noarch.rpm", + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "name": "centos-stream-release", + "epoch": 0, + "version": "8.4", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-release-8.4-1.el8.noarch.rpm", + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "name": "centos-stream-repos", + "epoch": 0, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-repos-8-2.el8.noarch.rpm", + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "name": "checkpolicy", + "epoch": 0, + "version": "2.9", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/checkpolicy-2.9-1.el8.x86_64.rpm", + "checksum": "sha256:d5c283da0d2666742635754626263f6f78e273cd46d83d2d66ed43730a731685", + "check_gpg": true + }, + { + "name": "chkconfig", + "epoch": 0, + "version": "1.13", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chkconfig-1.13-2.el8.x86_64.rpm", + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "name": "chrony", + "epoch": 0, + "version": "3.5", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chrony-3.5-1.el8.x86_64.rpm", + "checksum": "sha256:5f3d3d3b27b7df75738d1ee31112c60d39c54b8d7f92b6900606187f6cffce1d", + "check_gpg": true + }, + { + "name": "cockpit-bridge", + "epoch": 0, + "version": "236", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cockpit-bridge-236-1.el8.x86_64.rpm", + "checksum": "sha256:fe0767b57c921cd1df4b53f8d73936cb8e2d870cb1ed1d8c22d33b6e04e947c7", + "check_gpg": true + }, + { + "name": "cockpit-system", + "epoch": 0, + "version": "236", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cockpit-system-236-1.el8.noarch.rpm", + "checksum": "sha256:7e73df2868a12881f6b98fe025485e9e6345978511e2866132503e05b1ccefda", + "check_gpg": true + }, + { + "name": "cockpit-ws", + "epoch": 0, + "version": "236", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cockpit-ws-236-1.el8.x86_64.rpm", + "checksum": "sha256:a205b1ca2ee6452bec8a2a6a5817f26ed60a5490b99b333c0b3baf8171ef0c71", + "check_gpg": true + }, + { + "name": "coreutils", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "name": "coreutils-common", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-common-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "name": "cpio", + "epoch": 0, + "version": "2.12", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cpio-2.12-10.el8.x86_64.rpm", + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "name": "cracklib", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "name": "cracklib-dicts", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "name": "cronie", + "epoch": 0, + "version": "1.5.2", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-1.5.2-4.el8.x86_64.rpm", + "checksum": "sha256:63a6b7765828081cc88b36d10c68621acbebf02a7c2e7d7f1a1217c8742ea6ae", + "check_gpg": true + }, + { + "name": "cronie-anacron", + "epoch": 0, + "version": "1.5.2", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-anacron-1.5.2-4.el8.x86_64.rpm", + "checksum": "sha256:71fcbbec3aa152bc1427cb4d597375b008438f6259b20cfcb68fff21eef80f91", + "check_gpg": true + }, + { + "name": "crontabs", + "epoch": 0, + "version": "1.11", + "release": "17.20190603git.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crontabs-1.11-17.20190603git.el8.noarch.rpm", + "checksum": "sha256:bcf25aae89f7368b16346bc1ec92850175bcc2312bf7a5e74bc3c512bcd345b0", + "check_gpg": true + }, + { + "name": "crypto-policies", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "name": "crypto-policies-scripts", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-scripts-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "name": "cryptsetup-libs", + "epoch": 0, + "version": "2.3.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.3.3-2.el8.x86_64.rpm", + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "name": "curl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/curl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "name": "cyrus-sasl-lib", + "epoch": 0, + "version": "2.1.27", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-5.el8.x86_64.rpm", + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "name": "dbus", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "name": "dbus-common", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-common-1.12.8-12.el8.noarch.rpm", + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "name": "dbus-daemon", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-daemon-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "name": "dbus-glib", + "epoch": 0, + "version": "0.110", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-glib-0.110-2.el8.x86_64.rpm", + "checksum": "sha256:f86fec6c6a844fbbfbf7c806d79dd7e72e4eef9c804472547a6d3ecf34cddca6", + "check_gpg": true + }, + { + "name": "dbus-libs", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-libs-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "name": "dbus-tools", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-tools-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "name": "dbxtool", + "epoch": 0, + "version": "8", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbxtool-8-5.el8.x86_64.rpm", + "checksum": "sha256:69fc3075751693fe23c0658d1e97c0e14366d8833a78ab75b951596b07345827", + "check_gpg": true + }, + { + "name": "dejavu-fonts-common", + "epoch": 0, + "version": "2.35", + "release": "7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dejavu-fonts-common-2.35-7.el8.noarch.rpm", + "checksum": "sha256:dd80a8169e27959a27651616e998be8b49ffdca141744177cb42126ff0ae12b5", + "check_gpg": true + }, + { + "name": "dejavu-sans-mono-fonts", + "epoch": 0, + "version": "2.35", + "release": "7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dejavu-sans-mono-fonts-2.35-7.el8.noarch.rpm", + "checksum": "sha256:a8a27e1ffbb92356d6376334687b9eaa0cb5f2eece2670128f3a01e391e9f3bb", + "check_gpg": true + }, + { + "name": "device-mapper", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "name": "device-mapper-libs", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "name": "dhcp-client", + "epoch": 12, + "version": "4.3.6", + "release": "44.0.1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-client-4.3.6-44.0.1.el8.x86_64.rpm", + "checksum": "sha256:084c55bef75a2ce2ab67aa4eeb6726ca59ea6d7c2b23bc6e4084f11aac7e17f8", + "check_gpg": true + }, + { + "name": "dhcp-common", + "epoch": 12, + "version": "4.3.6", + "release": "44.0.1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-common-4.3.6-44.0.1.el8.noarch.rpm", + "checksum": "sha256:7ec48db9e1e9896f29a16cbea53cdeecdd7dd2bc278c06721ebca2e71e9dcd6d", + "check_gpg": true + }, + { + "name": "dhcp-libs", + "epoch": 12, + "version": "4.3.6", + "release": "44.0.1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-libs-4.3.6-44.0.1.el8.x86_64.rpm", + "checksum": "sha256:436e93b4c072f8b6f90f41a037d017406be10c18efafc8c634f6da59bbac1105", + "check_gpg": true + }, + { + "name": "diffutils", + "epoch": 0, + "version": "3.6", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/diffutils-3.6-6.el8.x86_64.rpm", + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "name": "dmidecode", + "epoch": 1, + "version": "3.2", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dmidecode-3.2-8.el8.x86_64.rpm", + "checksum": "sha256:b2cd2dc5cf9c1c118053e7e650c6d910b1d37e810a38d90de27d80a04b702e39", + "check_gpg": true + }, + { + "name": "dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "name": "dnf-data", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-data-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "name": "dnf-plugin-subscription-manager", + "epoch": 0, + "version": "1.28.10", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-plugin-subscription-manager-1.28.10-1.el8.x86_64.rpm", + "checksum": "sha256:92d0b9ec103da224c892da489441a7beec1df28e2a0962b56a949a1e66372bf6", + "check_gpg": true + }, + { + "name": "dnf-plugins-core", + "epoch": 0, + "version": "4.0.18", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-plugins-core-4.0.18-3.el8.noarch.rpm", + "checksum": "sha256:c4a5df7ec884bdcc929e73e066c7def89cfb8cf53306ffcf9f33a5c9e4ae84c7", + "check_gpg": true + }, + { + "name": "dosfstools", + "epoch": 0, + "version": "4.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dosfstools-4.1-6.el8.x86_64.rpm", + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "name": "dracut", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "name": "dracut-config-generic", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-config-generic-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:760141c74870a93505dbba2174034287b6a97b9bb2b12c5ca2b7af056773b45b", + "check_gpg": true + }, + { + "name": "dracut-network", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-network-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:4a28d9fa9785d7e8515deaf5e1a381a553c37b02a81a20ddd4fa202b33413ac9", + "check_gpg": true + }, + { + "name": "dracut-squash", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-squash-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:16b34582f757aebb9bc7b0a0475458cbb186238b5b528ef8fdb099cb739ba383", + "check_gpg": true + }, + { + "name": "e2fsprogs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "name": "e2fsprogs-libs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "name": "efi-filesystem", + "epoch": 0, + "version": "3", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efi-filesystem-3-3.el8.noarch.rpm", + "checksum": "sha256:d655ee126614010e72bac89b7ecaf38b515647181a22940cb774647442d28beb", + "check_gpg": true + }, + { + "name": "efivar", + "epoch": 0, + "version": "37", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efivar-37-4.el8.x86_64.rpm", + "checksum": "sha256:8842ae7b6585715e5daeb82bebccd993a81a3e0697ea105735b7a920feb1a7ed", + "check_gpg": true + }, + { + "name": "efivar-libs", + "epoch": 0, + "version": "37", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efivar-libs-37-4.el8.x86_64.rpm", + "checksum": "sha256:48bfe66d6f07baf1974355e8a3ebbc44f2d9812b823ddfff1c15f35635a8dc4e", + "check_gpg": true + }, + { + "name": "elfutils-debuginfod-client", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "name": "elfutils-default-yama-scope", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.182-3.el8.noarch.rpm", + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "name": "elfutils-libelf", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libelf-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "name": "elfutils-libs", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libs-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "name": "ethtool", + "epoch": 2, + "version": "5.8", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ethtool-5.8-5.el8.x86_64.rpm", + "checksum": "sha256:f7e6debd0279cb07f0c805d90b707c187bb55b9ee34643898eec800b79fa6b1b", + "check_gpg": true + }, + { + "name": "expat", + "epoch": 0, + "version": "2.2.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/expat-2.2.5-4.el8.x86_64.rpm", + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "name": "file", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "name": "file-libs", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-libs-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "name": "filesystem", + "epoch": 0, + "version": "3.8", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/filesystem-3.8-4.el8.x86_64.rpm", + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "name": "findutils", + "epoch": 1, + "version": "4.6.0", + "release": "20.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/findutils-4.6.0-20.el8.x86_64.rpm", + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "name": "fontconfig", + "epoch": 0, + "version": "2.13.1", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fontconfig-2.13.1-3.el8.x86_64.rpm", + "checksum": "sha256:960f841e4a286b6b9511d47e6736753e4d1f0fd05395a078bacccfb1c8b164aa", + "check_gpg": true + }, + { + "name": "fontpackages-filesystem", + "epoch": 0, + "version": "1.44", + "release": "22.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fontpackages-filesystem-1.44-22.el8.noarch.rpm", + "checksum": "sha256:700b9050aa490b5eca6d1f8630cbebceb122fce11c370689b5ccb37f5a43ee2f", + "check_gpg": true + }, + { + "name": "freetype", + "epoch": 0, + "version": "2.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/freetype-2.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "name": "fuse-libs", + "epoch": 0, + "version": "2.9.7", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-libs-2.9.7-12.el8.x86_64.rpm", + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "name": "gawk", + "epoch": 0, + "version": "4.2.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gawk-4.2.1-2.el8.x86_64.rpm", + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "name": "gdbm", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "name": "gdbm-libs", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-libs-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "name": "gdk-pixbuf2", + "epoch": 0, + "version": "2.36.12", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdk-pixbuf2-2.36.12-5.el8.x86_64.rpm", + "checksum": "sha256:94cb8dceb47a5b01e3c0542ea3b48601d720325da28e6e6d89ae529e4fddcd97", + "check_gpg": true + }, + { + "name": "gettext", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "name": "gettext-libs", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-libs-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "name": "glib-networking", + "epoch": 0, + "version": "2.56.1", + "release": "1.1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib-networking-2.56.1-1.1.el8.x86_64.rpm", + "checksum": "sha256:a7f9ae54f45ca4fcecf78d9885d12a789f7325119794178bfa2814c6185a953d", + "check_gpg": true + }, + { + "name": "glib2", + "epoch": 0, + "version": "2.56.4", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib2-2.56.4-9.el8.x86_64.rpm", + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "name": "glibc", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "name": "glibc-all-langpacks", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-all-langpacks-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af", + "check_gpg": true + }, + { + "name": "glibc-common", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-common-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "name": "gmp", + "epoch": 1, + "version": "6.1.2", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gmp-6.1.2-10.el8.x86_64.rpm", + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "name": "gnupg2", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "name": "gnupg2-smime", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-smime-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "name": "gnutls", + "epoch": 0, + "version": "3.6.14", + "release": "7.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnutls-3.6.14-7.el8_3.x86_64.rpm", + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "name": "gobject-introspection", + "epoch": 0, + "version": "1.56.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gobject-introspection-1.56.1-1.el8.x86_64.rpm", + "checksum": "sha256:7e2804a4494d4179ed50c0c99da1e30c3a6abf8db889c1412b458943cff0e3e5", + "check_gpg": true + }, + { + "name": "gpgme", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gpgme-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "name": "grep", + "epoch": 0, + "version": "3.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grep-3.1-6.el8.x86_64.rpm", + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "name": "groff-base", + "epoch": 0, + "version": "1.22.3", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/groff-base-1.22.3-18.el8.x86_64.rpm", + "checksum": "sha256:b00855013100d3796e9ed6d82b1ab2d4dc7f4a3a3fa2e186f6de8523577974a0", + "check_gpg": true + }, + { + "name": "grub2-common", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-common-2.02-93.el8.noarch.rpm", + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "name": "grub2-efi-x64", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-efi-x64-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:79277d872ae6035009a1a40e914ec09bca21aefcac9d73dee65880c86387f3c9", + "check_gpg": true + }, + { + "name": "grub2-pc", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "name": "grub2-pc-modules", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-modules-2.02-93.el8.noarch.rpm", + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "name": "grub2-tools", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "name": "grub2-tools-extra", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-extra-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "name": "grub2-tools-minimal", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-minimal-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "name": "grubby", + "epoch": 0, + "version": "8.40", + "release": "41.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grubby-8.40-41.el8.x86_64.rpm", + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "name": "gsettings-desktop-schemas", + "epoch": 0, + "version": "3.32.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gsettings-desktop-schemas-3.32.0-5.el8.x86_64.rpm", + "checksum": "sha256:759d9669521b99f19f60f8067e64b4aa42942e22ca62b7f98503f6a932125783", + "check_gpg": true + }, + { + "name": "gssproxy", + "epoch": 0, + "version": "0.8.0", + "release": "19.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gssproxy-0.8.0-19.el8.x86_64.rpm", + "checksum": "sha256:881bdb9aa79de1933dc553fcf0b6597897b60e0e4b73a369572e4d9460fab439", + "check_gpg": true + }, + { + "name": "gzip", + "epoch": 0, + "version": "1.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gzip-1.9-12.el8.x86_64.rpm", + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "name": "hardlink", + "epoch": 1, + "version": "1.3", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hardlink-1.3-6.el8.x86_64.rpm", + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "name": "hdparm", + "epoch": 0, + "version": "9.54", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hdparm-9.54-3.el8.x86_64.rpm", + "checksum": "sha256:3c6650fd6e32fdc24b8cf1f7a85ae8232661b47bda7019e49fd0eb474683ff23", + "check_gpg": true + }, + { + "name": "hostname", + "epoch": 0, + "version": "3.20", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hostname-3.20-6.el8.x86_64.rpm", + "checksum": "sha256:7a7963e2052bfb45b8569f64619dc5cb92fe8aeb78c754b7cf948b9784646785", + "check_gpg": true + }, + { + "name": "hwdata", + "epoch": 0, + "version": "0.314", + "release": "8.7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hwdata-0.314-8.7.el8.noarch.rpm", + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "name": "ima-evm-utils", + "epoch": 0, + "version": "1.3.2", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ima-evm-utils-1.3.2-11.el8.x86_64.rpm", + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "name": "info", + "epoch": 0, + "version": "6.5", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/info-6.5-6.el8.x86_64.rpm", + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "name": "initscripts", + "epoch": 0, + "version": "10.00.12", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/initscripts-10.00.12-1.el8.x86_64.rpm", + "checksum": "sha256:7fa8fbc576f7d54c388fa39fc3ed86bacb7964cac4544c48b3ffabcdcdc27b61", + "check_gpg": true + }, + { + "name": "ipcalc", + "epoch": 0, + "version": "0.2.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipcalc-0.2.4-4.el8.x86_64.rpm", + "checksum": "sha256:dea18976861575d40ffca814dee08a225376c7828a5afc9e5d0a383edd3d8907", + "check_gpg": true + }, + { + "name": "iproute", + "epoch": 0, + "version": "5.9.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iproute-5.9.0-2.el8.x86_64.rpm", + "checksum": "sha256:a456039834ccc5432949120f1d80b18329b552cf44d1b59ea1b60d2192e7bc5c", + "check_gpg": true + }, + { + "name": "iptables-libs", + "epoch": 0, + "version": "1.8.4", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-libs-1.8.4-17.el8.x86_64.rpm", + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "name": "iputils", + "epoch": 0, + "version": "20180629", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iputils-20180629-6.el8.x86_64.rpm", + "checksum": "sha256:74b842ba3352d7c4ada7e991aeadf8749f058a4d00ccc6f79f1c82a281497cb7", + "check_gpg": true + }, + { + "name": "irqbalance", + "epoch": 2, + "version": "1.4.0", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/irqbalance-1.4.0-6.el8.x86_64.rpm", + "checksum": "sha256:3acd2c8b6ea534811308b3138859b5fa150b89604bb60f16b0650747039d696a", + "check_gpg": true + }, + { + "name": "jansson", + "epoch": 0, + "version": "2.11", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/jansson-2.11-3.el8.x86_64.rpm", + "checksum": "sha256:a06e1d34df03aaf429d290d5c281356fefe0ad510c229189405b88b3c0f40374", + "check_gpg": true + }, + { + "name": "json-c", + "epoch": 0, + "version": "0.13.1", + "release": "0.4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-c-0.13.1-0.4.el8.x86_64.rpm", + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "name": "json-glib", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-glib-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:98a6386df94fc9595365c3ecbc630708420fa68d1774614a723dec4a55e84b9c", + "check_gpg": true + }, + { + "name": "kbd", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-2.0.4-10.el8.x86_64.rpm", + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "name": "kbd-legacy", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-legacy-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "name": "kbd-misc", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-misc-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "name": "kernel", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:c44dbbff4fe503f5f49b71ab17db7848c6c67fe19d9a4cc6cef59cc6dd15f1a6", + "check_gpg": true + }, + { + "name": "kernel-core", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:aa938dc6f13d0d57ca811b8c299b1017723fa419997b87754f74db770430c2d9", + "check_gpg": true + }, + { + "name": "kernel-modules", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:da77940ecadc9edb5d14aad51e4bf06664e5763fe6e46b20364732ec3aa2e08a", + "check_gpg": true + }, + { + "name": "kernel-tools", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:5f45a2ff1a9c9f3d4fcae463c1ca70b1a16caccc59816ce391f064c9d8b9d8ae", + "check_gpg": true + }, + { + "name": "kernel-tools-libs", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-libs-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:ab1be3dcea74c7a7fac49f9a1cad4113fded2d3edabb61b29ed8489a737033fe", + "check_gpg": true + }, + { + "name": "kexec-tools", + "epoch": 0, + "version": "2.0.20", + "release": "45.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kexec-tools-2.0.20-45.el8.x86_64.rpm", + "checksum": "sha256:4280042747c9027c3252d360fa33d63490aa518858849115b20162a097a37146", + "check_gpg": true + }, + { + "name": "keyutils", + "epoch": 0, + "version": "1.5.10", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-1.5.10-6.el8.x86_64.rpm", + "checksum": "sha256:f602f145a2deb352013006744cd47e2e1ff9a740ddbeb9412e50e801b5dbe02a", + "check_gpg": true + }, + { + "name": "keyutils-libs", + "epoch": 0, + "version": "1.5.10", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-libs-1.5.10-6.el8.x86_64.rpm", + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "name": "kmod", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-25-17.el8.x86_64.rpm", + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "name": "kmod-libs", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-libs-25-17.el8.x86_64.rpm", + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "name": "kpartx", + "epoch": 0, + "version": "0.8.4", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kpartx-0.8.4-8.el8.x86_64.rpm", + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "name": "krb5-libs", + "epoch": 0, + "version": "1.18.2", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/krb5-libs-1.18.2-8.el8.x86_64.rpm", + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "name": "less", + "epoch": 0, + "version": "530", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/less-530-1.el8.x86_64.rpm", + "checksum": "sha256:f94172554b8ceeab97b560d0b05c2e2df4b2e737471adce6eca82fd3209be254", + "check_gpg": true + }, + { + "name": "libacl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libacl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "name": "libappstream-glib", + "epoch": 0, + "version": "0.7.14", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libappstream-glib-0.7.14-3.el8.x86_64.rpm", + "checksum": "sha256:230820d3f9dbaa9dcd013836f4ba56d0514946bc05cac7727ef2aaff3a3dde26", + "check_gpg": true + }, + { + "name": "libarchive", + "epoch": 0, + "version": "3.3.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libarchive-3.3.3-1.el8.x86_64.rpm", + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "name": "libassuan", + "epoch": 0, + "version": "2.5.1", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libassuan-2.5.1-3.el8.x86_64.rpm", + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "name": "libattr", + "epoch": 0, + "version": "2.4.48", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libattr-2.4.48-3.el8.x86_64.rpm", + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "name": "libbasicobjects", + "epoch": 0, + "version": "0.1.1", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libbasicobjects-0.1.1-39.el8.x86_64.rpm", + "checksum": "sha256:5452b96e4b57c275dd41e48d55af1ca4f77ccfb3ae403796e599a039d7382b91", + "check_gpg": true + }, + { + "name": "libblkid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libblkid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "name": "libcap", + "epoch": 0, + "version": "2.26", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-2.26-4.el8.x86_64.rpm", + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "name": "libcap-ng", + "epoch": 0, + "version": "0.7.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-ng-0.7.9-5.el8.x86_64.rpm", + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "name": "libcollection", + "epoch": 0, + "version": "0.7.0", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcollection-0.7.0-39.el8.x86_64.rpm", + "checksum": "sha256:708a8fd75f7c6987d66e2d62de664b5a84c6f75fd4e5230e244681897b15a25d", + "check_gpg": true + }, + { + "name": "libcom_err", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcom_err-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "name": "libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "name": "libcroco", + "epoch": 0, + "version": "0.6.12", + "release": "4.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcroco-0.6.12-4.el8_2.1.x86_64.rpm", + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "name": "libcurl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcurl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "name": "libdaemon", + "epoch": 0, + "version": "0.14", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdaemon-0.14-15.el8.x86_64.rpm", + "checksum": "sha256:dae52ddd215b506d1805b66873194df5043fd758d42960dee68f029eab329b42", + "check_gpg": true + }, + { + "name": "libdb", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "name": "libdb-utils", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-utils-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "name": "libdhash", + "epoch": 0, + "version": "0.5.0", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdhash-0.5.0-39.el8.x86_64.rpm", + "checksum": "sha256:6327624b7b0d726a3c95f2245619efb1df8e70023fadcc8158afed39f57859e7", + "check_gpg": true + }, + { + "name": "libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "name": "libedit", + "epoch": 0, + "version": "3.1", + "release": "23.20170329cvs.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libedit-3.1-23.20170329cvs.el8.x86_64.rpm", + "checksum": "sha256:08b76b0af07db4d3b27776a96bb7d0dc0f02b7219569676ac79036190d731d5b", + "check_gpg": true + }, + { + "name": "libevent", + "epoch": 0, + "version": "2.1.8", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libevent-2.1.8-5.el8.x86_64.rpm", + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "name": "libfdisk", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libfdisk-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "name": "libffi", + "epoch": 0, + "version": "3.1", + "release": "22.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libffi-3.1-22.el8.x86_64.rpm", + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "name": "libgcc", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcc-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "name": "libgcrypt", + "epoch": 0, + "version": "1.8.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcrypt-1.8.5-4.el8.x86_64.rpm", + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "name": "libgomp", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgomp-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "name": "libgpg-error", + "epoch": 0, + "version": "1.31", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgpg-error-1.31-1.el8.x86_64.rpm", + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "name": "libibverbs", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libibverbs-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "name": "libidn2", + "epoch": 0, + "version": "2.2.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libidn2-2.2.0-1.el8.x86_64.rpm", + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "name": "libini_config", + "epoch": 0, + "version": "1.3.1", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libini_config-1.3.1-39.el8.x86_64.rpm", + "checksum": "sha256:b06fa62d0a585a7bc3b9d3341923736b3ee4b6cc6d7ca83bebcb97225ca86ac9", + "check_gpg": true + }, + { + "name": "libkcapi", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "name": "libkcapi-hmaccalc", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-hmaccalc-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "name": "libksba", + "epoch": 0, + "version": "1.3.5", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libksba-1.3.5-7.el8.x86_64.rpm", + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "name": "libldb", + "epoch": 0, + "version": "2.2.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libldb-2.2.0-1.el8.x86_64.rpm", + "checksum": "sha256:1b5187e9b694e439a059be58d8de5317f04278371d1195bf000b001ba8699197", + "check_gpg": true + }, + { + "name": "libmetalink", + "epoch": 0, + "version": "0.1.3", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmetalink-0.1.3-7.el8.x86_64.rpm", + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "name": "libmnl", + "epoch": 0, + "version": "1.0.4", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmnl-1.0.4-6.el8.x86_64.rpm", + "checksum": "sha256:30fab73ee155f03dbbd99c1e30fe59dfba4ae8fdb2e7213451ccc36d6918bfcc", + "check_gpg": true + }, + { + "name": "libmodman", + "epoch": 0, + "version": "2.0.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodman-2.0.1-17.el8.x86_64.rpm", + "checksum": "sha256:c3b8c553b166491d3114793e198cd1aad95e494d177af8d0dc7180b8b841124d", + "check_gpg": true + }, + { + "name": "libmodulemd", + "epoch": 0, + "version": "2.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodulemd-2.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "name": "libmount", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmount-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "name": "libndp", + "epoch": 0, + "version": "1.7", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libndp-1.7-3.el8.x86_64.rpm", + "checksum": "sha256:c357a350aa169402db3c898c7edcfee333e1d11a44f62bbeaba3fd3d2f31644d", + "check_gpg": true + }, + { + "name": "libnfsidmap", + "epoch": 1, + "version": "2.3.3", + "release": "41.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnfsidmap-2.3.3-41.el8.x86_64.rpm", + "checksum": "sha256:8852282172440cd618c695356449cbc035be4091b2a0833c785c8e42cc1df0e6", + "check_gpg": true + }, + { + "name": "libnghttp2", + "epoch": 0, + "version": "1.33.0", + "release": "3.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnghttp2-1.33.0-3.el8_2.1.x86_64.rpm", + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "name": "libnl3", + "epoch": 0, + "version": "3.5.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-3.5.0-1.el8.x86_64.rpm", + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "name": "libnl3-cli", + "epoch": 0, + "version": "3.5.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-cli-3.5.0-1.el8.x86_64.rpm", + "checksum": "sha256:2e8d4ee76fa8678b0e4d6c0297b16f96e0116201bf96b36e8924b1b080abcddd", + "check_gpg": true + }, + { + "name": "libnsl2", + "epoch": 0, + "version": "1.2.0", + "release": "2.20180605git4a062cf.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64.rpm", + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "name": "libpath_utils", + "epoch": 0, + "version": "0.2.1", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpath_utils-0.2.1-39.el8.x86_64.rpm", + "checksum": "sha256:185f36b3af9367e6142233af358df22f23ee623697bc6a45c47091013707872e", + "check_gpg": true + }, + { + "name": "libpcap", + "epoch": 14, + "version": "1.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpcap-1.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "name": "libpipeline", + "epoch": 0, + "version": "1.5.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpipeline-1.5.0-2.el8.x86_64.rpm", + "checksum": "sha256:9eb9c1a67c5be04487cc133bdb8498eaf260e4d930a0143d2e1aa772e3d6cf64", + "check_gpg": true + }, + { + "name": "libpng", + "epoch": 2, + "version": "1.6.34", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpng-1.6.34-5.el8.x86_64.rpm", + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "name": "libproxy", + "epoch": 0, + "version": "0.4.15", + "release": "5.2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libproxy-0.4.15-5.2.el8.x86_64.rpm", + "checksum": "sha256:c9597eecf39a25497b2ac3c69bc9777eda05b9eaa6d5d29d004a81d71a45d0d7", + "check_gpg": true + }, + { + "name": "libpsl", + "epoch": 0, + "version": "0.20.2", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpsl-0.20.2-6.el8.x86_64.rpm", + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "name": "libpwquality", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "name": "libref_array", + "epoch": 0, + "version": "0.1.5", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libref_array-0.1.5-39.el8.x86_64.rpm", + "checksum": "sha256:6b740563ba5858573ff3c2d2a827aeaf6e7166178e36066755d2cde4cf8a016f", + "check_gpg": true + }, + { + "name": "librepo", + "epoch": 0, + "version": "1.12.0", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/librepo-1.12.0-3.el8.x86_64.rpm", + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "name": "libreport-filesystem", + "epoch": 0, + "version": "2.9.5", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libreport-filesystem-2.9.5-15.el8.x86_64.rpm", + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "name": "libseccomp", + "epoch": 0, + "version": "2.4.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libseccomp-2.4.3-1.el8.x86_64.rpm", + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "name": "libsecret", + "epoch": 0, + "version": "0.18.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsecret-0.18.6-1.el8.x86_64.rpm", + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "name": "libselinux", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "name": "libselinux-utils", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-utils-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "name": "libsemanage", + "epoch": 0, + "version": "2.9", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsemanage-2.9-6.el8.x86_64.rpm", + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "name": "libsepol", + "epoch": 0, + "version": "2.9", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsepol-2.9-2.el8.x86_64.rpm", + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "name": "libsigsegv", + "epoch": 0, + "version": "2.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsigsegv-2.11-5.el8.x86_64.rpm", + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "name": "libsmartcols", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmartcols-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "name": "libsolv", + "epoch": 0, + "version": "0.7.16", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsolv-0.7.16-2.el8.x86_64.rpm", + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "name": "libsoup", + "epoch": 0, + "version": "2.62.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsoup-2.62.3-2.el8.x86_64.rpm", + "checksum": "sha256:5deb66cc8e9094931cf74002186385c1ebdc022936cd8f10ec4c4675a99b9b2a", + "check_gpg": true + }, + { + "name": "libss", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libss-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "name": "libssh", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-0.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "name": "libssh-config", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-config-0.9.4-2.el8.noarch.rpm", + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "name": "libsss_autofs", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_autofs-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:1230ddb5d92fe538a0526e3a9f05563a111ae4ff1978fc8e18de889974b5b46c", + "check_gpg": true + }, + { + "name": "libsss_certmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_certmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:ef2734017b25f7e9e1abf67315a7d1c97216642b5dfb979c19b1a3f74cff1e54", + "check_gpg": true + }, + { + "name": "libsss_idmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_idmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:377ad20c1681518bff1f40884589bddc4a692506384c7676f072ddf86ae429f9", + "check_gpg": true + }, + { + "name": "libsss_nss_idmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_nss_idmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:2c6dd4f21d9c4bde29f693d32e44f0d1c5dc73d78d013767df531d69bbfc6ed8", + "check_gpg": true + }, + { + "name": "libsss_sudo", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_sudo-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:370b74a811249b8f0bdfcd34137507f058a85196775e9d0d2bb244c100d194ae", + "check_gpg": true + }, + { + "name": "libstdc++", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstdc++-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "name": "libstemmer", + "epoch": 0, + "version": "0", + "release": "10.585svn.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstemmer-0-10.585svn.el8.x86_64.rpm", + "checksum": "sha256:9b121a03314f1f0822a58059efba09944df192c35e22267f39137f70a28cda1c", + "check_gpg": true + }, + { + "name": "libsysfs", + "epoch": 0, + "version": "2.1.0", + "release": "24.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsysfs-2.1.0-24.el8.x86_64.rpm", + "checksum": "sha256:53ae3ecd59ec61852cabbd039c748ed63ceb6a88da98587d4c33323ba4095154", + "check_gpg": true + }, + { + "name": "libtalloc", + "epoch": 0, + "version": "2.3.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtalloc-2.3.1-2.el8.x86_64.rpm", + "checksum": "sha256:918518368513d162d772dfc5d16536ad2799276bcba2f47514a1c7098de2b43f", + "check_gpg": true + }, + { + "name": "libtasn1", + "epoch": 0, + "version": "4.13", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtasn1-4.13-3.el8.x86_64.rpm", + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "name": "libtdb", + "epoch": 0, + "version": "1.4.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtdb-1.4.3-1.el8.x86_64.rpm", + "checksum": "sha256:a5228fc876cffc7dc79769ada5653cb9bfb80d469fb3c9f0acc14a1a0d15782d", + "check_gpg": true + }, + { + "name": "libteam", + "epoch": 0, + "version": "1.31", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libteam-1.31-2.el8.x86_64.rpm", + "checksum": "sha256:0aaaaa29cc1bb4d358142db6eb7d12df9252a8166bf61956203878eed210785c", + "check_gpg": true + }, + { + "name": "libtevent", + "epoch": 0, + "version": "0.10.2", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtevent-0.10.2-2.el8.x86_64.rpm", + "checksum": "sha256:b8e4cfecbbe7d2d6d9f3003432e826398f6bea21d5aba11a17ee74358cb84a6e", + "check_gpg": true + }, + { + "name": "libtirpc", + "epoch": 0, + "version": "1.1.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtirpc-1.1.4-4.el8.x86_64.rpm", + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "name": "libunistring", + "epoch": 0, + "version": "0.9.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libunistring-0.9.9-3.el8.x86_64.rpm", + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "name": "libusbx", + "epoch": 0, + "version": "1.0.23", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libusbx-1.0.23-4.el8.x86_64.rpm", + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "name": "libuser", + "epoch": 0, + "version": "0.62", + "release": "23.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuser-0.62-23.el8.x86_64.rpm", + "checksum": "sha256:70b5e4e580da72969ad3bb144c15293910b7d679e195c118cee60d8320f01851", + "check_gpg": true + }, + { + "name": "libutempter", + "epoch": 0, + "version": "1.1.6", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libutempter-1.1.6-14.el8.x86_64.rpm", + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "name": "libuuid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuuid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "name": "libverto", + "epoch": 0, + "version": "0.3.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-0.3.0-5.el8.x86_64.rpm", + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "name": "libverto-libevent", + "epoch": 0, + "version": "0.3.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-libevent-0.3.0-5.el8.x86_64.rpm", + "checksum": "sha256:538899f9a39e085ef14bd34f84327c12b862981df1428bb1353ef4082ddd3a4c", + "check_gpg": true + }, + { + "name": "libxcrypt", + "epoch": 0, + "version": "4.1.1", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxcrypt-4.1.1-4.el8.x86_64.rpm", + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "name": "libxml2", + "epoch": 0, + "version": "2.9.7", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxml2-2.9.7-9.el8.x86_64.rpm", + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "name": "libyaml", + "epoch": 0, + "version": "0.1.7", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libyaml-0.1.7-5.el8.x86_64.rpm", + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "name": "libzstd", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libzstd-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "name": "linux-firmware", + "epoch": 0, + "version": "20201218", + "release": "102.git05789708.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/linux-firmware-20201218-102.git05789708.el8.noarch.rpm", + "checksum": "sha256:cad76a2802c5f355b527df3cabde70bd58b31ec4b7de3b1ac15a429cda5b9b03", + "check_gpg": true + }, + { + "name": "lmdb-libs", + "epoch": 0, + "version": "0.9.24", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lmdb-libs-0.9.24-1.el8.x86_64.rpm", + "checksum": "sha256:0064a3aeff41fb7345c061956c35e4b9d0b8802954e717491fb6eb51028d22fd", + "check_gpg": true + }, + { + "name": "logrotate", + "epoch": 0, + "version": "3.14.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/logrotate-3.14.0-4.el8.x86_64.rpm", + "checksum": "sha256:3cd092e6e03efb4bb49b91dedd52b43f891092d04a2ff040b9f2197ec2082511", + "check_gpg": true + }, + { + "name": "lshw", + "epoch": 0, + "version": "B.02.19.2", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lshw-B.02.19.2-5.el8.x86_64.rpm", + "checksum": "sha256:fda078d8edd4e0902246dd3121efb6c57cb8231dbb975380f9249c64163f0d88", + "check_gpg": true + }, + { + "name": "lsscsi", + "epoch": 0, + "version": "0.32", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lsscsi-0.32-2.el8.x86_64.rpm", + "checksum": "sha256:c8fc05dd997477fc80e2f3195e719ca2e569fc8997f05a64a13c52c8358e8239", + "check_gpg": true + }, + { + "name": "lua-libs", + "epoch": 0, + "version": "5.3.4", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lua-libs-5.3.4-11.el8.x86_64.rpm", + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "name": "lz4-libs", + "epoch": 0, + "version": "1.8.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lz4-libs-1.8.3-2.el8.x86_64.rpm", + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "name": "lzo", + "epoch": 0, + "version": "2.08", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lzo-2.08-14.el8.x86_64.rpm", + "checksum": "sha256:5c68635cb03533a38d4a42f6547c21a1d5f9952351bb01f3cf865d2621a6e634", + "check_gpg": true + }, + { + "name": "man-db", + "epoch": 0, + "version": "2.7.6.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/man-db-2.7.6.1-17.el8.x86_64.rpm", + "checksum": "sha256:a0b6a8d5530f5003f5c8d56211246cd1130a5b4dc1396dc50da70ce0e128b02c", + "check_gpg": true + }, + { + "name": "memstrack", + "epoch": 0, + "version": "0.1.11", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/memstrack-0.1.11-1.el8.x86_64.rpm", + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "name": "microcode_ctl", + "epoch": 4, + "version": "20201112", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/microcode_ctl-20201112-2.el8.x86_64.rpm", + "checksum": "sha256:bce152ddd2f05f892e5ce483a7c12606ba7d2c42108402fc9609ada04048e6df", + "check_gpg": true + }, + { + "name": "mokutil", + "epoch": 1, + "version": "0.3.0", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mokutil-0.3.0-11.el8.x86_64.rpm", + "checksum": "sha256:1c4b186665558747023a60d0d662d3780a1bc49e578062f4b70100c71ab2220c", + "check_gpg": true + }, + { + "name": "mozjs60", + "epoch": 0, + "version": "60.9.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mozjs60-60.9.0-4.el8.x86_64.rpm", + "checksum": "sha256:03b50a4ea5cf5655c67e2358fabb6e563eec4e7929e7fc6c4e92c92694f60fa0", + "check_gpg": true + }, + { + "name": "mpfr", + "epoch": 0, + "version": "3.1.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mpfr-3.1.6-1.el8.x86_64.rpm", + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "name": "ncurses", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "name": "ncurses-base", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-base-6.1-7.20180224.el8.noarch.rpm", + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "name": "ncurses-libs", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-libs-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "name": "nettle", + "epoch": 0, + "version": "3.4.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nettle-3.4.1-2.el8.x86_64.rpm", + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "name": "newt", + "epoch": 0, + "version": "0.52.20", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/newt-0.52.20-11.el8.x86_64.rpm", + "checksum": "sha256:c9df7c58da59500e1717e435c565e221daa344212db8e83eb33b6a9c8e9a67bb", + "check_gpg": true + }, + { + "name": "nfs-utils", + "epoch": 1, + "version": "2.3.3", + "release": "41.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nfs-utils-2.3.3-41.el8.x86_64.rpm", + "checksum": "sha256:58026205b6bd63438307d6afc0b0fb15d1d2d09736cbd0f8b245fadffec81003", + "check_gpg": true + }, + { + "name": "npth", + "epoch": 0, + "version": "1.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/npth-1.5-4.el8.x86_64.rpm", + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "name": "numactl-libs", + "epoch": 0, + "version": "2.0.12", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/numactl-libs-2.0.12-11.el8.x86_64.rpm", + "checksum": "sha256:5e24dd39ae59ef7b7a386f28509cc80d8fabb23f0932e52ea365cf064ff76c59", + "check_gpg": true + }, + { + "name": "openldap", + "epoch": 0, + "version": "2.4.46", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openldap-2.4.46-16.el8.x86_64.rpm", + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "name": "openssh", + "epoch": 0, + "version": "8.0p1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-8.0p1-5.el8.x86_64.rpm", + "checksum": "sha256:f8bdaf5211c6fc72c8f60c7ddd59b8ca124ab26d2670ee6490a7fabb5177d919", + "check_gpg": true + }, + { + "name": "openssh-clients", + "epoch": 0, + "version": "8.0p1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-clients-8.0p1-5.el8.x86_64.rpm", + "checksum": "sha256:a9ec13abf63c69913acc1ac7070ab315c8b5a58c6006c3dfc5b27662f7f22260", + "check_gpg": true + }, + { + "name": "openssh-server", + "epoch": 0, + "version": "8.0p1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-server-8.0p1-5.el8.x86_64.rpm", + "checksum": "sha256:173a812d859c70f8db7b014d507c5cacb76c62ab5480c44be217f880465f42c7", + "check_gpg": true + }, + { + "name": "openssl", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "name": "openssl-libs", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-libs-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "name": "openssl-pkcs11", + "epoch": 0, + "version": "0.4.10", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-pkcs11-0.4.10-2.el8.x86_64.rpm", + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "name": "os-prober", + "epoch": 0, + "version": "1.74", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/os-prober-1.74-6.el8.x86_64.rpm", + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "name": "p11-kit", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "name": "p11-kit-trust", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-trust-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "name": "pam", + "epoch": 0, + "version": "1.3.1", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pam-1.3.1-14.el8.x86_64.rpm", + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "name": "parted", + "epoch": 0, + "version": "3.2", + "release": "38.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/parted-3.2-38.el8.x86_64.rpm", + "checksum": "sha256:4c5c7f3773c634c054b0a5fc1b40d0a8448b44bb5aff410bfa88facf9e2059ff", + "check_gpg": true + }, + { + "name": "passwd", + "epoch": 0, + "version": "0.80", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/passwd-0.80-3.el8.x86_64.rpm", + "checksum": "sha256:9c849b1d4fd605ae749fd9d090715b6034520af871c23729cd4003f22e0990de", + "check_gpg": true + }, + { + "name": "pciutils", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "name": "pciutils-libs", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-libs-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "name": "pcre", + "epoch": 0, + "version": "8.42", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre-8.42-4.el8.x86_64.rpm", + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "name": "pcre2", + "epoch": 0, + "version": "10.32", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre2-10.32-2.el8.x86_64.rpm", + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "name": "pigz", + "epoch": 0, + "version": "2.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pigz-2.4-4.el8.x86_64.rpm", + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "name": "platform-python", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "name": "platform-python-pip", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-pip-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "name": "platform-python-setuptools", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-setuptools-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "name": "policycoreutils", + "epoch": 0, + "version": "2.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-2.9-12.el8.x86_64.rpm", + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "name": "policycoreutils-python-utils", + "epoch": 0, + "version": "2.9", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-python-utils-2.9-12.el8.noarch.rpm", + "checksum": "sha256:44c8d429eda78196b566c95603bdbcc23483c1dab3dd6e0efae29aa6d848a431", + "check_gpg": true + }, + { + "name": "polkit", + "epoch": 0, + "version": "0.115", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-0.115-11.el8.x86_64.rpm", + "checksum": "sha256:09128c1b70cb8ea1a9bfbc6f3314dd5a8ba0c1a1886a82cd0fbe6845d48215dc", + "check_gpg": true + }, + { + "name": "polkit-libs", + "epoch": 0, + "version": "0.115", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-libs-0.115-11.el8.x86_64.rpm", + "checksum": "sha256:8d6742dce47f8ed65e222864872e919f30c678f5df1e99c134fba8a0fc7f454d", + "check_gpg": true + }, + { + "name": "polkit-pkla-compat", + "epoch": 0, + "version": "0.1", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-pkla-compat-0.1-12.el8.x86_64.rpm", + "checksum": "sha256:e7ee4b6d6456cb7da0332f5a6fb8a7c47df977bcf616f12f0455413765367e89", + "check_gpg": true + }, + { + "name": "popt", + "epoch": 0, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/popt-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "name": "prefixdevname", + "epoch": 0, + "version": "0.1.0", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/prefixdevname-0.1.0-6.el8.x86_64.rpm", + "checksum": "sha256:776a182ecaab9f86c7e869db2eb2deea1f291caee701cddbd752da8cd3c57458", + "check_gpg": true + }, + { + "name": "procps-ng", + "epoch": 0, + "version": "3.3.15", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/procps-ng-3.3.15-6.el8.x86_64.rpm", + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "name": "psmisc", + "epoch": 0, + "version": "23.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/psmisc-23.1-5.el8.x86_64.rpm", + "checksum": "sha256:9d433d8c058e59c891c0852b95b3b87795ea30a85889c77ba0b12f965517d626", + "check_gpg": true + }, + { + "name": "publicsuffix-list-dafsa", + "epoch": 0, + "version": "20180723", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20180723-1.el8.noarch.rpm", + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "name": "python3-audit", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-audit-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:addf80c52d794aed47874eb9d5ddbbaa90cb248fda1634d793054a41da0d92d7", + "check_gpg": true + }, + { + "name": "python3-cffi", + "epoch": 0, + "version": "1.11.5", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-cffi-1.11.5-5.el8.x86_64.rpm", + "checksum": "sha256:07ed1209e898552e6aeac0e6d148271d562c576f7d903cb7a99a697643068f58", + "check_gpg": true + }, + { + "name": "python3-chardet", + "epoch": 0, + "version": "3.0.4", + "release": "7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-chardet-3.0.4-7.el8.noarch.rpm", + "checksum": "sha256:176ffcb2cf0fdcbdd2d8119cbd98eef60a30fdb0fb065a9382d2c95e90c79652", + "check_gpg": true + }, + { + "name": "python3-configobj", + "epoch": 0, + "version": "5.0.6", + "release": "11.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-configobj-5.0.6-11.el8.noarch.rpm", + "checksum": "sha256:1bd969e0521820374122f5132e5998d9bd2ab185be66565a7266096297419c8e", + "check_gpg": true + }, + { + "name": "python3-cryptography", + "epoch": 0, + "version": "3.2.1", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-cryptography-3.2.1-3.el8.x86_64.rpm", + "checksum": "sha256:2ebe28be2e0a413af31a0f49b6a2774670067cdbe48e723040b19922ae205d6b", + "check_gpg": true + }, + { + "name": "python3-dateutil", + "epoch": 1, + "version": "2.6.1", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dateutil-2.6.1-6.el8.noarch.rpm", + "checksum": "sha256:c5b5967a094ced90899052a82e2c245529b75ba3f46e0ce1a89cfc95edb935ea", + "check_gpg": true + }, + { + "name": "python3-dbus", + "epoch": 0, + "version": "1.2.4", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dbus-1.2.4-15.el8.x86_64.rpm", + "checksum": "sha256:066f254f9ac7712b44214816de907a87eb8dfd0d2ea9570a7513db9a6617ba26", + "check_gpg": true + }, + { + "name": "python3-decorator", + "epoch": 0, + "version": "4.2.1", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-decorator-4.2.1-2.el8.noarch.rpm", + "checksum": "sha256:0e9a8a0f823bf0ef948862f0ccb62353460bd07931e756c98f23908c1c526578", + "check_gpg": true + }, + { + "name": "python3-dmidecode", + "epoch": 0, + "version": "3.12.2", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dmidecode-3.12.2-15.el8.x86_64.rpm", + "checksum": "sha256:c39a53566ad66d6db9e101ca9a6db316843a1d1f6f5ac5f2286c6028638a8ab7", + "check_gpg": true + }, + { + "name": "python3-dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "name": "python3-dnf-plugins-core", + "epoch": 0, + "version": "4.0.18", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-plugins-core-4.0.18-3.el8.noarch.rpm", + "checksum": "sha256:941a9068b8fa524ecac58d37f941b95fbdcd9e38bd87c7f9d1330c5925a52a20", + "check_gpg": true + }, + { + "name": "python3-ethtool", + "epoch": 0, + "version": "0.14", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-ethtool-0.14-3.el8.x86_64.rpm", + "checksum": "sha256:c746d43bd63dd184b8c585dd7323e261567928e521e830720d4754fca76157e0", + "check_gpg": true + }, + { + "name": "python3-gobject-base", + "epoch": 0, + "version": "3.28.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gobject-base-3.28.3-2.el8.x86_64.rpm", + "checksum": "sha256:15dc15a5be210707852f051f4d09949c063a7283edc7d4ca3d4289eedcc0b509", + "check_gpg": true + }, + { + "name": "python3-gpg", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gpg-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "name": "python3-hawkey", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-hawkey-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "name": "python3-idna", + "epoch": 0, + "version": "2.5", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-idna-2.5-5.el8.noarch.rpm", + "checksum": "sha256:78c43d8a15ca018de1803e4baac5819e1baab1963fd31f1e44e54e8a573acbfc", + "check_gpg": true + }, + { + "name": "python3-iniparse", + "epoch": 0, + "version": "0.4", + "release": "31.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-iniparse-0.4-31.el8.noarch.rpm", + "checksum": "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178", + "check_gpg": true + }, + { + "name": "python3-inotify", + "epoch": 0, + "version": "0.9.6", + "release": "13.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-inotify-0.9.6-13.el8.noarch.rpm", + "checksum": "sha256:109d6db30e5515601b00954b2fd8750c421730a18afc12e1fa7781e24e5b0863", + "check_gpg": true + }, + { + "name": "python3-jwt", + "epoch": 0, + "version": "1.6.1", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-jwt-1.6.1-2.el8.noarch.rpm", + "checksum": "sha256:ebeb05a4a9cdd5d060859eabac1349029c0120615c98fc939e26664c030655c1", + "check_gpg": true + }, + { + "name": "python3-libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "name": "python3-libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "name": "python3-librepo", + "epoch": 0, + "version": "1.12.0", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-librepo-1.12.0-3.el8.x86_64.rpm", + "checksum": "sha256:acec114d3d071379d70634e0c9c097cce38aa418500d010a8057b3fa1f69b27e", + "check_gpg": true + }, + { + "name": "python3-libs", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libs-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "name": "python3-libselinux", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libselinux-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:59ba5bf69953a5a2e902b0f08b7187b66d84968852d46a3579a059477547d1a0", + "check_gpg": true + }, + { + "name": "python3-libsemanage", + "epoch": 0, + "version": "2.9", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libsemanage-2.9-6.el8.x86_64.rpm", + "checksum": "sha256:451d0cb6e2284578e3279b4cbb5ec98e9d98a687556c6b424adf8f1282d4ef58", + "check_gpg": true + }, + { + "name": "python3-libxml2", + "epoch": 0, + "version": "2.9.7", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libxml2-2.9.7-9.el8.x86_64.rpm", + "checksum": "sha256:78ade36bcaa352e60732f94d0f668ea62a34e88aa2cadd4cb0d1ec0f21392525", + "check_gpg": true + }, + { + "name": "python3-linux-procfs", + "epoch": 0, + "version": "0.6.3", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-linux-procfs-0.6.3-1.el8.noarch.rpm", + "checksum": "sha256:dc835194ecfa6ebda81e0a764c953eff3422a61863e9a3e0dc74ea4cae7a4d94", + "check_gpg": true + }, + { + "name": "python3-oauthlib", + "epoch": 0, + "version": "2.1.0", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-oauthlib-2.1.0-1.el8.noarch.rpm", + "checksum": "sha256:20874a9d40b12125c9e5b97fe4ccda3f94acbc03da1dec7299123901f5b56631", + "check_gpg": true + }, + { + "name": "python3-perf", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-perf-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:6aa1e29a4d805fc36c3196788fe78cb4552e2ebec8b3d0f8d32974e6a97025f2", + "check_gpg": true + }, + { + "name": "python3-pip-wheel", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pip-wheel-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "name": "python3-ply", + "epoch": 0, + "version": "3.9", + "release": "9.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-ply-3.9-9.el8.noarch.rpm", + "checksum": "sha256:d1e8c7a00924d1a6dee44ade189025853a501d4f77c73f3bfc006aa907d97daf", + "check_gpg": true + }, + { + "name": "python3-policycoreutils", + "epoch": 0, + "version": "2.9", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-policycoreutils-2.9-12.el8.noarch.rpm", + "checksum": "sha256:142d4fe6236cdeac3f967517085d99649215d75026fbe00746e0c5214d7d20df", + "check_gpg": true + }, + { + "name": "python3-pycparser", + "epoch": 0, + "version": "2.14", + "release": "14.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pycparser-2.14-14.el8.noarch.rpm", + "checksum": "sha256:8891a9a4707611c13a5693b195201dd940254ffdb03cf5742952329282bb8cb7", + "check_gpg": true + }, + { + "name": "python3-pysocks", + "epoch": 0, + "version": "1.6.8", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pysocks-1.6.8-3.el8.noarch.rpm", + "checksum": "sha256:7f506879c64e0bb4d98782d025f46fb9a07517487ae4cbebbb3985a98f4e2154", + "check_gpg": true + }, + { + "name": "python3-pyudev", + "epoch": 0, + "version": "0.21.0", + "release": "7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pyudev-0.21.0-7.el8.noarch.rpm", + "checksum": "sha256:aa0007192287faeaecc72d9fa48efdb3108c764d450dc8fea65474476da32c45", + "check_gpg": true + }, + { + "name": "python3-pyyaml", + "epoch": 0, + "version": "3.12", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pyyaml-3.12-12.el8.x86_64.rpm", + "checksum": "sha256:525393e4d658e395c6280bd2ff4afe54999796c4722986325297ba4bfade3ea5", + "check_gpg": true + }, + { + "name": "python3-requests", + "epoch": 0, + "version": "2.20.0", + "release": "2.1.el8_1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-requests-2.20.0-2.1.el8_1.noarch.rpm", + "checksum": "sha256:003ee19ec5b88de212c3246bdfdb3e97a9910a25a219fd7cf5030b7bc666fea9", + "check_gpg": true + }, + { + "name": "python3-rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "name": "python3-schedutils", + "epoch": 0, + "version": "0.6", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-schedutils-0.6-6.el8.x86_64.rpm", + "checksum": "sha256:bafc2680bd298f0fac70854224ef03b7098d4c46ee35e270f6fd58d2e812ff1b", + "check_gpg": true + }, + { + "name": "python3-setools", + "epoch": 0, + "version": "4.3.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setools-4.3.0-2.el8.x86_64.rpm", + "checksum": "sha256:f56992135d789147285215cb062960fedcdf4b3296c62658fa430caa2c20165c", + "check_gpg": true + }, + { + "name": "python3-setuptools-wheel", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "name": "python3-six", + "epoch": 0, + "version": "1.11.0", + "release": "8.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-six-1.11.0-8.el8.noarch.rpm", + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "name": "python3-slip", + "epoch": 0, + "version": "0.6.4", + "release": "11.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-slip-0.6.4-11.el8.noarch.rpm", + "checksum": "sha256:233e5f78027b684e5aaac1395cc574aea3039059bf86eb4494422bc74216a396", + "check_gpg": true + }, + { + "name": "python3-slip-dbus", + "epoch": 0, + "version": "0.6.4", + "release": "11.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-slip-dbus-0.6.4-11.el8.noarch.rpm", + "checksum": "sha256:563b3741d26b6af963fdb7b0634e0791445a707d0b6093ac71c3224299241639", + "check_gpg": true + }, + { + "name": "python3-subscription-manager-rhsm", + "epoch": 0, + "version": "1.28.10", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-subscription-manager-rhsm-1.28.10-1.el8.x86_64.rpm", + "checksum": "sha256:1cef673b1e520903e3b1c17d0d284d205a6f949908c351618dae892f40fb011b", + "check_gpg": true + }, + { + "name": "python3-syspurpose", + "epoch": 0, + "version": "1.28.10", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-syspurpose-1.28.10-1.el8.x86_64.rpm", + "checksum": "sha256:017e78c5e23f98d6ee299255fc7be5381dba63d169e3f5dcb1de9d21b5d30ba5", + "check_gpg": true + }, + { + "name": "python3-urllib3", + "epoch": 0, + "version": "1.24.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-urllib3-1.24.2-5.el8.noarch.rpm", + "checksum": "sha256:aa1835fd302a37b84ac256db5dd0de09bd9883a5a07775aedb491faf46b18ee0", + "check_gpg": true + }, + { + "name": "quota", + "epoch": 1, + "version": "4.04", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/quota-4.04-12.el8.x86_64.rpm", + "checksum": "sha256:d46e4c5067f182974d74691885cef31100c9cef59966c4ef399a284be3b91608", + "check_gpg": true + }, + { + "name": "quota-nls", + "epoch": 1, + "version": "4.04", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/quota-nls-4.04-12.el8.noarch.rpm", + "checksum": "sha256:ff3846c5910773af5466b5c3640ffd3c867c2bcbcccc11a7c11eb4438d9e3ae2", + "check_gpg": true + }, + { + "name": "rdma-core", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rdma-core-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "name": "readline", + "epoch": 0, + "version": "7.0", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/readline-7.0-10.el8.x86_64.rpm", + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "name": "rhsm-icons", + "epoch": 0, + "version": "1.28.10", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rhsm-icons-1.28.10-1.el8.noarch.rpm", + "checksum": "sha256:b028aa2b393a124c5bf8665f9111caa9e4c2aa757d880b100c1616c207848a3f", + "check_gpg": true + }, + { + "name": "rootfiles", + "epoch": 0, + "version": "8.1", + "release": "22.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rootfiles-8.1-22.el8.noarch.rpm", + "checksum": "sha256:d967d6bbb33bf7a295a64807f81875c84e82a8ecc59b6c72fe955141b1660d39", + "check_gpg": true + }, + { + "name": "rpcbind", + "epoch": 0, + "version": "1.2.5", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpcbind-1.2.5-8.el8.x86_64.rpm", + "checksum": "sha256:e76ffaf54db6ac36f0aa56c8013431c352c6187c8d674c6d468e25c573e31597", + "check_gpg": true + }, + { + "name": "rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "name": "rpm-build-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-build-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "name": "rpm-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "name": "rpm-plugin-selinux", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "name": "rpm-plugin-systemd-inhibit", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "name": "rsync", + "epoch": 0, + "version": "3.1.3", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rsync-3.1.3-12.el8.x86_64.rpm", + "checksum": "sha256:7443e0df4d55a40a0ba3cec4cd4da620200a255605e31a137bee001cb4b43af3", + "check_gpg": true + }, + { + "name": "sed", + "epoch": 0, + "version": "4.5", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sed-4.5-2.el8.x86_64.rpm", + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "name": "selinux-policy", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "name": "selinux-policy-targeted", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-targeted-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "name": "setup", + "epoch": 0, + "version": "2.12.2", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/setup-2.12.2-6.el8.noarch.rpm", + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "name": "sg3_utils", + "epoch": 0, + "version": "1.44", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-1.44-5.el8.x86_64.rpm", + "checksum": "sha256:a1d1bac6c4710e0a1a6e8a507b06a630dda6687f12642be0847768c14ce7271e", + "check_gpg": true + }, + { + "name": "sg3_utils-libs", + "epoch": 0, + "version": "1.44", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-libs-1.44-5.el8.x86_64.rpm", + "checksum": "sha256:774d214a379c0b729d7e989f9d5094fdfda7df68c1e792ba9200542032f04c91", + "check_gpg": true + }, + { + "name": "shadow-utils", + "epoch": 2, + "version": "4.6", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shadow-utils-4.6-12.el8.x86_64.rpm", + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "name": "shared-mime-info", + "epoch": 0, + "version": "1.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shared-mime-info-1.9-3.el8.x86_64.rpm", + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "name": "shim-x64", + "epoch": 0, + "version": "15", + "release": "15.el8_2", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shim-x64-15-15.el8_2.x86_64.rpm", + "checksum": "sha256:f0346c485da9a7e8c8d93624f335cbb25790a7f37c6c03e43232517bb73bbacb", + "check_gpg": true + }, + { + "name": "slang", + "epoch": 0, + "version": "2.3.2", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/slang-2.3.2-3.el8.x86_64.rpm", + "checksum": "sha256:be628d396303d6547b9d7239897fbf4fad7447375cb5e898b394a458f420b550", + "check_gpg": true + }, + { + "name": "snappy", + "epoch": 0, + "version": "1.1.8", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/snappy-1.1.8-3.el8.x86_64.rpm", + "checksum": "sha256:839c62cd7fc7e152decded6f28c80b5f7b8f34a5e319057867b38b26512cee67", + "check_gpg": true + }, + { + "name": "sos", + "epoch": 0, + "version": "4.0", + "release": "7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sos-4.0-7.el8.noarch.rpm", + "checksum": "sha256:8846acb4df4306e2274bd8a496e0c47ee1fea1d211f6d3369e261ec863fddcb1", + "check_gpg": true + }, + { + "name": "sqlite-libs", + "epoch": 0, + "version": "3.26.0", + "release": "13.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sqlite-libs-3.26.0-13.el8.x86_64.rpm", + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "name": "squashfs-tools", + "epoch": 0, + "version": "4.3", + "release": "19.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/squashfs-tools-4.3-19.el8.x86_64.rpm", + "checksum": "sha256:a0c8f83cef355dd98d7750e3d8eb3e9f3e9f8f5e9a3ee441cb4bc4014c647e31", + "check_gpg": true + }, + { + "name": "sssd-client", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-client-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:b1871d8ac1abaf5e809448c5f37e32487f177aee3080d9033efb4b160f755aba", + "check_gpg": true + }, + { + "name": "sssd-common", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-common-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:fe944d9dd89d550d2aa44d33cfeb11c803b074bfcda0dbbad486c392bf1cc9d0", + "check_gpg": true + }, + { + "name": "sssd-kcm", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-kcm-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:6cd7444c22d56201f61fed5fd741b44cfaae18d95b811d25c5f0ffe2f8e55a8f", + "check_gpg": true + }, + { + "name": "sssd-nfs-idmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-nfs-idmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:7115a12fad224b469419e19ee5c0d38322f467fe7a1c441c1b0239b197baac2a", + "check_gpg": true + }, + { + "name": "subscription-manager", + "epoch": 0, + "version": "1.28.10", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/subscription-manager-1.28.10-1.el8.x86_64.rpm", + "checksum": "sha256:8cad468b07c285444728b39817df72c77f7a96e06367e63f09ac979d3349d386", + "check_gpg": true + }, + { + "name": "subscription-manager-cockpit", + "epoch": 0, + "version": "1.28.10", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/subscription-manager-cockpit-1.28.10-1.el8.noarch.rpm", + "checksum": "sha256:d367fa4bad5f6494c390791b570c43ca15fc65db3aa14544ead87571364cd426", + "check_gpg": true + }, + { + "name": "subscription-manager-rhsm-certificates", + "epoch": 0, + "version": "1.28.10", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/subscription-manager-rhsm-certificates-1.28.10-1.el8.x86_64.rpm", + "checksum": "sha256:0cb3dccf2c3bd45c773dd3fbf14bd9d7e7a40fe33edd36077738066af3c95517", + "check_gpg": true + }, + { + "name": "sudo", + "epoch": 0, + "version": "1.8.29", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sudo-1.8.29-7.el8.x86_64.rpm", + "checksum": "sha256:cbcade4487fbf372b487b9f82ed85e04ff037551c96c4b461abc3716338ff9c4", + "check_gpg": true + }, + { + "name": "systemd", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-239-44.el8.x86_64.rpm", + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "name": "systemd-libs", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-libs-239-44.el8.x86_64.rpm", + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "name": "systemd-pam", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-pam-239-44.el8.x86_64.rpm", + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "name": "systemd-udev", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-udev-239-44.el8.x86_64.rpm", + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "name": "tar", + "epoch": 2, + "version": "1.30", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tar-1.30-5.el8.x86_64.rpm", + "checksum": "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393", + "check_gpg": true + }, + { + "name": "teamd", + "epoch": 0, + "version": "1.31", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/teamd-1.31-2.el8.x86_64.rpm", + "checksum": "sha256:9664aba8dfd6bd6fda669fcf8f6ff04914305a6373b09d8b675322c7337b9c36", + "check_gpg": true + }, + { + "name": "timedatex", + "epoch": 0, + "version": "0.5", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/timedatex-0.5-3.el8.x86_64.rpm", + "checksum": "sha256:6fc3208be9c78bf1f843f9f7d4d3f04096f116dc056285142235bf76472ba382", + "check_gpg": true + }, + { + "name": "tpm2-tss", + "epoch": 0, + "version": "2.3.2", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tpm2-tss-2.3.2-3.el8.x86_64.rpm", + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "name": "trousers", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "name": "trousers-lib", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-lib-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "name": "tuned", + "epoch": 0, + "version": "2.15.0", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tuned-2.15.0-1.el8.noarch.rpm", + "checksum": "sha256:b3bc3f1c9e8028a177599f1ed9cb6c31d2d6e75111e34623d25e736d3ddcf8fd", + "check_gpg": true + }, + { + "name": "tzdata", + "epoch": 0, + "version": "2021a", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tzdata-2021a-1.el8.noarch.rpm", + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "name": "usermode", + "epoch": 0, + "version": "1.113", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/usermode-1.113-1.el8.x86_64.rpm", + "checksum": "sha256:eec162a2757ee2ffbbee95e1dbcd33318119e5113e53af877ce9416529a19082", + "check_gpg": true + }, + { + "name": "util-linux", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/util-linux-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "name": "vim-minimal", + "epoch": 2, + "version": "8.0.1763", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/vim-minimal-8.0.1763-15.el8.x86_64.rpm", + "checksum": "sha256:3efd6a2548813167fe37718546bc768a5aa8ba59aa80edcecd8ba408bec329b0", + "check_gpg": true + }, + { + "name": "virt-what", + "epoch": 0, + "version": "1.18", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/virt-what-1.18-6.el8.x86_64.rpm", + "checksum": "sha256:4c02e3e1808f0189269b242242468a364007a8f12c6e38afc24b599b2848b0fa", + "check_gpg": true + }, + { + "name": "which", + "epoch": 0, + "version": "2.21", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/which-2.21-12.el8.x86_64.rpm", + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "name": "xfsprogs", + "epoch": 0, + "version": "5.0.0", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xfsprogs-5.0.0-8.el8.x86_64.rpm", + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "name": "xz", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "name": "xz-libs", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-libs-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "name": "yum", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/yum-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:4302361b12eefd5574f57bf0c49c0e5bdc738eddda33634af8b35adfb53a52a1", + "check_gpg": true + }, + { + "name": "yum-utils", + "epoch": 0, + "version": "4.0.18", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/yum-utils-4.0.18-3.el8.noarch.rpm", + "checksum": "sha256:bad350fece3f69757d9345ad97acdf1ba72e8d09ed2162fbfe4cc128039594e1", + "check_gpg": true + }, + { + "name": "zlib", + "epoch": 0, + "version": "1.2.11", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/zlib-1.2.11-17.el8.x86_64.rpm", + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "name": "PackageKit", + "epoch": 0, + "version": "1.1.12", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/PackageKit-1.1.12-6.el8.x86_64.rpm", + "checksum": "sha256:b7dbc8efe4e3de5b47742959530182be455a17a7fdc3cd289d15316ae8f54223", + "check_gpg": true + }, + { + "name": "PackageKit-glib", + "epoch": 0, + "version": "1.1.12", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/PackageKit-glib-1.1.12-6.el8.x86_64.rpm", + "checksum": "sha256:babad6e897ab2e5b46386edaf34dbc77649bb3705df50190c022d4b6f54f15de", + "check_gpg": true + }, + { + "name": "abattis-cantarell-fonts", + "epoch": 0, + "version": "0.0.25", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/abattis-cantarell-fonts-0.0.25-6.el8.noarch.rpm", + "checksum": "sha256:11838afbfab4da7d5fa6e01046f76cce0b0a0c174a87c522eba440fce16e316f", + "check_gpg": true + }, + { + "name": "authselect-compat", + "epoch": 0, + "version": "1.2.2", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/authselect-compat-1.2.2-1.el8.x86_64.rpm", + "checksum": "sha256:8cb26212a1235f514b9529868ca86e119ad269755ba4c5e5cf1832523a4efc14", + "check_gpg": true + }, + { + "name": "cairo", + "epoch": 0, + "version": "1.15.12", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cairo-1.15.12-3.el8.x86_64.rpm", + "checksum": "sha256:2fcd7a063cab2e103fd4fdf8f4c63d09b9f3d60759c3b0982c75ed9a9e57bdf8", + "check_gpg": true + }, + { + "name": "cairo-gobject", + "epoch": 0, + "version": "1.15.12", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cairo-gobject-1.15.12-3.el8.x86_64.rpm", + "checksum": "sha256:ee4413fda60078f82c3b209557f0fc730871bb2a24cc380db6d01b511322ac85", + "check_gpg": true + }, + { + "name": "centos-logos", + "epoch": 0, + "version": "82.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/centos-logos-82.0-2.el8.x86_64.rpm", + "checksum": "sha256:16d05b70027f6e2879e84887c028043617b899fe3966c36e54c0a7078fbcb411", + "check_gpg": true + }, + { + "name": "cloud-init", + "epoch": 0, + "version": "20.3", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cloud-init-20.3-10.el8.noarch.rpm", + "checksum": "sha256:dc4f0cc77cf4c89469cf0f9c88b52f2c8c2c35f4e6d714bbdae2083440483311", + "check_gpg": true + }, + { + "name": "cloud-utils-growpart", + "epoch": 0, + "version": "0.31", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cloud-utils-growpart-0.31-1.el8.noarch.rpm", + "checksum": "sha256:7800dfd0d4769a898d11db330fdb5b19614533628a45fe91cce406d6cd1f0c71", + "check_gpg": true + }, + { + "name": "geolite2-city", + "epoch": 0, + "version": "20180605", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-city-20180605-1.el8.noarch.rpm", + "checksum": "sha256:cad86777bcb265db0da766952ff63e8d33f0fd4f3b90b22d0a1da587a785db44", + "check_gpg": true + }, + { + "name": "geolite2-country", + "epoch": 0, + "version": "20180605", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-country-20180605-1.el8.noarch.rpm", + "checksum": "sha256:67419432fe7d373f8e5ddaa7b0dd1c25389608bf2f4ee76dbabcc2d96eb8c9d0", + "check_gpg": true + }, + { + "name": "libX11", + "epoch": 0, + "version": "1.6.8", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libX11-1.6.8-4.el8.x86_64.rpm", + "checksum": "sha256:41a5551a1bdf84359c3f86f08bb1e5c13c0bc1e057ae5d9f0cdf9930afeb37a1", + "check_gpg": true + }, + { + "name": "libX11-common", + "epoch": 0, + "version": "1.6.8", + "release": "4.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libX11-common-1.6.8-4.el8.noarch.rpm", + "checksum": "sha256:5f445b2b2a4bdeabd555e25dfa10119d9f4e4e500d1c4492219dd8647f119ce2", + "check_gpg": true + }, + { + "name": "libXau", + "epoch": 0, + "version": "1.0.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXau-1.0.9-3.el8.x86_64.rpm", + "checksum": "sha256:49d972c660b9238dd1d58ab5952285b77e440820bf4563cce2b5ecd2f6ceba78", + "check_gpg": true + }, + { + "name": "libXext", + "epoch": 0, + "version": "1.3.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXext-1.3.4-1.el8.x86_64.rpm", + "checksum": "sha256:9869db60ee2b6d8f2115937857fb0586802720a75e043baf21514011a9fa79aa", + "check_gpg": true + }, + { + "name": "libXrender", + "epoch": 0, + "version": "0.9.10", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXrender-0.9.10-7.el8.x86_64.rpm", + "checksum": "sha256:11ac209220f3a53a762adebb4eeb43190e02ef7cdad2c54bcb474b206f7eb6f2", + "check_gpg": true + }, + { + "name": "libestr", + "epoch": 0, + "version": "0.1.10", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libestr-0.1.10-1.el8.x86_64.rpm", + "checksum": "sha256:7bc2e2a25b04b52a4ec5de2858e75eb07f16495d4de5f7ce926777130302cfe3", + "check_gpg": true + }, + { + "name": "libfastjson", + "epoch": 0, + "version": "0.99.8", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libfastjson-0.99.8-2.el8.x86_64.rpm", + "checksum": "sha256:105beb1a237e66802e64e620f79b357dfc8f3bb8952ac2f293548f1d68ca40b1", + "check_gpg": true + }, + { + "name": "libmaxminddb", + "epoch": 0, + "version": "1.2.0", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libmaxminddb-1.2.0-10.el8.x86_64.rpm", + "checksum": "sha256:19ca7ab9cb2e39ec452ed1424f828ec464266094e31903301680d5a5d0e2ac2c", + "check_gpg": true + }, + { + "name": "libxcb", + "epoch": 0, + "version": "1.13.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxcb-1.13.1-1.el8.x86_64.rpm", + "checksum": "sha256:0221e6e3671c2bd130e9519a7b352404b7e510584b4707d38e1a733e19c7f74f", + "check_gpg": true + }, + { + "name": "libxkbcommon", + "epoch": 0, + "version": "0.9.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxkbcommon-0.9.1-1.el8.x86_64.rpm", + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "name": "oddjob", + "epoch": 0, + "version": "0.34.7", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/oddjob-0.34.7-1.el8.x86_64.rpm", + "checksum": "sha256:2fbf7e0ba8e8249b45392720a851905a42de547e1b760d461a799e2d1273cd97", + "check_gpg": true + }, + { + "name": "oddjob-mkhomedir", + "epoch": 0, + "version": "0.34.7", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/oddjob-mkhomedir-0.34.7-1.el8.x86_64.rpm", + "checksum": "sha256:ad2fb5876a4be399a0bcbb1b45f796229186b557d100c5f8f9017955dfd20065", + "check_gpg": true + }, + { + "name": "pinentry", + "epoch": 0, + "version": "1.1.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pinentry-1.1.0-2.el8.x86_64.rpm", + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "name": "pixman", + "epoch": 0, + "version": "0.38.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pixman-0.38.4-1.el8.x86_64.rpm", + "checksum": "sha256:ddbbf3a8191dbc1a9fcb67ccf9cea0d34dbe9bbb74780e1359933cd03ee24451", + "check_gpg": true + }, + { + "name": "python3-babel", + "epoch": 0, + "version": "2.5.1", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-babel-2.5.1-5.el8.noarch.rpm", + "checksum": "sha256:9dbf3ceb7de5a727f1a36edd5add73dcd96c83f24afc81d78e254b518551da96", + "check_gpg": true + }, + { + "name": "python3-cairo", + "epoch": 0, + "version": "1.16.3", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-cairo-1.16.3-6.el8.x86_64.rpm", + "checksum": "sha256:ce43ade7d1cb2519c12119621990ac8075c2f9e7577c739990ca949d6c42737a", + "check_gpg": true + }, + { + "name": "python3-gobject", + "epoch": 0, + "version": "3.28.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-gobject-3.28.3-2.el8.x86_64.rpm", + "checksum": "sha256:4e1b66f11f9e38bbd4a83aaf20f773925522a32b9fb1d0d75b3cca435556ff02", + "check_gpg": true + }, + { + "name": "python3-jinja2", + "epoch": 0, + "version": "2.10.1", + "release": "2.el8_0", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jinja2-2.10.1-2.el8_0.noarch.rpm", + "checksum": "sha256:5f4f256128dba88a13599d6458908c24c0e9c18d8979ae44bf5734da8e7cab70", + "check_gpg": true + }, + { + "name": "python3-jsonpatch", + "epoch": 0, + "version": "1.21", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonpatch-1.21-2.el8.noarch.rpm", + "checksum": "sha256:85eb614fc608f3b3f4bbd08d4a3b0ff6af188677ea4e009be021680c521cedae", + "check_gpg": true + }, + { + "name": "python3-jsonpointer", + "epoch": 0, + "version": "1.10", + "release": "11.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonpointer-1.10-11.el8.noarch.rpm", + "checksum": "sha256:60b0cbc5e435be346bb06f45f3336f8936d7362022d8bceda80ff16bc3fb7dd2", + "check_gpg": true + }, + { + "name": "python3-jsonschema", + "epoch": 0, + "version": "2.6.0", + "release": "4.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonschema-2.6.0-4.el8.noarch.rpm", + "checksum": "sha256:0feac495306bbe6e3149a352025bea8d23cda512859a230cbd3f510cf48caaf7", + "check_gpg": true + }, + { + "name": "python3-markupsafe", + "epoch": 0, + "version": "0.23", + "release": "19.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-markupsafe-0.23-19.el8.x86_64.rpm", + "checksum": "sha256:9c7a5a6f73c8e32559226c54d229cb25304a81a853af22d9f829b9bb09b21f53", + "check_gpg": true + }, + { + "name": "python3-pexpect", + "epoch": 0, + "version": "4.3.1", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pexpect-4.3.1-3.el8.noarch.rpm", + "checksum": "sha256:0bc637f0d028043e8388b083cdd8d0a0acea7fdbc79c0bc9401dfb02c20fb817", + "check_gpg": true + }, + { + "name": "python3-prettytable", + "epoch": 0, + "version": "0.7.2", + "release": "14.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-prettytable-0.7.2-14.el8.noarch.rpm", + "checksum": "sha256:1b53c868277dec628058b31b1a8a8a2ccd8efe832ce9694805b5f82564136eb3", + "check_gpg": true + }, + { + "name": "python3-ptyprocess", + "epoch": 0, + "version": "0.5.2", + "release": "4.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-ptyprocess-0.5.2-4.el8.noarch.rpm", + "checksum": "sha256:499e48b35f3b5f5da45031fa78fba559fee6a480ecb106e6c300eb8344510958", + "check_gpg": true + }, + { + "name": "python3-pydbus", + "epoch": 0, + "version": "0.6.0", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pydbus-0.6.0-5.el8.noarch.rpm", + "checksum": "sha256:bfa39369bd3c36833126b6f46b747de0736a66835d97196195c0810161c24549", + "check_gpg": true + }, + { + "name": "python3-pyserial", + "epoch": 0, + "version": "3.1.1", + "release": "8.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pyserial-3.1.1-8.el8.noarch.rpm", + "checksum": "sha256:82ce159a9e4e4b6b4fdce9ad954aa507f67108430bd261a4dcd826e44d0152a4", + "check_gpg": true + }, + { + "name": "python3-pytz", + "epoch": 0, + "version": "2017.2", + "release": "9.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pytz-2017.2-9.el8.noarch.rpm", + "checksum": "sha256:0edde19e0c027c8cff31b82e1f4b0b198c00bf924047fcf4dd610a7d4965ab52", + "check_gpg": true + }, + { + "name": "python3-systemd", + "epoch": 0, + "version": "234", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-systemd-234-8.el8.x86_64.rpm", + "checksum": "sha256:6ef6573d410f9e9dfa4bb4a4e1b2ff2f7555b50b1fc4b2ff8fb890e46b4b8d8a", + "check_gpg": true + }, + { + "name": "python3-unbound", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-unbound-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "name": "qemu-guest-agent", + "epoch": 15, + "version": "4.2.0", + "release": "35.module_el8.4.0+547+a85d02ba", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/qemu-guest-agent-4.2.0-35.module_el8.4.0+547+a85d02ba.x86_64.rpm", + "checksum": "sha256:04bcd912af3b987311c2dab6331b65c0d9223c312c4b0654649d821a713133be", + "check_gpg": true + }, + { + "name": "rsyslog", + "epoch": 0, + "version": "8.1911.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/rsyslog-8.1911.0-7.el8.x86_64.rpm", + "checksum": "sha256:ca82090f18d47e454cc512e832bf3ec771edf65299e3c1d56d5df9fab0428869", + "check_gpg": true + }, + { + "name": "setroubleshoot-plugins", + "epoch": 0, + "version": "3.3.13", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/setroubleshoot-plugins-3.3.13-1.el8.noarch.rpm", + "checksum": "sha256:30f37ca1fe1592e29d3e97c1dec0646015000d19bffc40f13dcfe73e15be66fc", + "check_gpg": true + }, + { + "name": "setroubleshoot-server", + "epoch": 0, + "version": "3.3.24", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/setroubleshoot-server-3.3.24-2.el8.x86_64.rpm", + "checksum": "sha256:913d735c486bf4f564d91bfb247ade86f7567d6d7a7631d16b95e89fd2d0c3ba", + "check_gpg": true + }, + { + "name": "sscg", + "epoch": 0, + "version": "2.3.3", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/sscg-2.3.3-14.el8.x86_64.rpm", + "checksum": "sha256:6fded933d86737a21c5cd77399e68e3912125c2da1afb95592e7089ba5594056", + "check_gpg": true + }, + { + "name": "tcpdump", + "epoch": 14, + "version": "4.9.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/tcpdump-4.9.3-1.el8.x86_64.rpm", + "checksum": "sha256:2f1548290dba27526a7b5541e4c7ff76d3124285f8e6335cd6d72919e2aafd41", + "check_gpg": true + }, + { + "name": "unbound-libs", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/unbound-libs-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "name": "xkeyboard-config", + "epoch": 0, + "version": "2.28", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xkeyboard-config-2.28-1.el8.noarch.rpm", + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ], + "checksums": { + "0": "sha256:06fa6273454f85c58ca743a0ef0202bed4cac267393049dc447839cdb39f4a54", + "1": "sha256:5b16e44261a7beffd5d7bf961fe269da407bd57abb1faac407c46a81969dfd63" + } + }, + "image-info": { + "boot-environment": { + "kernelopts": "root=UUID=0194fdc2-fa2f-4cc0-81d3-ff12045b73c8 console=tty0 console=ttyS0,115200n8 no_timer_check net.ifnames=0 crashkernel=auto" + }, + "bootloader": "grub", + "bootmenu": [ + { + "grub_arg": "--unrestricted", + "grub_class": "kernel", + "grub_users": "$grub_users", + "id": "centos-20210203204355-4.18.0-277.el8.x86_64", + "initrd": "/boot/initramfs-4.18.0-277.el8.x86_64.img $tuned_initrd", + "linux": "/boot/vmlinuz-4.18.0-277.el8.x86_64", + "options": "$kernelopts $tuned_params", + "title": "CentOS Stream (4.18.0-277.el8.x86_64) 8", + "version": "4.18.0-277.el8.x86_64" + } + ], + "default-target": "multi-user.target", + "fstab": [ + [ + "UUID=0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "/", + "xfs", + "defaults", + "0", + "0" + ], + [ + "UUID=7B77-95E7", + "/boot/efi", + "vfat", + "defaults,uid=0,gid=0,umask=077,shortname=winnt", + "0", + "2" + ] + ], + "groups": [ + "adm:x:4:", + "audio:x:63:", + "bin:x:1:", + "cdrom:x:11:", + "chrony:x:989:", + "cockpit-ws:x:991:", + "cockpit-wsinstance:x:990:", + "daemon:x:2:", + "dbus:x:81:", + "dialout:x:18:", + "disk:x:6:", + "floppy:x:19:", + "ftp:x:50:", + "games:x:20:", + "input:x:999:", + "kmem:x:9:", + "kvm:x:36:", + "lock:x:54:", + "lp:x:7:", + "mail:x:12:", + "man:x:15:", + "mem:x:8:", + "nobody:x:65534:", + "polkitd:x:996:", + "redhat:x:1000:", + "render:x:998:", + "root:x:0:", + "rpc:x:32:", + "rpcuser:x:29:", + "setroubleshoot:x:992:", + "ssh_keys:x:995:", + "sshd:x:74:", + "sssd:x:993:", + "sys:x:3:", + "systemd-coredump:x:997:", + "systemd-journal:x:190:", + "systemd-resolve:x:193:", + "tape:x:33:", + "tcpdump:x:72:", + "tss:x:59:", + "tty:x:5:", + "unbound:x:994:", + "users:x:100:", + "utempter:x:35:", + "utmp:x:22:", + "video:x:39:", + "wheel:x:10:" + ], + "image-format": "qcow2", + "os-release": { + "ANSI_COLOR": "0;31", + "BUG_REPORT_URL": "https://bugzilla.redhat.com/", + "CPE_NAME": "cpe:/o:centos:centos:8", + "HOME_URL": "https://centos.org/", + "ID": "centos", + "ID_LIKE": "rhel fedora", + "NAME": "CentOS Stream", + "PLATFORM_ID": "platform:el8", + "PRETTY_NAME": "CentOS Stream 8", + "REDHAT_SUPPORT_PRODUCT": "Red Hat Enterprise Linux 8", + "REDHAT_SUPPORT_PRODUCT_VERSION": "CentOS Stream", + "VERSION": "8", + "VERSION_ID": "8" + }, + "packages": [ + "NetworkManager-1.30.0-0.9.el8.x86_64", + "NetworkManager-libnm-1.30.0-0.9.el8.x86_64", + "NetworkManager-team-1.30.0-0.9.el8.x86_64", + "NetworkManager-tui-1.30.0-0.9.el8.x86_64", + "PackageKit-1.1.12-6.el8.x86_64", + "PackageKit-glib-1.1.12-6.el8.x86_64", + "abattis-cantarell-fonts-0.0.25-6.el8.noarch", + "acl-2.2.53-1.el8.x86_64", + "audit-3.0-0.17.20191104git1c2f876.el8.x86_64", + "audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64", + "authselect-1.2.2-1.el8.x86_64", + "authselect-compat-1.2.2-1.el8.x86_64", + "authselect-libs-1.2.2-1.el8.x86_64", + "basesystem-11-5.el8.noarch", + "bash-4.4.19-14.el8.x86_64", + "bind-export-libs-9.11.26-2.el8.x86_64", + "brotli-1.0.6-3.el8.x86_64", + "bzip2-1.0.6-26.el8.x86_64", + "bzip2-libs-1.0.6-26.el8.x86_64", + "c-ares-1.13.0-5.el8.x86_64", + "ca-certificates-2020.2.41-80.0.el8_2.noarch", + "cairo-1.15.12-3.el8.x86_64", + "cairo-gobject-1.15.12-3.el8.x86_64", + "centos-gpg-keys-8-2.el8.noarch", + "centos-logos-82.0-2.el8.x86_64", + "centos-stream-release-8.4-1.el8.noarch", + "centos-stream-repos-8-2.el8.noarch", + "checkpolicy-2.9-1.el8.x86_64", + "chkconfig-1.13-2.el8.x86_64", + "chrony-3.5-1.el8.x86_64", + "cloud-init-20.3-10.el8.noarch", + "cloud-utils-growpart-0.31-1.el8.noarch", + "cockpit-bridge-236-1.el8.x86_64", + "cockpit-system-236-1.el8.noarch", + "cockpit-ws-236-1.el8.x86_64", + "coreutils-8.30-8.el8.x86_64", + "coreutils-common-8.30-8.el8.x86_64", + "cpio-2.12-10.el8.x86_64", + "cracklib-2.9.6-15.el8.x86_64", + "cracklib-dicts-2.9.6-15.el8.x86_64", + "cronie-1.5.2-4.el8.x86_64", + "cronie-anacron-1.5.2-4.el8.x86_64", + "crontabs-1.11-17.20190603git.el8.noarch", + "crypto-policies-20200713-1.git51d1222.el8.noarch", + "crypto-policies-scripts-20200713-1.git51d1222.el8.noarch", + "cryptsetup-libs-2.3.3-2.el8.x86_64", + "curl-7.61.1-18.el8.x86_64", + "cyrus-sasl-lib-2.1.27-5.el8.x86_64", + "dbus-1.12.8-12.el8.x86_64", + "dbus-common-1.12.8-12.el8.noarch", + "dbus-daemon-1.12.8-12.el8.x86_64", + "dbus-glib-0.110-2.el8.x86_64", + "dbus-libs-1.12.8-12.el8.x86_64", + "dbus-tools-1.12.8-12.el8.x86_64", + "dbxtool-8-5.el8.x86_64", + "dejavu-fonts-common-2.35-7.el8.noarch", + "dejavu-sans-mono-fonts-2.35-7.el8.noarch", + "device-mapper-1.02.175-3.el8.x86_64", + "device-mapper-libs-1.02.175-3.el8.x86_64", + "dhcp-client-4.3.6-44.0.1.el8.x86_64", + "dhcp-common-4.3.6-44.0.1.el8.noarch", + "dhcp-libs-4.3.6-44.0.1.el8.x86_64", + "diffutils-3.6-6.el8.x86_64", + "dmidecode-3.2-8.el8.x86_64", + "dnf-4.4.2-5.el8.noarch", + "dnf-data-4.4.2-5.el8.noarch", + "dnf-plugin-subscription-manager-1.28.10-1.el8.x86_64", + "dnf-plugins-core-4.0.18-3.el8.noarch", + "dosfstools-4.1-6.el8.x86_64", + "dracut-049-133.git20210112.el8.x86_64", + "dracut-config-generic-049-133.git20210112.el8.x86_64", + "dracut-network-049-133.git20210112.el8.x86_64", + "dracut-squash-049-133.git20210112.el8.x86_64", + "e2fsprogs-1.45.6-1.el8.x86_64", + "e2fsprogs-libs-1.45.6-1.el8.x86_64", + "efi-filesystem-3-3.el8.noarch", + "efivar-37-4.el8.x86_64", + "efivar-libs-37-4.el8.x86_64", + "elfutils-debuginfod-client-0.182-3.el8.x86_64", + "elfutils-default-yama-scope-0.182-3.el8.noarch", + "elfutils-libelf-0.182-3.el8.x86_64", + "elfutils-libs-0.182-3.el8.x86_64", + "ethtool-5.8-5.el8.x86_64", + "expat-2.2.5-4.el8.x86_64", + "file-5.33-16.el8.x86_64", + "file-libs-5.33-16.el8.x86_64", + "filesystem-3.8-4.el8.x86_64", + "findutils-4.6.0-20.el8.x86_64", + "fontconfig-2.13.1-3.el8.x86_64", + "fontpackages-filesystem-1.44-22.el8.noarch", + "freetype-2.9.1-5.el8.x86_64", + "fuse-libs-2.9.7-12.el8.x86_64", + "gawk-4.2.1-2.el8.x86_64", + "gdbm-1.18-1.el8.x86_64", + "gdbm-libs-1.18-1.el8.x86_64", + "gdk-pixbuf2-2.36.12-5.el8.x86_64", + "geolite2-city-20180605-1.el8.noarch", + "geolite2-country-20180605-1.el8.noarch", + "gettext-0.19.8.1-17.el8.x86_64", + "gettext-libs-0.19.8.1-17.el8.x86_64", + "glib-networking-2.56.1-1.1.el8.x86_64", + "glib2-2.56.4-9.el8.x86_64", + "glibc-2.28-147.el8.x86_64", + "glibc-all-langpacks-2.28-147.el8.x86_64", + "glibc-common-2.28-147.el8.x86_64", + "gmp-6.1.2-10.el8.x86_64", + "gnupg2-2.2.20-2.el8.x86_64", + "gnupg2-smime-2.2.20-2.el8.x86_64", + "gnutls-3.6.14-7.el8_3.x86_64", + "gobject-introspection-1.56.1-1.el8.x86_64", + "gpg-pubkey-8483c65d-5ccc5b19", + "gpgme-1.13.1-7.el8.x86_64", + "grep-3.1-6.el8.x86_64", + "groff-base-1.22.3-18.el8.x86_64", + "grub2-common-2.02-93.el8.noarch", + "grub2-efi-x64-2.02-93.el8.x86_64", + "grub2-pc-2.02-93.el8.x86_64", + "grub2-pc-modules-2.02-93.el8.noarch", + "grub2-tools-2.02-93.el8.x86_64", + "grub2-tools-extra-2.02-93.el8.x86_64", + "grub2-tools-minimal-2.02-93.el8.x86_64", + "grubby-8.40-41.el8.x86_64", + "gsettings-desktop-schemas-3.32.0-5.el8.x86_64", + "gssproxy-0.8.0-19.el8.x86_64", + "gzip-1.9-12.el8.x86_64", + "hardlink-1.3-6.el8.x86_64", + "hdparm-9.54-3.el8.x86_64", + "hostname-3.20-6.el8.x86_64", + "hwdata-0.314-8.7.el8.noarch", + "ima-evm-utils-1.3.2-11.el8.x86_64", + "info-6.5-6.el8.x86_64", + "initscripts-10.00.12-1.el8.x86_64", + "ipcalc-0.2.4-4.el8.x86_64", + "iproute-5.9.0-2.el8.x86_64", + "iptables-libs-1.8.4-17.el8.x86_64", + "iputils-20180629-6.el8.x86_64", + "irqbalance-1.4.0-6.el8.x86_64", + "jansson-2.11-3.el8.x86_64", + "json-c-0.13.1-0.4.el8.x86_64", + "json-glib-1.4.4-1.el8.x86_64", + "kbd-2.0.4-10.el8.x86_64", + "kbd-legacy-2.0.4-10.el8.noarch", + "kbd-misc-2.0.4-10.el8.noarch", + "kernel-4.18.0-277.el8.x86_64", + "kernel-core-4.18.0-277.el8.x86_64", + "kernel-modules-4.18.0-277.el8.x86_64", + "kernel-tools-4.18.0-277.el8.x86_64", + "kernel-tools-libs-4.18.0-277.el8.x86_64", + "kexec-tools-2.0.20-45.el8.x86_64", + "keyutils-1.5.10-6.el8.x86_64", + "keyutils-libs-1.5.10-6.el8.x86_64", + "kmod-25-17.el8.x86_64", + "kmod-libs-25-17.el8.x86_64", + "kpartx-0.8.4-8.el8.x86_64", + "krb5-libs-1.18.2-8.el8.x86_64", + "less-530-1.el8.x86_64", + "libX11-1.6.8-4.el8.x86_64", + "libX11-common-1.6.8-4.el8.noarch", + "libXau-1.0.9-3.el8.x86_64", + "libXext-1.3.4-1.el8.x86_64", + "libXrender-0.9.10-7.el8.x86_64", + "libacl-2.2.53-1.el8.x86_64", + "libappstream-glib-0.7.14-3.el8.x86_64", + "libarchive-3.3.3-1.el8.x86_64", + "libassuan-2.5.1-3.el8.x86_64", + "libattr-2.4.48-3.el8.x86_64", + "libbasicobjects-0.1.1-39.el8.x86_64", + "libblkid-2.32.1-27.el8.x86_64", + "libcap-2.26-4.el8.x86_64", + "libcap-ng-0.7.9-5.el8.x86_64", + "libcollection-0.7.0-39.el8.x86_64", + "libcom_err-1.45.6-1.el8.x86_64", + "libcomps-0.1.11-5.el8.x86_64", + "libcroco-0.6.12-4.el8_2.1.x86_64", + "libcurl-7.61.1-18.el8.x86_64", + "libdaemon-0.14-15.el8.x86_64", + "libdb-5.3.28-40.el8.x86_64", + "libdb-utils-5.3.28-40.el8.x86_64", + "libdhash-0.5.0-39.el8.x86_64", + "libdnf-0.55.0-2.el8.x86_64", + "libedit-3.1-23.20170329cvs.el8.x86_64", + "libestr-0.1.10-1.el8.x86_64", + "libevent-2.1.8-5.el8.x86_64", + "libfastjson-0.99.8-2.el8.x86_64", + "libfdisk-2.32.1-27.el8.x86_64", + "libffi-3.1-22.el8.x86_64", + "libgcc-8.4.1-1.el8.x86_64", + "libgcrypt-1.8.5-4.el8.x86_64", + "libgomp-8.4.1-1.el8.x86_64", + "libgpg-error-1.31-1.el8.x86_64", + "libibverbs-32.0-4.el8.x86_64", + "libidn2-2.2.0-1.el8.x86_64", + "libini_config-1.3.1-39.el8.x86_64", + "libkcapi-1.2.0-2.el8.x86_64", + "libkcapi-hmaccalc-1.2.0-2.el8.x86_64", + "libksba-1.3.5-7.el8.x86_64", + "libldb-2.2.0-1.el8.x86_64", + "libmaxminddb-1.2.0-10.el8.x86_64", + "libmetalink-0.1.3-7.el8.x86_64", + "libmnl-1.0.4-6.el8.x86_64", + "libmodman-2.0.1-17.el8.x86_64", + "libmodulemd-2.9.4-2.el8.x86_64", + "libmount-2.32.1-27.el8.x86_64", + "libndp-1.7-3.el8.x86_64", + "libnfsidmap-2.3.3-41.el8.x86_64", + "libnghttp2-1.33.0-3.el8_2.1.x86_64", + "libnl3-3.5.0-1.el8.x86_64", + "libnl3-cli-3.5.0-1.el8.x86_64", + "libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64", + "libpath_utils-0.2.1-39.el8.x86_64", + "libpcap-1.9.1-5.el8.x86_64", + "libpipeline-1.5.0-2.el8.x86_64", + "libpng-1.6.34-5.el8.x86_64", + "libproxy-0.4.15-5.2.el8.x86_64", + "libpsl-0.20.2-6.el8.x86_64", + "libpwquality-1.4.4-1.el8.x86_64", + "libref_array-0.1.5-39.el8.x86_64", + "librepo-1.12.0-3.el8.x86_64", + "libreport-filesystem-2.9.5-15.el8.x86_64", + "libseccomp-2.4.3-1.el8.x86_64", + "libsecret-0.18.6-1.el8.x86_64", + "libselinux-2.9-5.el8.x86_64", + "libselinux-utils-2.9-5.el8.x86_64", + "libsemanage-2.9-6.el8.x86_64", + "libsepol-2.9-2.el8.x86_64", + "libsigsegv-2.11-5.el8.x86_64", + "libsmartcols-2.32.1-27.el8.x86_64", + "libsolv-0.7.16-2.el8.x86_64", + "libsoup-2.62.3-2.el8.x86_64", + "libss-1.45.6-1.el8.x86_64", + "libssh-0.9.4-2.el8.x86_64", + "libssh-config-0.9.4-2.el8.noarch", + "libsss_autofs-2.4.0-7.el8.x86_64", + "libsss_certmap-2.4.0-7.el8.x86_64", + "libsss_idmap-2.4.0-7.el8.x86_64", + "libsss_nss_idmap-2.4.0-7.el8.x86_64", + "libsss_sudo-2.4.0-7.el8.x86_64", + "libstdc++-8.4.1-1.el8.x86_64", + "libstemmer-0-10.585svn.el8.x86_64", + "libsysfs-2.1.0-24.el8.x86_64", + "libtalloc-2.3.1-2.el8.x86_64", + "libtasn1-4.13-3.el8.x86_64", + "libtdb-1.4.3-1.el8.x86_64", + "libteam-1.31-2.el8.x86_64", + "libtevent-0.10.2-2.el8.x86_64", + "libtirpc-1.1.4-4.el8.x86_64", + "libunistring-0.9.9-3.el8.x86_64", + "libusbx-1.0.23-4.el8.x86_64", + "libuser-0.62-23.el8.x86_64", + "libutempter-1.1.6-14.el8.x86_64", + "libuuid-2.32.1-27.el8.x86_64", + "libverto-0.3.0-5.el8.x86_64", + "libverto-libevent-0.3.0-5.el8.x86_64", + "libxcb-1.13.1-1.el8.x86_64", + "libxcrypt-4.1.1-4.el8.x86_64", + "libxkbcommon-0.9.1-1.el8.x86_64", + "libxml2-2.9.7-9.el8.x86_64", + "libyaml-0.1.7-5.el8.x86_64", + "libzstd-1.4.4-1.el8.x86_64", + "linux-firmware-20201218-102.git05789708.el8.noarch", + "lmdb-libs-0.9.24-1.el8.x86_64", + "logrotate-3.14.0-4.el8.x86_64", + "lshw-B.02.19.2-5.el8.x86_64", + "lsscsi-0.32-2.el8.x86_64", + "lua-libs-5.3.4-11.el8.x86_64", + "lz4-libs-1.8.3-2.el8.x86_64", + "lzo-2.08-14.el8.x86_64", + "man-db-2.7.6.1-17.el8.x86_64", + "memstrack-0.1.11-1.el8.x86_64", + "microcode_ctl-20201112-2.el8.x86_64", + "mokutil-0.3.0-11.el8.x86_64", + "mozjs60-60.9.0-4.el8.x86_64", + "mpfr-3.1.6-1.el8.x86_64", + "ncurses-6.1-7.20180224.el8.x86_64", + "ncurses-base-6.1-7.20180224.el8.noarch", + "ncurses-libs-6.1-7.20180224.el8.x86_64", + "nettle-3.4.1-2.el8.x86_64", + "newt-0.52.20-11.el8.x86_64", + "nfs-utils-2.3.3-41.el8.x86_64", + "npth-1.5-4.el8.x86_64", + "numactl-libs-2.0.12-11.el8.x86_64", + "oddjob-0.34.7-1.el8.x86_64", + "oddjob-mkhomedir-0.34.7-1.el8.x86_64", + "openldap-2.4.46-16.el8.x86_64", + "openssh-8.0p1-5.el8.x86_64", + "openssh-clients-8.0p1-5.el8.x86_64", + "openssh-server-8.0p1-5.el8.x86_64", + "openssl-1.1.1g-12.el8_3.x86_64", + "openssl-libs-1.1.1g-12.el8_3.x86_64", + "openssl-pkcs11-0.4.10-2.el8.x86_64", + "os-prober-1.74-6.el8.x86_64", + "p11-kit-0.23.22-1.el8.x86_64", + "p11-kit-trust-0.23.22-1.el8.x86_64", + "pam-1.3.1-14.el8.x86_64", + "parted-3.2-38.el8.x86_64", + "passwd-0.80-3.el8.x86_64", + "pciutils-3.7.0-1.el8.x86_64", + "pciutils-libs-3.7.0-1.el8.x86_64", + "pcre-8.42-4.el8.x86_64", + "pcre2-10.32-2.el8.x86_64", + "pigz-2.4-4.el8.x86_64", + "pinentry-1.1.0-2.el8.x86_64", + "pixman-0.38.4-1.el8.x86_64", + "platform-python-3.6.8-36.el8.x86_64", + "platform-python-pip-9.0.3-19.el8.noarch", + "platform-python-setuptools-39.2.0-6.el8.noarch", + "policycoreutils-2.9-12.el8.x86_64", + "policycoreutils-python-utils-2.9-12.el8.noarch", + "polkit-0.115-11.el8.x86_64", + "polkit-libs-0.115-11.el8.x86_64", + "polkit-pkla-compat-0.1-12.el8.x86_64", + "popt-1.18-1.el8.x86_64", + "prefixdevname-0.1.0-6.el8.x86_64", + "procps-ng-3.3.15-6.el8.x86_64", + "psmisc-23.1-5.el8.x86_64", + "publicsuffix-list-dafsa-20180723-1.el8.noarch", + "python3-audit-3.0-0.17.20191104git1c2f876.el8.x86_64", + "python3-babel-2.5.1-5.el8.noarch", + "python3-cairo-1.16.3-6.el8.x86_64", + "python3-cffi-1.11.5-5.el8.x86_64", + "python3-chardet-3.0.4-7.el8.noarch", + "python3-configobj-5.0.6-11.el8.noarch", + "python3-cryptography-3.2.1-3.el8.x86_64", + "python3-dateutil-2.6.1-6.el8.noarch", + "python3-dbus-1.2.4-15.el8.x86_64", + "python3-decorator-4.2.1-2.el8.noarch", + "python3-dmidecode-3.12.2-15.el8.x86_64", + "python3-dnf-4.4.2-5.el8.noarch", + "python3-dnf-plugins-core-4.0.18-3.el8.noarch", + "python3-ethtool-0.14-3.el8.x86_64", + "python3-gobject-3.28.3-2.el8.x86_64", + "python3-gobject-base-3.28.3-2.el8.x86_64", + "python3-gpg-1.13.1-7.el8.x86_64", + "python3-hawkey-0.55.0-2.el8.x86_64", + "python3-idna-2.5-5.el8.noarch", + "python3-iniparse-0.4-31.el8.noarch", + "python3-inotify-0.9.6-13.el8.noarch", + "python3-jinja2-2.10.1-2.el8_0.noarch", + "python3-jsonpatch-1.21-2.el8.noarch", + "python3-jsonpointer-1.10-11.el8.noarch", + "python3-jsonschema-2.6.0-4.el8.noarch", + "python3-jwt-1.6.1-2.el8.noarch", + "python3-libcomps-0.1.11-5.el8.x86_64", + "python3-libdnf-0.55.0-2.el8.x86_64", + "python3-librepo-1.12.0-3.el8.x86_64", + "python3-libs-3.6.8-36.el8.x86_64", + "python3-libselinux-2.9-5.el8.x86_64", + "python3-libsemanage-2.9-6.el8.x86_64", + "python3-libxml2-2.9.7-9.el8.x86_64", + "python3-linux-procfs-0.6.3-1.el8.noarch", + "python3-markupsafe-0.23-19.el8.x86_64", + "python3-oauthlib-2.1.0-1.el8.noarch", + "python3-perf-4.18.0-277.el8.x86_64", + "python3-pexpect-4.3.1-3.el8.noarch", + "python3-pip-wheel-9.0.3-19.el8.noarch", + "python3-ply-3.9-9.el8.noarch", + "python3-policycoreutils-2.9-12.el8.noarch", + "python3-prettytable-0.7.2-14.el8.noarch", + "python3-ptyprocess-0.5.2-4.el8.noarch", + "python3-pycparser-2.14-14.el8.noarch", + "python3-pydbus-0.6.0-5.el8.noarch", + "python3-pyserial-3.1.1-8.el8.noarch", + "python3-pysocks-1.6.8-3.el8.noarch", + "python3-pytz-2017.2-9.el8.noarch", + "python3-pyudev-0.21.0-7.el8.noarch", + "python3-pyyaml-3.12-12.el8.x86_64", + "python3-requests-2.20.0-2.1.el8_1.noarch", + "python3-rpm-4.14.3-10.el8.x86_64", + "python3-schedutils-0.6-6.el8.x86_64", + "python3-setools-4.3.0-2.el8.x86_64", + "python3-setuptools-wheel-39.2.0-6.el8.noarch", + "python3-six-1.11.0-8.el8.noarch", + "python3-slip-0.6.4-11.el8.noarch", + "python3-slip-dbus-0.6.4-11.el8.noarch", + "python3-subscription-manager-rhsm-1.28.10-1.el8.x86_64", + "python3-syspurpose-1.28.10-1.el8.x86_64", + "python3-systemd-234-8.el8.x86_64", + "python3-unbound-1.7.3-15.el8.x86_64", + "python3-urllib3-1.24.2-5.el8.noarch", + "qemu-guest-agent-4.2.0-35.module_el8.4.0+547+a85d02ba.x86_64", + "quota-4.04-12.el8.x86_64", + "quota-nls-4.04-12.el8.noarch", + "rdma-core-32.0-4.el8.x86_64", + "readline-7.0-10.el8.x86_64", + "rhsm-icons-1.28.10-1.el8.noarch", + "rootfiles-8.1-22.el8.noarch", + "rpcbind-1.2.5-8.el8.x86_64", + "rpm-4.14.3-10.el8.x86_64", + "rpm-build-libs-4.14.3-10.el8.x86_64", + "rpm-libs-4.14.3-10.el8.x86_64", + "rpm-plugin-selinux-4.14.3-10.el8.x86_64", + "rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64", + "rsync-3.1.3-12.el8.x86_64", + "rsyslog-8.1911.0-7.el8.x86_64", + "sed-4.5-2.el8.x86_64", + "selinux-policy-3.14.3-62.el8.noarch", + "selinux-policy-targeted-3.14.3-62.el8.noarch", + "setroubleshoot-plugins-3.3.13-1.el8.noarch", + "setroubleshoot-server-3.3.24-2.el8.x86_64", + "setup-2.12.2-6.el8.noarch", + "sg3_utils-1.44-5.el8.x86_64", + "sg3_utils-libs-1.44-5.el8.x86_64", + "shadow-utils-4.6-12.el8.x86_64", + "shared-mime-info-1.9-3.el8.x86_64", + "shim-x64-15-15.el8_2.x86_64", + "slang-2.3.2-3.el8.x86_64", + "snappy-1.1.8-3.el8.x86_64", + "sos-4.0-7.el8.noarch", + "sqlite-libs-3.26.0-13.el8.x86_64", + "squashfs-tools-4.3-19.el8.x86_64", + "sscg-2.3.3-14.el8.x86_64", + "sssd-client-2.4.0-7.el8.x86_64", + "sssd-common-2.4.0-7.el8.x86_64", + "sssd-kcm-2.4.0-7.el8.x86_64", + "sssd-nfs-idmap-2.4.0-7.el8.x86_64", + "subscription-manager-1.28.10-1.el8.x86_64", + "subscription-manager-cockpit-1.28.10-1.el8.noarch", + "subscription-manager-rhsm-certificates-1.28.10-1.el8.x86_64", + "sudo-1.8.29-7.el8.x86_64", + "systemd-239-44.el8.x86_64", + "systemd-libs-239-44.el8.x86_64", + "systemd-pam-239-44.el8.x86_64", + "systemd-udev-239-44.el8.x86_64", + "tar-1.30-5.el8.x86_64", + "tcpdump-4.9.3-1.el8.x86_64", + "teamd-1.31-2.el8.x86_64", + "timedatex-0.5-3.el8.x86_64", + "tpm2-tss-2.3.2-3.el8.x86_64", + "trousers-0.3.15-1.el8.x86_64", + "trousers-lib-0.3.15-1.el8.x86_64", + "tuned-2.15.0-1.el8.noarch", + "tzdata-2021a-1.el8.noarch", + "unbound-libs-1.7.3-15.el8.x86_64", + "usermode-1.113-1.el8.x86_64", + "util-linux-2.32.1-27.el8.x86_64", + "vim-minimal-8.0.1763-15.el8.x86_64", + "virt-what-1.18-6.el8.x86_64", + "which-2.21-12.el8.x86_64", + "xfsprogs-5.0.0-8.el8.x86_64", + "xkeyboard-config-2.28-1.el8.noarch", + "xz-5.2.4-3.el8.x86_64", + "xz-libs-5.2.4-3.el8.x86_64", + "yum-4.4.2-5.el8.noarch", + "yum-utils-4.0.18-3.el8.noarch", + "zlib-1.2.11-17.el8.x86_64" + ], + "partition-table": "gpt", + "partition-table-id": "D209C89E-EA5E-4FBD-B161-B461CCE297E0", + "partitions": [ + { + "bootable": false, + "fstype": null, + "label": null, + "partuuid": "FAC7F1FB-3E8D-4137-A512-961DE09A5549", + "size": 1048576, + "start": 1048576, + "type": "21686148-6449-6E6F-744E-656564454649", + "uuid": null + }, + { + "bootable": false, + "fstype": "vfat", + "label": null, + "partuuid": "68B2905B-DF3E-4FB3-80FA-49D1E773AA33", + "size": 104857600, + "start": 2097152, + "type": "C12A7328-F81F-11D2-BA4B-00A0C93EC93B", + "uuid": "7B77-95E7" + }, + { + "bootable": false, + "fstype": "xfs", + "label": "root", + "partuuid": "6264D520-3FB9-423F-8AB8-7A0A8E3D3562", + "size": 10630446592, + "start": 106954752, + "type": "0FC63DAF-8483-4772-8E79-3D69D8477DE4", + "uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8" + } + ], + "passwd": [ + "adm:x:3:4:adm:/var/adm:/sbin/nologin", + "bin:x:1:1:bin:/bin:/sbin/nologin", + "chrony:x:992:989::/var/lib/chrony:/sbin/nologin", + "cockpit-ws:x:994:991:User for cockpit web service:/nonexisting:/sbin/nologin", + "cockpit-wsinstance:x:993:990:User for cockpit-ws instances:/nonexisting:/sbin/nologin", + "daemon:x:2:2:daemon:/sbin:/sbin/nologin", + "dbus:x:81:81:System message bus:/:/sbin/nologin", + "ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin", + "games:x:12:100:games:/usr/games:/sbin/nologin", + "halt:x:7:0:halt:/sbin:/sbin/halt", + "lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin", + "mail:x:8:12:mail:/var/spool/mail:/sbin/nologin", + "nobody:x:65534:65534:Kernel Overflow User:/:/sbin/nologin", + "operator:x:11:0:operator:/root:/sbin/nologin", + "polkitd:x:998:996:User for polkitd:/:/sbin/nologin", + "redhat:x:1000:1000::/home/redhat:/bin/bash", + "root:x:0:0:root:/root:/bin/bash", + "rpc:x:32:32:Rpcbind Daemon:/var/lib/rpcbind:/sbin/nologin", + "rpcuser:x:29:29:RPC Service User:/var/lib/nfs:/sbin/nologin", + "setroubleshoot:x:995:992::/var/lib/setroubleshoot:/sbin/nologin", + "shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown", + "sshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:/sbin/nologin", + "sssd:x:996:993:User for sssd:/:/sbin/nologin", + "sync:x:5:0:sync:/sbin:/bin/sync", + "systemd-coredump:x:999:997:systemd Core Dumper:/:/sbin/nologin", + "systemd-resolve:x:193:193:systemd Resolver:/:/sbin/nologin", + "tcpdump:x:72:72::/:/sbin/nologin", + "tss:x:59:59:Account used for TPM access:/dev/null:/sbin/nologin", + "unbound:x:997:994:Unbound DNS resolver:/etc/unbound:/sbin/nologin" + ], + "rhsm": { + "dnf-plugins": { + "product-id": { + "enabled": false + }, + "subscription-manager": { + "enabled": false + } + } + }, + "rpm-verify": { + "changed": { + "/boot/efi/EFI/centos/grubx64.efi": ".......T.", + "/etc/dnf/plugins/product-id.conf": "..5....T.", + "/etc/dnf/plugins/subscription-manager.conf": ".......T.", + "/etc/machine-id": ".M.......", + "/proc": ".M.......", + "/run/cockpit": ".M.......", + "/sys": ".M.......", + "/var/log/lastlog": ".M....G..", + "/var/spool/anacron/cron.daily": ".M.......", + "/var/spool/anacron/cron.monthly": ".M.......", + "/var/spool/anacron/cron.weekly": ".M......." + }, + "missing": [] + }, + "services-disabled": [ + "chrony-dnssrv@.timer", + "chrony-wait.service", + "cockpit.socket", + "console-getty.service", + "cpupower.service", + "ctrl-alt-del.target", + "dbxtool.service", + "debug-shell.service", + "exit.target", + "fstrim.timer", + "gssproxy.service", + "halt.target", + "kexec.target", + "nfs-blkmap.service", + "nfs-convert.service", + "nfs-server.service", + "oddjobd.service", + "poweroff.target", + "qemu-guest-agent.service", + "rdisc.service", + "reboot.target", + "remote-cryptsetup.target", + "rhsm-facts.service", + "rhsm.service", + "runlevel0.target", + "runlevel6.target", + "serial-getty@.service", + "sshd-keygen@.service", + "sshd.socket", + "sssd-autofs.socket", + "sssd-nss.socket", + "sssd-pac.socket", + "sssd-pam-priv.socket", + "sssd-pam.socket", + "sssd-ssh.socket", + "sssd-sudo.socket", + "systemd-resolved.service", + "tcsd.service", + "tmp.mount" + ], + "services-enabled": [ + "NetworkManager-dispatcher.service", + "NetworkManager-wait-online.service", + "NetworkManager.service", + "auditd.service", + "autovt@.service", + "chronyd.service", + "cloud-config.service", + "cloud-final.service", + "cloud-init-local.service", + "cloud-init.service", + "crond.service", + "dbus-org.freedesktop.nm-dispatcher.service", + "dbus-org.freedesktop.timedate1.service", + "dnf-makecache.timer", + "getty@.service", + "import-state.service", + "irqbalance.service", + "kdump.service", + "loadmodules.service", + "microcode.service", + "nfs-client.target", + "nis-domainname.service", + "remote-fs.target", + "rhsmcertd.service", + "rpcbind.service", + "rpcbind.socket", + "rsyslog.service", + "selinux-autorelabel-mark.service", + "sshd.service", + "sssd-kcm.socket", + "sssd.service", + "syslog.service", + "timedatex.service", + "tuned.service", + "unbound-anchor.timer" + ], + "sysconfig": { + "kernel": { + "DEFAULTKERNEL": "kernel", + "UPDATEDEFAULT": "yes" + }, + "network": { + "NETWORKING": "yes", + "NOZEROCONF": "yes" + } + }, + "timezone": "New_York" + } +} \ No newline at end of file diff --git a/test/data/manifests/centos_8-x86_64-qcow2-customize.json b/test/data/manifests/centos_8-x86_64-qcow2-customize.json new file mode 100644 index 000000000..d1afa8ec3 --- /dev/null +++ b/test/data/manifests/centos_8-x86_64-qcow2-customize.json @@ -0,0 +1,11775 @@ +{ + "compose-request": { + "distro": "centos-8", + "arch": "x86_64", + "repositories": [ + { + "name": "baseos", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + }, + { + "name": "appstream", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + } + ], + "image-type": "qcow2", + "filename": "disk.qcow2", + "blueprint": { + "packages": [ + { + "name": "bash", + "version": "*" + } + ], + "groups": [ + { + "name": "core" + } + ], + "customizations": { + "hostname": "my-host", + "kernel": { + "append": "debug" + }, + "sshkey": [ + { + "user": "user1", + "key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC61wMCjOSHwbVb4VfVyl5sn497qW4PsdQ7Ty7aD6wDNZ/QjjULkDV/yW5WjDlDQ7UqFH0Sr7vywjqDizUAqK7zM5FsUKsUXWHWwg/ehKg8j9xKcMv11AkFoUoujtfAujnKODkk58XSA9whPr7qcw3vPrmog680pnMSzf9LC7J6kXfs6lkoKfBh9VnlxusCrw2yg0qI1fHAZBLPx7mW6+me71QZsS6sVz8v8KXyrXsKTdnF50FjzHcK9HXDBtSJS5wA3fkcRYymJe0o6WMWNdgSRVpoSiWaHHmFgdMUJaYoCfhXzyl7LtNb3Q+Sveg+tJK7JaRXBLMUllOlJ6ll5Hod root@localhost" + } + ], + "user": [ + { + "name": "user2", + "description": "description 2", + "password": "$6$BhyxFBgrEFh0VrPJ$MllG8auiU26x2pmzL4.1maHzPHrA.4gTdCvlATFp8HJU9UPee4zCS9BVl2HOzKaUYD/zEm8r/OF05F2icWB0K/", + "key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC61wMCjOSHwbVb4VfVyl5sn497qW4PsdQ7Ty7aD6wDNZ/QjjULkDV/yW5WjDlDQ7UqFH0Sr7vywjqDizUAqK7zM5FsUKsUXWHWwg/ehKg8j9xKcMv11AkFoUoujtfAujnKODkk58XSA9whPr7qcw3vPrmog680pnMSzf9LC7J6kXfs6lkoKfBh9VnlxusCrw2yg0qI1fHAZBLPx7mW6+me71QZsS6sVz8v8KXyrXsKTdnF50FjzHcK9HXDBtSJS5wA3fkcRYymJe0o6WMWNdgSRVpoSiWaHHmFgdMUJaYoCfhXzyl7LtNb3Q+Sveg+tJK7JaRXBLMUllOlJ6ll5Hod root@localhost", + "home": "/home/home2", + "shell": "/bin/sh", + "groups": [ + "group1" + ], + "uid": 1020, + "gid": 1050 + } + ], + "group": [ + { + "name": "group1", + "gid": 1030 + }, + { + "name": "group2", + "gid": 1050 + } + ], + "timezone": { + "timezone": "Europe/London", + "ntpservers": [ + "time.example.com" + ] + }, + "locale": { + "languages": [ + "en_US" + ], + "keyboard": "dvorak" + }, + "services": { + "enabled": [ + "sshd.socket" + ], + "disabled": [ + "bluetooth.service" + ] + } + } + } + }, + "manifest": { + "sources": { + "org.osbuild.files": { + "urls": { + "sha256:003ee19ec5b88de212c3246bdfdb3e97a9910a25a219fd7cf5030b7bc666fea9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-requests-2.20.0-2.1.el8_1.noarch.rpm" + }, + "sha256:0064a3aeff41fb7345c061956c35e4b9d0b8802954e717491fb6eb51028d22fd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lmdb-libs-0.9.24-1.el8.x86_64.rpm" + }, + "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libs-0.182-3.el8.x86_64.rpm" + }, + "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libyaml-0.1.7-5.el8.x86_64.rpm" + }, + "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnghttp2-1.33.0-3.el8_2.1.x86_64.rpm" + }, + "sha256:017e78c5e23f98d6ee299255fc7be5381dba63d169e3f5dcb1de9d21b5d30ba5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-syspurpose-1.28.10-1.el8.x86_64.rpm" + }, + "sha256:0221e6e3671c2bd130e9519a7b352404b7e510584b4707d38e1a733e19c7f74f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxcb-1.13.1-1.el8.x86_64.rpm" + }, + "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsigsegv-2.11-5.el8.x86_64.rpm" + }, + "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-5.2.4-3.el8.x86_64.rpm" + }, + "sha256:03b50a4ea5cf5655c67e2358fabb6e563eec4e7929e7fc6c4e92c92694f60fa0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mozjs60-60.9.0-4.el8.x86_64.rpm" + }, + "sha256:04bcd912af3b987311c2dab6331b65c0d9223c312c4b0654649d821a713133be": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/qemu-guest-agent-4.2.0-35.module_el8.4.0+547+a85d02ba.x86_64.rpm" + }, + "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-5.33-16.el8.x86_64.rpm" + }, + "sha256:066f254f9ac7712b44214816de907a87eb8dfd0d2ea9570a7513db9a6617ba26": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dbus-1.2.4-15.el8.x86_64.rpm" + }, + "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-2.0.4-10.el8.x86_64.rpm" + }, + "sha256:07ed1209e898552e6aeac0e6d148271d562c576f7d903cb7a99a697643068f58": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-cffi-1.11.5-5.el8.x86_64.rpm" + }, + "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.182-3.el8.noarch.rpm" + }, + "sha256:084c55bef75a2ce2ab67aa4eeb6726ca59ea6d7c2b23bc6e4084f11aac7e17f8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-client-4.3.6-44.0.1.el8.x86_64.rpm" + }, + "sha256:08b76b0af07db4d3b27776a96bb7d0dc0f02b7219569676ac79036190d731d5b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libedit-3.1-23.20170329cvs.el8.x86_64.rpm" + }, + "sha256:09128c1b70cb8ea1a9bfbc6f3314dd5a8ba0c1a1886a82cd0fbe6845d48215dc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-0.115-11.el8.x86_64.rpm" + }, + "sha256:0aaaaa29cc1bb4d358142db6eb7d12df9252a8166bf61956203878eed210785c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libteam-1.31-2.el8.x86_64.rpm" + }, + "sha256:0bc637f0d028043e8388b083cdd8d0a0acea7fdbc79c0bc9401dfb02c20fb817": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pexpect-4.3.1-3.el8.noarch.rpm" + }, + "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/expat-2.2.5-4.el8.x86_64.rpm" + }, + "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-scripts-20200713-1.git51d1222.el8.noarch.rpm" + }, + "sha256:0cb3dccf2c3bd45c773dd3fbf14bd9d7e7a40fe33edd36077738066af3c95517": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/subscription-manager-rhsm-certificates-1.28.10-1.el8.x86_64.rpm" + }, + "sha256:0e9a8a0f823bf0ef948862f0ccb62353460bd07931e756c98f23908c1c526578": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-decorator-4.2.1-2.el8.noarch.rpm" + }, + "sha256:0edde19e0c027c8cff31b82e1f4b0b198c00bf924047fcf4dd610a7d4965ab52": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pytz-2017.2-9.el8.noarch.rpm" + }, + "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-25-17.el8.x86_64.rpm" + }, + "sha256:0feac495306bbe6e3149a352025bea8d23cda512859a230cbd3f510cf48caaf7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonschema-2.6.0-4.el8.noarch.rpm" + }, + "sha256:105beb1a237e66802e64e620f79b357dfc8f3bb8952ac2f293548f1d68ca40b1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libfastjson-0.99.8-2.el8.x86_64.rpm" + }, + "sha256:109d6db30e5515601b00954b2fd8750c421730a18afc12e1fa7781e24e5b0863": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-inotify-0.9.6-13.el8.noarch.rpm" + }, + "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cpio-2.12-10.el8.x86_64.rpm" + }, + "sha256:11838afbfab4da7d5fa6e01046f76cce0b0a0c174a87c522eba440fce16e316f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/abattis-cantarell-fonts-0.0.25-6.el8.noarch.rpm" + }, + "sha256:11ac209220f3a53a762adebb4eeb43190e02ef7cdad2c54bcb474b206f7eb6f2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXrender-0.9.10-7.el8.x86_64.rpm" + }, + "sha256:1230ddb5d92fe538a0526e3a9f05563a111ae4ff1978fc8e18de889974b5b46c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_autofs-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:142d4fe6236cdeac3f967517085d99649215d75026fbe00746e0c5214d7d20df": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-policycoreutils-2.9-12.el8.noarch.rpm" + }, + "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-6.1-7.20180224.el8.x86_64.rpm" + }, + "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libblkid-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:15dc15a5be210707852f051f4d09949c063a7283edc7d4ca3d4289eedcc0b509": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gobject-base-3.28.3-2.el8.x86_64.rpm" + }, + "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-libs-25-17.el8.x86_64.rpm" + }, + "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/npth-1.5-4.el8.x86_64.rpm" + }, + "sha256:16b34582f757aebb9bc7b0a0475458cbb186238b5b528ef8fdb099cb739ba383": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-squash-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:16d05b70027f6e2879e84887c028043617b899fe3966c36e54c0a7078fbcb411": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/centos-logos-82.0-2.el8.x86_64.rpm" + }, + "sha256:173a812d859c70f8db7b014d507c5cacb76c62ab5480c44be217f880465f42c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-server-8.0p1-5.el8.x86_64.rpm" + }, + "sha256:176ffcb2cf0fdcbdd2d8119cbd98eef60a30fdb0fb065a9382d2c95e90c79652": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-chardet-3.0.4-7.el8.noarch.rpm" + }, + "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-c-0.13.1-0.4.el8.x86_64.rpm" + }, + "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-2.02-93.el8.x86_64.rpm" + }, + "sha256:185f36b3af9367e6142233af358df22f23ee623697bc6a45c47091013707872e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpath_utils-0.2.1-39.el8.x86_64.rpm" + }, + "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grubby-8.40-41.el8.x86_64.rpm" + }, + "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-5.3.28-40.el8.x86_64.rpm" + }, + "sha256:19ca7ab9cb2e39ec452ed1424f828ec464266094e31903301680d5a5d0e2ac2c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libmaxminddb-1.2.0-10.el8.x86_64.rpm" + }, + "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.6-26.el8.x86_64.rpm" + }, + "sha256:1b5187e9b694e439a059be58d8de5317f04278371d1195bf000b001ba8699197": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libldb-2.2.0-1.el8.x86_64.rpm" + }, + "sha256:1b53c868277dec628058b31b1a8a8a2ccd8efe832ce9694805b5f82564136eb3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-prettytable-0.7.2-14.el8.noarch.rpm" + }, + "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/freetype-2.9.1-5.el8.x86_64.rpm" + }, + "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kpartx-0.8.4-8.el8.x86_64.rpm" + }, + "sha256:1bd969e0521820374122f5132e5998d9bd2ab185be66565a7266096297419c8e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-configobj-5.0.6-11.el8.noarch.rpm" + }, + "sha256:1c4b186665558747023a60d0d662d3780a1bc49e578062f4b70100c71ab2220c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mokutil-0.3.0-11.el8.x86_64.rpm" + }, + "sha256:1cef673b1e520903e3b1c17d0d284d205a6f949908c351618dae892f40fb011b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-subscription-manager-rhsm-1.28.10-1.el8.x86_64.rpm" + }, + "sha256:1d130b0daf86899c3987d59567303ce7ae44c3273f2d8d0f0625bef7e6bad16d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-base-6.1-7.20180224.el8.noarch.rpm" + }, + "sha256:20874a9d40b12125c9e5b97fe4ccda3f94acbc03da1dec7299123901f5b56631": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-oauthlib-2.1.0-1.el8.noarch.rpm" + }, + "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libunistring-0.9.9-3.el8.x86_64.rpm" + }, + "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-libs-1.1.1g-12.el8_3.x86_64.rpm" + }, + "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-3.5.0-1.el8.x86_64.rpm" + }, + "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/acl-2.2.53-1.el8.x86_64.rpm" + }, + "sha256:230820d3f9dbaa9dcd013836f4ba56d0514946bc05cac7727ef2aaff3a3dde26": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libappstream-glib-0.7.14-3.el8.x86_64.rpm" + }, + "sha256:233e5f78027b684e5aaac1395cc574aea3039059bf86eb4494422bc74216a396": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-slip-0.6.4-11.el8.noarch.rpm" + }, + "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:2c63399bee449fb6e921671a9bbf3356fda73f890b578820f7d926202e98a479": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libaio-0.3.112-1.el8.x86_64.rpm" + }, + "sha256:2c6dd4f21d9c4bde29f693d32e44f0d1c5dc73d78d013767df531d69bbfc6ed8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_nss_idmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:2d4cf3bd8b8046adfa869fbb5b472294469457f6445db36abcc227959be9adeb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bind-export-libs-9.11.26-2.el8.x86_64.rpm" + }, + "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/filesystem-3.8-4.el8.x86_64.rpm" + }, + "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstdc++-8.4.1-1.el8.x86_64.rpm" + }, + "sha256:2e8d4ee76fa8678b0e4d6c0297b16f96e0116201bf96b36e8924b1b080abcddd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-cli-3.5.0-1.el8.x86_64.rpm" + }, + "sha256:2ebe28be2e0a413af31a0f49b6a2774670067cdbe48e723040b19922ae205d6b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-cryptography-3.2.1-3.el8.x86_64.rpm" + }, + "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-pkcs11-0.4.10-2.el8.x86_64.rpm" + }, + "sha256:2f1548290dba27526a7b5541e4c7ff76d3124285f8e6335cd6d72919e2aafd41": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/tcpdump-4.9.3-1.el8.x86_64.rpm" + }, + "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-libs-239-44.el8.x86_64.rpm" + }, + "sha256:2fbf7e0ba8e8249b45392720a851905a42de547e1b760d461a799e2d1273cd97": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/oddjob-0.34.7-1.el8.x86_64.rpm" + }, + "sha256:2fcd7a063cab2e103fd4fdf8f4c63d09b9f3d60759c3b0982c75ed9a9e57bdf8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cairo-1.15.12-3.el8.x86_64.rpm" + }, + "sha256:30f37ca1fe1592e29d3e97c1dec0646015000d19bffc40f13dcfe73e15be66fc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/setroubleshoot-plugins-3.3.13-1.el8.noarch.rpm" + }, + "sha256:30fab73ee155f03dbbd99c1e30fe59dfba4ae8fdb2e7213451ccc36d6918bfcc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmnl-1.0.4-6.el8.x86_64.rpm" + }, + "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sed-4.5-2.el8.x86_64.rpm" + }, + "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gpg-1.13.1-7.el8.x86_64.rpm" + }, + "sha256:370b74a811249b8f0bdfcd34137507f058a85196775e9d0d2bb244c100d194ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_sudo-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:377ad20c1681518bff1f40884589bddc4a692506384c7676f072ddf86ae429f9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_idmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pigz-2.4-4.el8.x86_64.rpm" + }, + "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdnf-0.55.0-2.el8.x86_64.rpm" + }, + "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libffi-3.1-22.el8.x86_64.rpm" + }, + "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-all-langpacks-2.28-147.el8.x86_64.rpm" + }, + "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-libs-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-libs-1.18-1.el8.x86_64.rpm" + }, + "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libfdisk-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:3acd2c8b6ea534811308b3138859b5fa150b89604bb60f16b0650747039d696a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/irqbalance-1.4.0-6.el8.x86_64.rpm" + }, + "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gmp-6.1.2-10.el8.x86_64.rpm" + }, + "sha256:3c6650fd6e32fdc24b8cf1f7a85ae8232661b47bda7019e49fd0eb474683ff23": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hdparm-9.54-3.el8.x86_64.rpm" + }, + "sha256:3cd092e6e03efb4bb49b91dedd52b43f891092d04a2ff040b9f2197ec2082511": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/logrotate-3.14.0-4.el8.x86_64.rpm" + }, + "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ima-evm-utils-1.3.2-11.el8.x86_64.rpm" + }, + "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-4.4.2-5.el8.noarch.rpm" + }, + "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chkconfig-1.13-2.el8.x86_64.rpm" + }, + "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmartcols-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:3efd6a2548813167fe37718546bc768a5aa8ba59aa80edcecd8ba408bec329b0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/vim-minimal-8.0.1763-15.el8.x86_64.rpm" + }, + "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shared-mime-info-1.9-3.el8.x86_64.rpm" + }, + "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grep-3.1-6.el8.x86_64.rpm" + }, + "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/popt-1.18-1.el8.x86_64.rpm" + }, + "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dosfstools-4.1-6.el8.x86_64.rpm" + }, + "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-release-8.4-1.el8.noarch.rpm" + }, + "sha256:41a5551a1bdf84359c3f86f08bb1e5c13c0bc1e057ae5d9f0cdf9930afeb37a1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libX11-1.6.8-4.el8.x86_64.rpm" + }, + "sha256:41d9c9f8e17c83f73e51e90f02e08927bb9c836d033815c6cdddc6da44e321f0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-libnm-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:4280042747c9027c3252d360fa33d63490aa518858849115b20162a097a37146": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kexec-tools-2.0.20-45.el8.x86_64.rpm" + }, + "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-2.2.20-2.el8.x86_64.rpm" + }, + "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-1.2.0-2.el8.x86_64.rpm" + }, + "sha256:4302361b12eefd5574f57bf0c49c0e5bdc738eddda33634af8b35adfb53a52a1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/yum-4.4.2-5.el8.noarch.rpm" + }, + "sha256:436e93b4c072f8b6f90f41a037d017406be10c18efafc8c634f6da59bbac1105": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-libs-4.3.6-44.0.1.el8.x86_64.rpm" + }, + "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-common-2.28-147.el8.x86_64.rpm" + }, + "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-libs-6.1-7.20180224.el8.x86_64.rpm" + }, + "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tzdata-2021a-1.el8.noarch.rpm" + }, + "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcrypt-1.8.5-4.el8.x86_64.rpm" + }, + "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nettle-3.4.1-2.el8.x86_64.rpm" + }, + "sha256:44c8d429eda78196b566c95603bdbcc23483c1dab3dd6e0efae29aa6d848a431": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-python-utils-2.9-12.el8.noarch.rpm" + }, + "sha256:451d0cb6e2284578e3279b4cbb5ec98e9d98a687556c6b424adf8f1282d4ef58": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libsemanage-2.9-6.el8.x86_64.rpm" + }, + "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-libs-5.33-16.el8.x86_64.rpm" + }, + "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/unbound-libs-1.7.3-15.el8.x86_64.rpm" + }, + "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/basesystem-11-5.el8.noarch.rpm" + }, + "sha256:48bfe66d6f07baf1974355e8a3ebbc44f2d9812b823ddfff1c15f35635a8dc4e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efivar-libs-37-4.el8.x86_64.rpm" + }, + "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libacl-2.2.53-1.el8.x86_64.rpm" + }, + "sha256:499e48b35f3b5f5da45031fa78fba559fee6a480ecb106e6c300eb8344510958": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-ptyprocess-0.5.2-4.el8.noarch.rpm" + }, + "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-3.14.3-62.el8.noarch.rpm" + }, + "sha256:49d972c660b9238dd1d58ab5952285b77e440820bf4563cce2b5ecd2f6ceba78": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXau-1.0.9-3.el8.x86_64.rpm" + }, + "sha256:4a28d9fa9785d7e8515deaf5e1a381a553c37b02a81a20ddd4fa202b33413ac9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-network-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:4c02e3e1808f0189269b242242468a364007a8f12c6e38afc24b599b2848b0fa": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/virt-what-1.18-6.el8.x86_64.rpm" + }, + "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-libs-3.7.0-1.el8.x86_64.rpm" + }, + "sha256:4c5c7f3773c634c054b0a5fc1b40d0a8448b44bb5aff410bfa88facf9e2059ff": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/parted-3.2-38.el8.x86_64.rpm" + }, + "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-3.7.0-1.el8.x86_64.rpm" + }, + "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtirpc-1.1.4-4.el8.x86_64.rpm" + }, + "sha256:4e1b66f11f9e38bbd4a83aaf20f773925522a32b9fb1d0d75b3cca435556ff02": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-gobject-3.28.3-2.el8.x86_64.rpm" + }, + "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-config-0.9.4-2.el8.noarch.rpm" + }, + "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-rpm-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-utils-2.9-5.el8.x86_64.rpm" + }, + "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgomp-8.4.1-1.el8.x86_64.rpm" + }, + "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/curl-7.61.1-18.el8.x86_64.rpm" + }, + "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-pip-9.0.3-19.el8.noarch.rpm" + }, + "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-0.3.15-1.el8.x86_64.rpm" + }, + "sha256:525393e4d658e395c6280bd2ff4afe54999796c4722986325297ba4bfade3ea5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pyyaml-3.12-12.el8.x86_64.rpm" + }, + "sha256:538899f9a39e085ef14bd34f84327c12b862981df1428bb1353ef4082ddd3a4c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-libevent-0.3.0-5.el8.x86_64.rpm" + }, + "sha256:53ae3ecd59ec61852cabbd039c748ed63ceb6a88da98587d4c33323ba4095154": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsysfs-2.1.0-24.el8.x86_64.rpm" + }, + "sha256:5452b96e4b57c275dd41e48d55af1ca4f77ccfb3ae403796e599a039d7382b91": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libbasicobjects-0.1.1-39.el8.x86_64.rpm" + }, + "sha256:563b3741d26b6af963fdb7b0634e0791445a707d0b6093ac71c3224299241639": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-slip-dbus-0.6.4-11.el8.noarch.rpm" + }, + "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libarchive-3.3.3-1.el8.x86_64.rpm" + }, + "sha256:58026205b6bd63438307d6afc0b0fb15d1d2d09736cbd0f8b245fadffec81003": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nfs-utils-2.3.3-41.el8.x86_64.rpm" + }, + "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64.rpm" + }, + "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libdnf-0.55.0-2.el8.x86_64.rpm" + }, + "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.3.3-2.el8.x86_64.rpm" + }, + "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libibverbs-32.0-4.el8.x86_64.rpm" + }, + "sha256:59ba5bf69953a5a2e902b0f08b7187b66d84968852d46a3579a059477547d1a0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libselinux-2.9-5.el8.x86_64.rpm" + }, + "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-20200713-1.git51d1222.el8.noarch.rpm" + }, + "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxml2-2.9.7-9.el8.x86_64.rpm" + }, + "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-iniparse-0.4-31.el8.noarch.rpm" + }, + "sha256:5c68635cb03533a38d4a42f6547c21a1d5f9952351bb01f3cf865d2621a6e634": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lzo-2.08-14.el8.x86_64.rpm" + }, + "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hwdata-0.314-8.7.el8.noarch.rpm" + }, + "sha256:5deb66cc8e9094931cf74002186385c1ebdc022936cd8f10ec4c4675a99b9b2a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsoup-2.62.3-2.el8.x86_64.rpm" + }, + "sha256:5e24dd39ae59ef7b7a386f28509cc80d8fabb23f0932e52ea365cf064ff76c59": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/numactl-libs-2.0.12-11.el8.x86_64.rpm" + }, + "sha256:5f3d3d3b27b7df75738d1ee31112c60d39c54b8d7f92b6900606187f6cffce1d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chrony-3.5-1.el8.x86_64.rpm" + }, + "sha256:5f445b2b2a4bdeabd555e25dfa10119d9f4e4e500d1c4492219dd8647f119ce2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libX11-common-1.6.8-4.el8.noarch.rpm" + }, + "sha256:5f45a2ff1a9c9f3d4fcae463c1ca70b1a16caccc59816ce391f064c9d8b9d8ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:5f4f256128dba88a13599d6458908c24c0e9c18d8979ae44bf5734da8e7cab70": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jinja2-2.10.1-2.el8_0.noarch.rpm" + }, + "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxcrypt-4.1.1-4.el8.x86_64.rpm" + }, + "sha256:60b0cbc5e435be346bb06f45f3336f8936d7362022d8bceda80ff16bc3fb7dd2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonpointer-1.10-11.el8.noarch.rpm" + }, + "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/info-6.5-6.el8.x86_64.rpm" + }, + "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-libs-5.2.4-3.el8.x86_64.rpm" + }, + "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gpgme-1.13.1-7.el8.x86_64.rpm" + }, + "sha256:6327624b7b0d726a3c95f2245619efb1df8e70023fadcc8158afed39f57859e7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdhash-0.5.0-39.el8.x86_64.rpm" + }, + "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpsl-0.20.2-6.el8.x86_64.rpm" + }, + "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsepol-2.9-2.el8.x86_64.rpm" + }, + "sha256:63a6b7765828081cc88b36d10c68621acbebf02a7c2e7d7f1a1217c8742ea6ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-1.5.2-4.el8.x86_64.rpm" + }, + "sha256:657db08f58b6776f48fda17d2b734a26918b431253f9e4eba9fd5a46d9f89aef": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-tui-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pip-wheel-9.0.3-19.el8.noarch.rpm" + }, + "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.175-3.el8.x86_64.rpm" + }, + "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20180723-1.el8.noarch.rpm" + }, + "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcom_err-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:67419432fe7d373f8e5ddaa7b0dd1c25389608bf2f4ee76dbabcc2d96eb8c9d0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-country-20180605-1.el8.noarch.rpm" + }, + "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-smime-2.2.20-2.el8.x86_64.rpm" + }, + "sha256:69fc3075751693fe23c0658d1e97c0e14366d8833a78ab75b951596b07345827": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbxtool-8-5.el8.x86_64.rpm" + }, + "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-0.23.22-1.el8.x86_64.rpm" + }, + "sha256:6aa1e29a4d805fc36c3196788fe78cb4552e2ebec8b3d0f8d32974e6a97025f2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-perf-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:6b740563ba5858573ff3c2d2a827aeaf6e7166178e36066755d2cde4cf8a016f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libref_array-0.1.5-39.el8.x86_64.rpm" + }, + "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsemanage-2.9-6.el8.x86_64.rpm" + }, + "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sqlite-libs-3.26.0-13.el8.x86_64.rpm" + }, + "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-libs-2.9.7-12.el8.x86_64.rpm" + }, + "sha256:6cd7444c22d56201f61fed5fd741b44cfaae18d95b811d25c5f0ffe2f8e55a8f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-kcm-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gzip-1.9-12.el8.x86_64.rpm" + }, + "sha256:6ef6573d410f9e9dfa4bb4a4e1b2ff2f7555b50b1fc4b2ff8fb890e46b4b8d8a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-systemd-234-8.el8.x86_64.rpm" + }, + "sha256:6fc3208be9c78bf1f843f9f7d4d3f04096f116dc056285142235bf76472ba382": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/timedatex-0.5-3.el8.x86_64.rpm" + }, + "sha256:6fded933d86737a21c5cd77399e68e3912125c2da1afb95592e7089ba5594056": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/sscg-2.3.3-14.el8.x86_64.rpm" + }, + "sha256:700b9050aa490b5eca6d1f8630cbebceb122fce11c370689b5ccb37f5a43ee2f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fontpackages-filesystem-1.44-22.el8.noarch.rpm" + }, + "sha256:708a8fd75f7c6987d66e2d62de664b5a84c6f75fd4e5230e244681897b15a25d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcollection-0.7.0-39.el8.x86_64.rpm" + }, + "sha256:70b5e4e580da72969ad3bb144c15293910b7d679e195c118cee60d8320f01851": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuser-0.62-23.el8.x86_64.rpm" + }, + "sha256:7115a12fad224b469419e19ee5c0d38322f467fe7a1c441c1b0239b197baac2a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-nfs-idmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tpm2-tss-2.3.2-3.el8.x86_64.rpm" + }, + "sha256:71fcbbec3aa152bc1427cb4d597375b008438f6259b20cfcb68fff21eef80f91": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-anacron-1.5.2-4.el8.x86_64.rpm" + }, + "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libelf-0.182-3.el8.x86_64.rpm" + }, + "sha256:7443e0df4d55a40a0ba3cec4cd4da620200a255605e31a137bee001cb4b43af3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rsync-3.1.3-12.el8.x86_64.rpm" + }, + "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libevent-2.1.8-5.el8.x86_64.rpm" + }, + "sha256:74b842ba3352d7c4ada7e991aeadf8749f058a4d00ccc6f79f1c82a281497cb7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iputils-20180629-6.el8.x86_64.rpm" + }, + "sha256:759d9669521b99f19f60f8067e64b4aa42942e22ca62b7f98503f6a932125783": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gsettings-desktop-schemas-3.32.0-5.el8.x86_64.rpm" + }, + "sha256:760141c74870a93505dbba2174034287b6a97b9bb2b12c5ca2b7af056773b45b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-config-generic-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-1.18-1.el8.x86_64.rpm" + }, + "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-targeted-3.14.3-62.el8.noarch.rpm" + }, + "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-239-44.el8.x86_64.rpm" + }, + "sha256:774d214a379c0b729d7e989f9d5094fdfda7df68c1e792ba9200542032f04c91": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-libs-1.44-5.el8.x86_64.rpm" + }, + "sha256:776a182ecaab9f86c7e869db2eb2deea1f291caee701cddbd752da8cd3c57458": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/prefixdevname-0.1.0-6.el8.x86_64.rpm" + }, + "sha256:7800dfd0d4769a898d11db330fdb5b19614533628a45fe91cce406d6cd1f0c71": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cloud-utils-growpart-0.31-1.el8.noarch.rpm" + }, + "sha256:78596f457c3d737a97a4edfe9a03a01f593606379c281701ab7f7eba13ecaf18": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-1.0.6-26.el8.x86_64.rpm" + }, + "sha256:78ade36bcaa352e60732f94d0f668ea62a34e88aa2cadd4cb0d1ec0f21392525": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libxml2-2.9.7-9.el8.x86_64.rpm" + }, + "sha256:78c43d8a15ca018de1803e4baac5819e1baab1963fd31f1e44e54e8a573acbfc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-idna-2.5-5.el8.noarch.rpm" + }, + "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodulemd-2.9.4-2.el8.x86_64.rpm" + }, + "sha256:79277d872ae6035009a1a40e914ec09bca21aefcac9d73dee65880c86387f3c9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-efi-x64-2.02-93.el8.x86_64.rpm" + }, + "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openldap-2.4.46-16.el8.x86_64.rpm" + }, + "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-data-4.4.2-5.el8.noarch.rpm" + }, + "sha256:7a7963e2052bfb45b8569f64619dc5cb92fe8aeb78c754b7cf948b9784646785": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hostname-3.20-6.el8.x86_64.rpm" + }, + "sha256:7bc2e2a25b04b52a4ec5de2858e75eb07f16495d4de5f7ce926777130302cfe3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libestr-0.1.10-1.el8.x86_64.rpm" + }, + "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libzstd-1.4.4-1.el8.x86_64.rpm" + }, + "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-libs-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libidn2-2.2.0-1.el8.x86_64.rpm" + }, + "sha256:7e2804a4494d4179ed50c0c99da1e30c3a6abf8db889c1412b458943cff0e3e5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gobject-introspection-1.56.1-1.el8.x86_64.rpm" + }, + "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libusbx-1.0.23-4.el8.x86_64.rpm" + }, + "sha256:7e73df2868a12881f6b98fe025485e9e6345978511e2866132503e05b1ccefda": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cockpit-system-236-1.el8.noarch.rpm" + }, + "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:7ec48db9e1e9896f29a16cbea53cdeecdd7dd2bc278c06721ebca2e71e9dcd6d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-common-4.3.6-44.0.1.el8.noarch.rpm" + }, + "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libs-3.6.8-36.el8.x86_64.rpm" + }, + "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpcap-1.9.1-5.el8.x86_64.rpm" + }, + "sha256:7f506879c64e0bb4d98782d025f46fb9a07517487ae4cbebbb3985a98f4e2154": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pysocks-1.6.8-3.el8.noarch.rpm" + }, + "sha256:7fa8fbc576f7d54c388fa39fc3ed86bacb7964cac4544c48b3ffabcdcdc27b61": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/initscripts-10.00.12-1.el8.x86_64.rpm" + }, + "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-hmaccalc-1.2.0-2.el8.x86_64.rpm" + }, + "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/findutils-4.6.0-20.el8.x86_64.rpm" + }, + "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcurl-7.61.1-18.el8.x86_64.rpm" + }, + "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-0.19.8.1-17.el8.x86_64.rpm" + }, + "sha256:82ce159a9e4e4b6b4fdce9ad954aa507f67108430bd261a4dcd826e44d0152a4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pyserial-3.1.1-8.el8.noarch.rpm" + }, + "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/util-linux-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libcomps-0.1.11-5.el8.x86_64.rpm" + }, + "sha256:839c62cd7fc7e152decded6f28c80b5f7b8f34a5e319057867b38b26512cee67": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/snappy-1.1.8-3.el8.x86_64.rpm" + }, + "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-gpg-keys-8-2.el8.noarch.rpm" + }, + "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgpg-error-1.31-1.el8.x86_64.rpm" + }, + "sha256:85eb614fc608f3b3f4bbd08d4a3b0ff6af188677ea4e009be021680c521cedae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonpatch-1.21-2.el8.noarch.rpm" + }, + "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcroco-0.6.12-4.el8_2.1.x86_64.rpm" + }, + "sha256:881bdb9aa79de1933dc553fcf0b6597897b60e0e4b73a369572e4d9460fab439": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gssproxy-0.8.0-19.el8.x86_64.rpm" + }, + "sha256:8842ae7b6585715e5daeb82bebccd993a81a3e0697ea105735b7a920feb1a7ed": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efivar-37-4.el8.x86_64.rpm" + }, + "sha256:8846acb4df4306e2274bd8a496e0c47ee1fea1d211f6d3369e261ec863fddcb1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sos-4.0-7.el8.noarch.rpm" + }, + "sha256:8852282172440cd618c695356449cbc035be4091b2a0833c785c8e42cc1df0e6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnfsidmap-2.3.3-41.el8.x86_64.rpm" + }, + "sha256:8891a9a4707611c13a5693b195201dd940254ffdb03cf5742952329282bb8cb7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pycparser-2.14-14.el8.noarch.rpm" + }, + "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-2.9-5.el8.x86_64.rpm" + }, + "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-udev-239-44.el8.x86_64.rpm" + }, + "sha256:8cad468b07c285444728b39817df72c77f7a96e06367e63f09ac979d3349d386": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/subscription-manager-1.28.10-1.el8.x86_64.rpm" + }, + "sha256:8cb26212a1235f514b9529868ca86e119ad269755ba4c5e5cf1832523a4efc14": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/authselect-compat-1.2.2-1.el8.x86_64.rpm" + }, + "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:8d6742dce47f8ed65e222864872e919f30c678f5df1e99c134fba8a0fc7f454d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-libs-0.115-11.el8.x86_64.rpm" + }, + "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libss-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-2.28-147.el8.x86_64.rpm" + }, + "sha256:913d735c486bf4f564d91bfb247ade86f7567d6d7a7631d16b95e89fd2d0c3ba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/setroubleshoot-server-3.3.24-2.el8.x86_64.rpm" + }, + "sha256:918518368513d162d772dfc5d16536ad2799276bcba2f47514a1c7098de2b43f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtalloc-2.3.1-2.el8.x86_64.rpm" + }, + "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/os-prober-1.74-6.el8.x86_64.rpm" + }, + "sha256:92d0b9ec103da224c892da489441a7beec1df28e2a0962b56a949a1e66372bf6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-plugin-subscription-manager-1.28.10-1.el8.x86_64.rpm" + }, + "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-unbound-1.7.3-15.el8.x86_64.rpm" + }, + "sha256:941a9068b8fa524ecac58d37f941b95fbdcd9e38bd87c7f9d1330c5925a52a20": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-plugins-core-4.0.18-3.el8.noarch.rpm" + }, + "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-setuptools-39.2.0-6.el8.noarch.rpm" + }, + "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-1.02.175-3.el8.x86_64.rpm" + }, + "sha256:94cb8dceb47a5b01e3c0542ea3b48601d720325da28e6e6d89ae529e4fddcd97": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdk-pixbuf2-2.36.12-5.el8.x86_64.rpm" + }, + "sha256:960f841e4a286b6b9511d47e6736753e4d1f0fd05395a078bacccfb1c8b164aa": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fontconfig-2.13.1-3.el8.x86_64.rpm" + }, + "sha256:9664aba8dfd6bd6fda669fcf8f6ff04914305a6373b09d8b675322c7337b9c36": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/teamd-1.31-2.el8.x86_64.rpm" + }, + "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre-8.42-4.el8.x86_64.rpm" + }, + "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libseccomp-2.4.3-1.el8.x86_64.rpm" + }, + "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuuid-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:9869db60ee2b6d8f2115937857fb0586802720a75e043baf21514011a9fa79aa": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXext-1.3.4-1.el8.x86_64.rpm" + }, + "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lua-libs-5.3.4-11.el8.x86_64.rpm" + }, + "sha256:98a6386df94fc9595365c3ecbc630708420fa68d1774614a723dec4a55e84b9c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-glib-1.4.4-1.el8.x86_64.rpm" + }, + "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-common-1.12.8-12.el8.noarch.rpm" + }, + "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pinentry-1.1.0-2.el8.x86_64.rpm" + }, + "sha256:9b121a03314f1f0822a58059efba09944df192c35e22267f39137f70a28cda1c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstemmer-0-10.585svn.el8.x86_64.rpm" + }, + "sha256:9c7a5a6f73c8e32559226c54d229cb25304a81a853af22d9f829b9bb09b21f53": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-markupsafe-0.23-19.el8.x86_64.rpm" + }, + "sha256:9c849b1d4fd605ae749fd9d090715b6034520af871c23729cd4003f22e0990de": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/passwd-0.80-3.el8.x86_64.rpm" + }, + "sha256:9d160cdfba107ddc0613e169311bf57077c04e71a052a57704f3bdb64729d565": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/c-ares-1.13.0-5.el8.x86_64.rpm" + }, + "sha256:9d433d8c058e59c891c0852b95b3b87795ea30a85889c77ba0b12f965517d626": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/psmisc-23.1-5.el8.x86_64.rpm" + }, + "sha256:9dbf3ceb7de5a727f1a36edd5add73dcd96c83f24afc81d78e254b518551da96": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-babel-2.5.1-5.el8.noarch.rpm" + }, + "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/setup-2.12.2-6.el8.noarch.rpm" + }, + "sha256:9eb9c1a67c5be04487cc133bdb8498eaf260e4d930a0143d2e1aa772e3d6cf64": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpipeline-1.5.0-2.el8.x86_64.rpm" + }, + "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-common-2.02-93.el8.noarch.rpm" + }, + "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libattr-2.4.48-3.el8.x86_64.rpm" + }, + "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-six-1.11.0-8.el8.noarch.rpm" + }, + "sha256:a06e1d34df03aaf429d290d5c281356fefe0ad510c229189405b88b3c0f40374": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/jansson-2.11-3.el8.x86_64.rpm" + }, + "sha256:a0b6a8d5530f5003f5c8d56211246cd1130a5b4dc1396dc50da70ce0e128b02c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/man-db-2.7.6.1-17.el8.x86_64.rpm" + }, + "sha256:a0c8f83cef355dd98d7750e3d8eb3e9f3e9f8f5e9a3ee441cb4bc4014c647e31": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/squashfs-tools-4.3-19.el8.x86_64.rpm" + }, + "sha256:a1d1bac6c4710e0a1a6e8a507b06a630dda6687f12642be0847768c14ce7271e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-1.44-5.el8.x86_64.rpm" + }, + "sha256:a205b1ca2ee6452bec8a2a6a5817f26ed60a5490b99b333c0b3baf8171ef0c71": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cockpit-ws-236-1.el8.x86_64.rpm" + }, + "sha256:a217b0fbe9757a0225b66d16c1668cdf5cb2aa69c68b89e79783abd507f2e7bf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-libs-1.2.2-1.el8.x86_64.rpm" + }, + "sha256:a2418e8e12144d4e84965298e7bbefedc876c0d0d93771afb9b5c6c2eb139dc0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pip-9.0.3-19.el8.noarch.rpm" + }, + "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xkeyboard-config-2.28-1.el8.noarch.rpm" + }, + "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcomps-0.1.11-5.el8.x86_64.rpm" + }, + "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-legacy-2.0.4-10.el8.noarch.rpm" + }, + "sha256:a456039834ccc5432949120f1d80b18329b552cf44d1b59ea1b60d2192e7bc5c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iproute-5.9.0-2.el8.x86_64.rpm" + }, + "sha256:a5228fc876cffc7dc79769ada5653cb9bfb80d469fb3c9f0acc14a1a0d15782d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtdb-1.4.3-1.el8.x86_64.rpm" + }, + "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-minimal-2.02-93.el8.x86_64.rpm" + }, + "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/zlib-1.2.11-17.el8.x86_64.rpm" + }, + "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xfsprogs-5.0.0-8.el8.x86_64.rpm" + }, + "sha256:a7f9ae54f45ca4fcecf78d9885d12a789f7325119794178bfa2814c6185a953d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib-networking-2.56.1-1.1.el8.x86_64.rpm" + }, + "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-repos-8-2.el8.noarch.rpm" + }, + "sha256:a8a27e1ffbb92356d6376334687b9eaa0cb5f2eece2670128f3a01e391e9f3bb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dejavu-sans-mono-fonts-2.35-7.el8.noarch.rpm" + }, + "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-common-8.30-8.el8.x86_64.rpm" + }, + "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:a9ec13abf63c69913acc1ac7070ab315c8b5a58c6006c3dfc5b27662f7f22260": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-clients-8.0p1-5.el8.x86_64.rpm" + }, + "sha256:aa0007192287faeaecc72d9fa48efdb3108c764d450dc8fea65474476da32c45": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pyudev-0.21.0-7.el8.noarch.rpm" + }, + "sha256:aa1835fd302a37b84ac256db5dd0de09bd9883a5a07775aedb491faf46b18ee0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-urllib3-1.24.2-5.el8.noarch.rpm" + }, + "sha256:aa938dc6f13d0d57ca811b8c299b1017723fa419997b87754f74db770430c2d9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-3.6.8-36.el8.x86_64.rpm" + }, + "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnutls-3.6.14-7.el8_3.x86_64.rpm" + }, + "sha256:ab1be3dcea74c7a7fac49f9a1cad4113fded2d3edabb61b29ed8489a737033fe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-libs-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:acec114d3d071379d70634e0c9c097cce38aa418500d010a8057b3fa1f69b27e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-librepo-1.12.0-3.el8.x86_64.rpm" + }, + "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcc-8.4.1-1.el8.x86_64.rpm" + }, + "sha256:ad2fb5876a4be399a0bcbb1b45f796229186b557d100c5f8f9017955dfd20065": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/oddjob-mkhomedir-0.34.7-1.el8.x86_64.rpm" + }, + "sha256:addf80c52d794aed47874eb9d5ddbbaa90cb248fda1634d793054a41da0d92d7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-audit-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm" + }, + "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-libs-0.19.8.1-17.el8.x86_64.rpm" + }, + "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-libs-1.5.10-6.el8.x86_64.rpm" + }, + "sha256:b00855013100d3796e9ed6d82b1ab2d4dc7f4a3a3fa2e186f6de8523577974a0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/groff-base-1.22.3-18.el8.x86_64.rpm" + }, + "sha256:b0149d85f0172e98866ff2483660af2cf6c6fa0c8f9cab2c51cc2af479c9e319": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm" + }, + "sha256:b028aa2b393a124c5bf8665f9111caa9e4c2aa757d880b100c1616c207848a3f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rhsm-icons-1.28.10-1.el8.noarch.rpm" + }, + "sha256:b06fa62d0a585a7bc3b9d3341923736b3ee4b6cc6d7ca83bebcb97225ca86ac9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libini_config-1.3.1-39.el8.x86_64.rpm" + }, + "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shadow-utils-4.6-12.el8.x86_64.rpm" + }, + "sha256:b1871d8ac1abaf5e809448c5f37e32487f177aee3080d9033efb4b160f755aba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-client-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-39.2.0-6.el8.noarch.rpm" + }, + "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-tools-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:b2cd2dc5cf9c1c118053e7e650c6d910b1d37e810a38d90de27d80a04b702e39": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dmidecode-3.2-8.el8.x86_64.rpm" + }, + "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pam-1.3.1-14.el8.x86_64.rpm" + }, + "sha256:b3bc3f1c9e8028a177599f1ed9cb6c31d2d6e75111e34623d25e736d3ddcf8fd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tuned-2.15.0-1.el8.noarch.rpm" + }, + "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libassuan-2.5.1-3.el8.x86_64.rpm" + }, + "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsolv-0.7.16-2.el8.x86_64.rpm" + }, + "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/librepo-1.12.0-3.el8.x86_64.rpm" + }, + "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-hawkey-0.55.0-2.el8.x86_64.rpm" + }, + "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib2-2.56.4-9.el8.x86_64.rpm" + }, + "sha256:b7dbc8efe4e3de5b47742959530182be455a17a7fdc3cd289d15316ae8f54223": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/PackageKit-1.1.12-6.el8.x86_64.rpm" + }, + "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-1.1.1g-12.el8_3.x86_64.rpm" + }, + "sha256:b8e4cfecbbe7d2d6d9f3003432e826398f6bea21d5aba11a17ee74358cb84a6e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtevent-0.10.2-2.el8.x86_64.rpm" + }, + "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libreport-filesystem-2.9.5-15.el8.x86_64.rpm" + }, + "sha256:babad6e897ab2e5b46386edaf34dbc77649bb3705df50190c022d4b6f54f15de": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/PackageKit-glib-1.1.12-6.el8.x86_64.rpm" + }, + "sha256:bad350fece3f69757d9345ad97acdf1ba72e8d09ed2162fbfe4cc128039594e1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/yum-utils-4.0.18-3.el8.noarch.rpm" + }, + "sha256:bafc2680bd298f0fac70854224ef03b7098d4c46ee35e270f6fd58d2e812ff1b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-schedutils-0.6-6.el8.x86_64.rpm" + }, + "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lz4-libs-1.8.3-2.el8.x86_64.rpm" + }, + "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gawk-4.2.1-2.el8.x86_64.rpm" + }, + "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-ng-0.7.9-5.el8.x86_64.rpm" + }, + "sha256:bce152ddd2f05f892e5ce483a7c12606ba7d2c42108402fc9609ada04048e6df": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/microcode_ctl-20201112-2.el8.x86_64.rpm" + }, + "sha256:bcf25aae89f7368b16346bc1ec92850175bcc2312bf7a5e74bc3c512bcd345b0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crontabs-1.11-17.20190603git.el8.noarch.rpm" + }, + "sha256:be628d396303d6547b9d7239897fbf4fad7447375cb5e898b394a458f420b550": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/slang-2.3.2-3.el8.x86_64.rpm" + }, + "sha256:bfa39369bd3c36833126b6f46b747de0736a66835d97196195c0810161c24549": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pydbus-0.6.0-5.el8.noarch.rpm" + }, + "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hardlink-1.3-6.el8.x86_64.rpm" + }, + "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-2.9-12.el8.x86_64.rpm" + }, + "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-build-libs-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/krb5-libs-1.18.2-8.el8.x86_64.rpm" + }, + "sha256:c357a350aa169402db3c898c7edcfee333e1d11a44f62bbeaba3fd3d2f31644d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libndp-1.7-3.el8.x86_64.rpm" + }, + "sha256:c39a53566ad66d6db9e101ca9a6db316843a1d1f6f5ac5f2286c6028638a8ab7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dmidecode-3.12.2-15.el8.x86_64.rpm" + }, + "sha256:c3b8c553b166491d3114793e198cd1aad95e494d177af8d0dc7180b8b841124d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodman-2.0.1-17.el8.x86_64.rpm" + }, + "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmetalink-0.1.3-7.el8.x86_64.rpm" + }, + "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-5.el8.x86_64.rpm" + }, + "sha256:c44dbbff4fe503f5f49b71ab17db7848c6c67fe19d9a4cc6cef59cc6dd15f1a6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:c4a5df7ec884bdcc929e73e066c7def89cfb8cf53306ffcf9f33a5c9e4ae84c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-plugins-core-4.0.18-3.el8.noarch.rpm" + }, + "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/diffutils-3.6-6.el8.x86_64.rpm" + }, + "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-1.el8.x86_64.rpm" + }, + "sha256:c5b5967a094ced90899052a82e2c245529b75ba3f46e0ce1a89cfc95edb935ea": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dateutil-2.6.1-6.el8.noarch.rpm" + }, + "sha256:c6f27b6e01d80e756408e3c1451e4af00e7d02da0aa24402644c0785118753fe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-39.2.0-6.el8.noarch.rpm" + }, + "sha256:c746d43bd63dd184b8c585dd7323e261567928e521e830720d4754fca76157e0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-ethtool-0.14-3.el8.x86_64.rpm" + }, + "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libutempter-1.1.6-14.el8.x86_64.rpm" + }, + "sha256:c8fc05dd997477fc80e2f3195e719ca2e569fc8997f05a64a13c52c8358e8239": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lsscsi-0.32-2.el8.x86_64.rpm" + }, + "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-modules-2.02-93.el8.noarch.rpm" + }, + "sha256:c9597eecf39a25497b2ac3c69bc9777eda05b9eaa6d5d29d004a81d71a45d0d7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libproxy-0.4.15-5.2.el8.x86_64.rpm" + }, + "sha256:c9df7c58da59500e1717e435c565e221daa344212db8e83eb33b6a9c8e9a67bb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/newt-0.52.20-11.el8.x86_64.rpm" + }, + "sha256:ca82090f18d47e454cc512e832bf3ec771edf65299e3c1d56d5df9fab0428869": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/rsyslog-8.1911.0-7.el8.x86_64.rpm" + }, + "sha256:cad76a2802c5f355b527df3cabde70bd58b31ec4b7de3b1ac15a429cda5b9b03": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/linux-firmware-20201218-102.git05789708.el8.noarch.rpm" + }, + "sha256:cad86777bcb265db0da766952ff63e8d33f0fd4f3b90b22d0a1da587a785db44": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-city-20180605-1.el8.noarch.rpm" + }, + "sha256:cb5072917ce75dbde8fe474fa872db85da5dbac59cc1eb4a9125e7b6280f254e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-1.2.2-1.el8.x86_64.rpm" + }, + "sha256:cbcade4487fbf372b487b9f82ed85e04ff037551c96c4b461abc3716338ff9c4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sudo-1.8.29-7.el8.x86_64.rpm" + }, + "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpng-1.6.34-5.el8.x86_64.rpm" + }, + "sha256:ce43ade7d1cb2519c12119621990ac8075c2f9e7577c739990ca949d6c42737a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-cairo-1.16.3-6.el8.x86_64.rpm" + }, + "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-2.26-4.el8.x86_64.rpm" + }, + "sha256:d1e8c7a00924d1a6dee44ade189025853a501d4f77c73f3bfc006aa907d97daf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-ply-3.9-9.el8.noarch.rpm" + }, + "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-trust-0.23.22-1.el8.x86_64.rpm" + }, + "sha256:d367fa4bad5f6494c390791b570c43ca15fc65db3aa14544ead87571364cd426": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/subscription-manager-cockpit-1.28.10-1.el8.noarch.rpm" + }, + "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-2.02-93.el8.x86_64.rpm" + }, + "sha256:d46e4c5067f182974d74691885cef31100c9cef59966c4ef399a284be3b91608": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/quota-4.04-12.el8.x86_64.rpm" + }, + "sha256:d5c283da0d2666742635754626263f6f78e273cd46d83d2d66ed43730a731685": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/checkpolicy-2.9-1.el8.x86_64.rpm" + }, + "sha256:d655ee126614010e72bac89b7ecaf38b515647181a22940cb774647442d28beb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efi-filesystem-3-3.el8.noarch.rpm" + }, + "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-0.9.4-2.el8.x86_64.rpm" + }, + "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmount-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:d967d6bbb33bf7a295a64807f81875c84e82a8ecc59b6c72fe955141b1660d39": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rootfiles-8.1-22.el8.noarch.rpm" + }, + "sha256:da77940ecadc9edb5d14aad51e4bf06664e5763fe6e46b20364732ec3aa2e08a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:dae52ddd215b506d1805b66873194df5043fd758d42960dee68f029eab329b42": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdaemon-0.14-15.el8.x86_64.rpm" + }, + "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-2.9.6-15.el8.x86_64.rpm" + }, + "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-libs-1.8.4-17.el8.x86_64.rpm" + }, + "sha256:dc4f0cc77cf4c89469cf0f9c88b52f2c8c2c35f4e6d714bbdae2083440483311": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cloud-init-20.3-10.el8.noarch.rpm" + }, + "sha256:dc835194ecfa6ebda81e0a764c953eff3422a61863e9a3e0dc74ea4cae7a4d94": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-linux-procfs-0.6.3-1.el8.noarch.rpm" + }, + "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ca-certificates-2020.2.41-80.0.el8_2.noarch.rpm" + }, + "sha256:dd80a8169e27959a27651616e998be8b49ffdca141744177cb42126ff0ae12b5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dejavu-fonts-common-2.35-7.el8.noarch.rpm" + }, + "sha256:ddbbf3a8191dbc1a9fcb67ccf9cea0d34dbe9bbb74780e1359933cd03ee24451": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pixman-0.38.4-1.el8.x86_64.rpm" + }, + "sha256:dea18976861575d40ffca814dee08a225376c7828a5afc9e5d0a383edd3d8907": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipcalc-0.2.4-4.el8.x86_64.rpm" + }, + "sha256:df417aae69f2ba5bd4324a14dcfd30dfbfefba440085bbf916c5ef19286cba20": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python36-3.6.8-2.module_el8.4.0+666+456f5f48.x86_64.rpm" + }, + "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bash-4.4.19-14.el8.x86_64.rpm" + }, + "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-utils-5.3.28-40.el8.x86_64.rpm" + }, + "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.182-3.el8.x86_64.rpm" + }, + "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxkbcommon-0.9.1-1.el8.x86_64.rpm" + }, + "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/brotli-1.0.6-3.el8.x86_64.rpm" + }, + "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libksba-1.3.5-7.el8.x86_64.rpm" + }, + "sha256:e76ffaf54db6ac36f0aa56c8013431c352c6187c8d674c6d468e25c573e31597": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpcbind-1.2.5-8.el8.x86_64.rpm" + }, + "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm" + }, + "sha256:e7ee4b6d6456cb7da0332f5a6fb8a7c47df977bcf616f12f0455413765367e89": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-pkla-compat-0.1-12.el8.x86_64.rpm" + }, + "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mpfr-3.1.6-1.el8.x86_64.rpm" + }, + "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtasn1-4.13-3.el8.x86_64.rpm" + }, + "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-4.4.2-5.el8.noarch.rpm" + }, + "sha256:ebeb05a4a9cdd5d060859eabac1349029c0120615c98fc939e26664c030655c1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-jwt-1.6.1-2.el8.noarch.rpm" + }, + "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tar-1.30-5.el8.x86_64.rpm" + }, + "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/which-2.21-12.el8.x86_64.rpm" + }, + "sha256:ee4413fda60078f82c3b209557f0fc730871bb2a24cc380db6d01b511322ac85": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cairo-gobject-1.15.12-3.el8.x86_64.rpm" + }, + "sha256:eec162a2757ee2ffbbee95e1dbcd33318119e5113e53af877ce9416529a19082": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/usermode-1.113-1.el8.x86_64.rpm" + }, + "sha256:ef2734017b25f7e9e1abf67315a7d1c97216642b5dfb979c19b1a3f74cff1e54": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_certmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-misc-2.0.4-10.el8.noarch.rpm" + }, + "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/memstrack-0.1.11-1.el8.x86_64.rpm" + }, + "sha256:f0346c485da9a7e8c8d93624f335cbb25790a7f37c6c03e43232517bb73bbacb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shim-x64-15-15.el8_2.x86_64.rpm" + }, + "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rdma-core-32.0-4.el8.x86_64.rpm" + }, + "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-extra-2.02-93.el8.x86_64.rpm" + }, + "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-15.el8.x86_64.rpm" + }, + "sha256:f56992135d789147285215cb062960fedcdf4b3296c62658fa430caa2c20165c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setools-4.3.0-2.el8.x86_64.rpm" + }, + "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/procps-ng-3.3.15-6.el8.x86_64.rpm" + }, + "sha256:f602f145a2deb352013006744cd47e2e1ff9a740ddbeb9412e50e801b5dbe02a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-1.5.10-6.el8.x86_64.rpm" + }, + "sha256:f60f24ba76f7f9d9f42421153d296a279fb616165a27cf2c71657a901a425bb1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-team-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:f6f7907ccf8faa83a93e6d48801970aa45181a3a3c05ad7102b540a07534e318": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/qemu-img-4.2.0-35.module_el8.4.0+547+a85d02ba.x86_64.rpm" + }, + "sha256:f7e6debd0279cb07f0c805d90b707c187bb55b9ee34643898eec800b79fa6b1b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ethtool-5.8-5.el8.x86_64.rpm" + }, + "sha256:f86fec6c6a844fbbfbf7c806d79dd7e72e4eef9c804472547a6d3ecf34cddca6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-glib-0.110-2.el8.x86_64.rpm" + }, + "sha256:f8bdaf5211c6fc72c8f60c7ddd59b8ca124ab26d2670ee6490a7fabb5177d919": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-8.0p1-5.el8.x86_64.rpm" + }, + "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsecret-0.18.6-1.el8.x86_64.rpm" + }, + "sha256:f94172554b8ceeab97b560d0b05c2e2df4b2e737471adce6eca82fd3209be254": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/less-530-1.el8.x86_64.rpm" + }, + "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-0.3.0-5.el8.x86_64.rpm" + }, + "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre2-10.32-2.el8.x86_64.rpm" + }, + "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-daemon-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:fda078d8edd4e0902246dd3121efb6c57cb8231dbb975380f9249c64163f0d88": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lshw-B.02.19.2-5.el8.x86_64.rpm" + }, + "sha256:fe0767b57c921cd1df4b53f8d73936cb8e2d870cb1ed1d8c22d33b6e04e947c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cockpit-bridge-236-1.el8.x86_64.rpm" + }, + "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-8.30-8.el8.x86_64.rpm" + }, + "sha256:fe944d9dd89d550d2aa44d33cfeb11c803b074bfcda0dbbad486c392bf1cc9d0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-common-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/readline-7.0-10.el8.x86_64.rpm" + }, + "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-pam-239-44.el8.x86_64.rpm" + }, + "sha256:ff3846c5910773af5466b5c3640ffd3c867c2bcbcccc11a7c11eb4438d9e3ae2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/quota-nls-4.04-12.el8.noarch.rpm" + }, + "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-lib-0.3.15-1.el8.x86_64.rpm" + } + } + } + }, + "pipeline": { + "build": { + "pipeline": { + "stages": [ + { + "name": "org.osbuild.rpm", + "options": { + "gpgkeys": [ + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n" + ], + "packages": [ + { + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "checksum": "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af", + "check_gpg": true + }, + { + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "checksum": "sha256:2c63399bee449fb6e921671a9bbf3356fda73f890b578820f7d926202e98a479", + "check_gpg": true + }, + { + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "checksum": "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178", + "check_gpg": true + }, + { + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "checksum": "sha256:c6f27b6e01d80e756408e3c1451e4af00e7d02da0aa24402644c0785118753fe", + "check_gpg": true + }, + { + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "checksum": "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393", + "check_gpg": true + }, + { + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "checksum": "sha256:a2418e8e12144d4e84965298e7bbefedc876c0d0d93771afb9b5c6c2eb139dc0", + "check_gpg": true + }, + { + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "checksum": "sha256:df417aae69f2ba5bd4324a14dcfd30dfbfefba440085bbf916c5ef19286cba20", + "check_gpg": true + }, + { + "checksum": "sha256:f6f7907ccf8faa83a93e6d48801970aa45181a3a3c05ad7102b540a07534e318", + "check_gpg": true + }, + { + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ] + } + }, + { + "name": "org.osbuild.selinux", + "options": { + "file_contexts": "etc/selinux/targeted/contexts/files/file_contexts" + } + } + ] + }, + "runner": "org.osbuild.centos8" + }, + "stages": [ + { + "name": "org.osbuild.rpm", + "options": { + "gpgkeys": [ + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n" + ], + "packages": [ + { + "checksum": "sha256:1d130b0daf86899c3987d59567303ce7ae44c3273f2d8d0f0625bef7e6bad16d", + "check_gpg": true + }, + { + "checksum": "sha256:41d9c9f8e17c83f73e51e90f02e08927bb9c836d033815c6cdddc6da44e321f0", + "check_gpg": true + }, + { + "checksum": "sha256:f60f24ba76f7f9d9f42421153d296a279fb616165a27cf2c71657a901a425bb1", + "check_gpg": true + }, + { + "checksum": "sha256:657db08f58b6776f48fda17d2b734a26918b431253f9e4eba9fd5a46d9f89aef", + "check_gpg": true + }, + { + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "checksum": "sha256:b0149d85f0172e98866ff2483660af2cf6c6fa0c8f9cab2c51cc2af479c9e319", + "check_gpg": true + }, + { + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "checksum": "sha256:cb5072917ce75dbde8fe474fa872db85da5dbac59cc1eb4a9125e7b6280f254e", + "check_gpg": true + }, + { + "checksum": "sha256:a217b0fbe9757a0225b66d16c1668cdf5cb2aa69c68b89e79783abd507f2e7bf", + "check_gpg": true + }, + { + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "checksum": "sha256:2d4cf3bd8b8046adfa869fbb5b472294469457f6445db36abcc227959be9adeb", + "check_gpg": true + }, + { + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "checksum": "sha256:78596f457c3d737a97a4edfe9a03a01f593606379c281701ab7f7eba13ecaf18", + "check_gpg": true + }, + { + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "checksum": "sha256:9d160cdfba107ddc0613e169311bf57077c04e71a052a57704f3bdb64729d565", + "check_gpg": true + }, + { + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "checksum": "sha256:d5c283da0d2666742635754626263f6f78e273cd46d83d2d66ed43730a731685", + "check_gpg": true + }, + { + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "checksum": "sha256:5f3d3d3b27b7df75738d1ee31112c60d39c54b8d7f92b6900606187f6cffce1d", + "check_gpg": true + }, + { + "checksum": "sha256:fe0767b57c921cd1df4b53f8d73936cb8e2d870cb1ed1d8c22d33b6e04e947c7", + "check_gpg": true + }, + { + "checksum": "sha256:7e73df2868a12881f6b98fe025485e9e6345978511e2866132503e05b1ccefda", + "check_gpg": true + }, + { + "checksum": "sha256:a205b1ca2ee6452bec8a2a6a5817f26ed60a5490b99b333c0b3baf8171ef0c71", + "check_gpg": true + }, + { + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "checksum": "sha256:63a6b7765828081cc88b36d10c68621acbebf02a7c2e7d7f1a1217c8742ea6ae", + "check_gpg": true + }, + { + "checksum": "sha256:71fcbbec3aa152bc1427cb4d597375b008438f6259b20cfcb68fff21eef80f91", + "check_gpg": true + }, + { + "checksum": "sha256:bcf25aae89f7368b16346bc1ec92850175bcc2312bf7a5e74bc3c512bcd345b0", + "check_gpg": true + }, + { + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "checksum": "sha256:f86fec6c6a844fbbfbf7c806d79dd7e72e4eef9c804472547a6d3ecf34cddca6", + "check_gpg": true + }, + { + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "checksum": "sha256:69fc3075751693fe23c0658d1e97c0e14366d8833a78ab75b951596b07345827", + "check_gpg": true + }, + { + "checksum": "sha256:dd80a8169e27959a27651616e998be8b49ffdca141744177cb42126ff0ae12b5", + "check_gpg": true + }, + { + "checksum": "sha256:a8a27e1ffbb92356d6376334687b9eaa0cb5f2eece2670128f3a01e391e9f3bb", + "check_gpg": true + }, + { + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "checksum": "sha256:084c55bef75a2ce2ab67aa4eeb6726ca59ea6d7c2b23bc6e4084f11aac7e17f8", + "check_gpg": true + }, + { + "checksum": "sha256:7ec48db9e1e9896f29a16cbea53cdeecdd7dd2bc278c06721ebca2e71e9dcd6d", + "check_gpg": true + }, + { + "checksum": "sha256:436e93b4c072f8b6f90f41a037d017406be10c18efafc8c634f6da59bbac1105", + "check_gpg": true + }, + { + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "checksum": "sha256:b2cd2dc5cf9c1c118053e7e650c6d910b1d37e810a38d90de27d80a04b702e39", + "check_gpg": true + }, + { + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "checksum": "sha256:92d0b9ec103da224c892da489441a7beec1df28e2a0962b56a949a1e66372bf6", + "check_gpg": true + }, + { + "checksum": "sha256:c4a5df7ec884bdcc929e73e066c7def89cfb8cf53306ffcf9f33a5c9e4ae84c7", + "check_gpg": true + }, + { + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "checksum": "sha256:760141c74870a93505dbba2174034287b6a97b9bb2b12c5ca2b7af056773b45b", + "check_gpg": true + }, + { + "checksum": "sha256:4a28d9fa9785d7e8515deaf5e1a381a553c37b02a81a20ddd4fa202b33413ac9", + "check_gpg": true + }, + { + "checksum": "sha256:16b34582f757aebb9bc7b0a0475458cbb186238b5b528ef8fdb099cb739ba383", + "check_gpg": true + }, + { + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "checksum": "sha256:d655ee126614010e72bac89b7ecaf38b515647181a22940cb774647442d28beb", + "check_gpg": true + }, + { + "checksum": "sha256:8842ae7b6585715e5daeb82bebccd993a81a3e0697ea105735b7a920feb1a7ed", + "check_gpg": true + }, + { + "checksum": "sha256:48bfe66d6f07baf1974355e8a3ebbc44f2d9812b823ddfff1c15f35635a8dc4e", + "check_gpg": true + }, + { + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "checksum": "sha256:f7e6debd0279cb07f0c805d90b707c187bb55b9ee34643898eec800b79fa6b1b", + "check_gpg": true + }, + { + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "checksum": "sha256:960f841e4a286b6b9511d47e6736753e4d1f0fd05395a078bacccfb1c8b164aa", + "check_gpg": true + }, + { + "checksum": "sha256:700b9050aa490b5eca6d1f8630cbebceb122fce11c370689b5ccb37f5a43ee2f", + "check_gpg": true + }, + { + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "checksum": "sha256:94cb8dceb47a5b01e3c0542ea3b48601d720325da28e6e6d89ae529e4fddcd97", + "check_gpg": true + }, + { + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "checksum": "sha256:a7f9ae54f45ca4fcecf78d9885d12a789f7325119794178bfa2814c6185a953d", + "check_gpg": true + }, + { + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "checksum": "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af", + "check_gpg": true + }, + { + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "checksum": "sha256:7e2804a4494d4179ed50c0c99da1e30c3a6abf8db889c1412b458943cff0e3e5", + "check_gpg": true + }, + { + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "checksum": "sha256:b00855013100d3796e9ed6d82b1ab2d4dc7f4a3a3fa2e186f6de8523577974a0", + "check_gpg": true + }, + { + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "checksum": "sha256:79277d872ae6035009a1a40e914ec09bca21aefcac9d73dee65880c86387f3c9", + "check_gpg": true + }, + { + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "checksum": "sha256:759d9669521b99f19f60f8067e64b4aa42942e22ca62b7f98503f6a932125783", + "check_gpg": true + }, + { + "checksum": "sha256:881bdb9aa79de1933dc553fcf0b6597897b60e0e4b73a369572e4d9460fab439", + "check_gpg": true + }, + { + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "checksum": "sha256:3c6650fd6e32fdc24b8cf1f7a85ae8232661b47bda7019e49fd0eb474683ff23", + "check_gpg": true + }, + { + "checksum": "sha256:7a7963e2052bfb45b8569f64619dc5cb92fe8aeb78c754b7cf948b9784646785", + "check_gpg": true + }, + { + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "checksum": "sha256:7fa8fbc576f7d54c388fa39fc3ed86bacb7964cac4544c48b3ffabcdcdc27b61", + "check_gpg": true + }, + { + "checksum": "sha256:dea18976861575d40ffca814dee08a225376c7828a5afc9e5d0a383edd3d8907", + "check_gpg": true + }, + { + "checksum": "sha256:a456039834ccc5432949120f1d80b18329b552cf44d1b59ea1b60d2192e7bc5c", + "check_gpg": true + }, + { + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "checksum": "sha256:74b842ba3352d7c4ada7e991aeadf8749f058a4d00ccc6f79f1c82a281497cb7", + "check_gpg": true + }, + { + "checksum": "sha256:3acd2c8b6ea534811308b3138859b5fa150b89604bb60f16b0650747039d696a", + "check_gpg": true + }, + { + "checksum": "sha256:a06e1d34df03aaf429d290d5c281356fefe0ad510c229189405b88b3c0f40374", + "check_gpg": true + }, + { + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "checksum": "sha256:98a6386df94fc9595365c3ecbc630708420fa68d1774614a723dec4a55e84b9c", + "check_gpg": true + }, + { + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "checksum": "sha256:c44dbbff4fe503f5f49b71ab17db7848c6c67fe19d9a4cc6cef59cc6dd15f1a6", + "check_gpg": true + }, + { + "checksum": "sha256:aa938dc6f13d0d57ca811b8c299b1017723fa419997b87754f74db770430c2d9", + "check_gpg": true + }, + { + "checksum": "sha256:da77940ecadc9edb5d14aad51e4bf06664e5763fe6e46b20364732ec3aa2e08a", + "check_gpg": true + }, + { + "checksum": "sha256:5f45a2ff1a9c9f3d4fcae463c1ca70b1a16caccc59816ce391f064c9d8b9d8ae", + "check_gpg": true + }, + { + "checksum": "sha256:ab1be3dcea74c7a7fac49f9a1cad4113fded2d3edabb61b29ed8489a737033fe", + "check_gpg": true + }, + { + "checksum": "sha256:4280042747c9027c3252d360fa33d63490aa518858849115b20162a097a37146", + "check_gpg": true + }, + { + "checksum": "sha256:f602f145a2deb352013006744cd47e2e1ff9a740ddbeb9412e50e801b5dbe02a", + "check_gpg": true + }, + { + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "checksum": "sha256:f94172554b8ceeab97b560d0b05c2e2df4b2e737471adce6eca82fd3209be254", + "check_gpg": true + }, + { + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "checksum": "sha256:230820d3f9dbaa9dcd013836f4ba56d0514946bc05cac7727ef2aaff3a3dde26", + "check_gpg": true + }, + { + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "checksum": "sha256:5452b96e4b57c275dd41e48d55af1ca4f77ccfb3ae403796e599a039d7382b91", + "check_gpg": true + }, + { + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "checksum": "sha256:708a8fd75f7c6987d66e2d62de664b5a84c6f75fd4e5230e244681897b15a25d", + "check_gpg": true + }, + { + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "checksum": "sha256:dae52ddd215b506d1805b66873194df5043fd758d42960dee68f029eab329b42", + "check_gpg": true + }, + { + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "checksum": "sha256:6327624b7b0d726a3c95f2245619efb1df8e70023fadcc8158afed39f57859e7", + "check_gpg": true + }, + { + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "checksum": "sha256:08b76b0af07db4d3b27776a96bb7d0dc0f02b7219569676ac79036190d731d5b", + "check_gpg": true + }, + { + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "checksum": "sha256:b06fa62d0a585a7bc3b9d3341923736b3ee4b6cc6d7ca83bebcb97225ca86ac9", + "check_gpg": true + }, + { + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "checksum": "sha256:1b5187e9b694e439a059be58d8de5317f04278371d1195bf000b001ba8699197", + "check_gpg": true + }, + { + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "checksum": "sha256:30fab73ee155f03dbbd99c1e30fe59dfba4ae8fdb2e7213451ccc36d6918bfcc", + "check_gpg": true + }, + { + "checksum": "sha256:c3b8c553b166491d3114793e198cd1aad95e494d177af8d0dc7180b8b841124d", + "check_gpg": true + }, + { + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "checksum": "sha256:c357a350aa169402db3c898c7edcfee333e1d11a44f62bbeaba3fd3d2f31644d", + "check_gpg": true + }, + { + "checksum": "sha256:8852282172440cd618c695356449cbc035be4091b2a0833c785c8e42cc1df0e6", + "check_gpg": true + }, + { + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "checksum": "sha256:2e8d4ee76fa8678b0e4d6c0297b16f96e0116201bf96b36e8924b1b080abcddd", + "check_gpg": true + }, + { + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "checksum": "sha256:185f36b3af9367e6142233af358df22f23ee623697bc6a45c47091013707872e", + "check_gpg": true + }, + { + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "checksum": "sha256:9eb9c1a67c5be04487cc133bdb8498eaf260e4d930a0143d2e1aa772e3d6cf64", + "check_gpg": true + }, + { + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "checksum": "sha256:c9597eecf39a25497b2ac3c69bc9777eda05b9eaa6d5d29d004a81d71a45d0d7", + "check_gpg": true + }, + { + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "checksum": "sha256:6b740563ba5858573ff3c2d2a827aeaf6e7166178e36066755d2cde4cf8a016f", + "check_gpg": true + }, + { + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "checksum": "sha256:5deb66cc8e9094931cf74002186385c1ebdc022936cd8f10ec4c4675a99b9b2a", + "check_gpg": true + }, + { + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "checksum": "sha256:1230ddb5d92fe538a0526e3a9f05563a111ae4ff1978fc8e18de889974b5b46c", + "check_gpg": true + }, + { + "checksum": "sha256:ef2734017b25f7e9e1abf67315a7d1c97216642b5dfb979c19b1a3f74cff1e54", + "check_gpg": true + }, + { + "checksum": "sha256:377ad20c1681518bff1f40884589bddc4a692506384c7676f072ddf86ae429f9", + "check_gpg": true + }, + { + "checksum": "sha256:2c6dd4f21d9c4bde29f693d32e44f0d1c5dc73d78d013767df531d69bbfc6ed8", + "check_gpg": true + }, + { + "checksum": "sha256:370b74a811249b8f0bdfcd34137507f058a85196775e9d0d2bb244c100d194ae", + "check_gpg": true + }, + { + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "checksum": "sha256:9b121a03314f1f0822a58059efba09944df192c35e22267f39137f70a28cda1c", + "check_gpg": true + }, + { + "checksum": "sha256:53ae3ecd59ec61852cabbd039c748ed63ceb6a88da98587d4c33323ba4095154", + "check_gpg": true + }, + { + "checksum": "sha256:918518368513d162d772dfc5d16536ad2799276bcba2f47514a1c7098de2b43f", + "check_gpg": true + }, + { + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "checksum": "sha256:a5228fc876cffc7dc79769ada5653cb9bfb80d469fb3c9f0acc14a1a0d15782d", + "check_gpg": true + }, + { + "checksum": "sha256:0aaaaa29cc1bb4d358142db6eb7d12df9252a8166bf61956203878eed210785c", + "check_gpg": true + }, + { + "checksum": "sha256:b8e4cfecbbe7d2d6d9f3003432e826398f6bea21d5aba11a17ee74358cb84a6e", + "check_gpg": true + }, + { + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "checksum": "sha256:70b5e4e580da72969ad3bb144c15293910b7d679e195c118cee60d8320f01851", + "check_gpg": true + }, + { + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "checksum": "sha256:538899f9a39e085ef14bd34f84327c12b862981df1428bb1353ef4082ddd3a4c", + "check_gpg": true + }, + { + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "checksum": "sha256:cad76a2802c5f355b527df3cabde70bd58b31ec4b7de3b1ac15a429cda5b9b03", + "check_gpg": true + }, + { + "checksum": "sha256:0064a3aeff41fb7345c061956c35e4b9d0b8802954e717491fb6eb51028d22fd", + "check_gpg": true + }, + { + "checksum": "sha256:3cd092e6e03efb4bb49b91dedd52b43f891092d04a2ff040b9f2197ec2082511", + "check_gpg": true + }, + { + "checksum": "sha256:fda078d8edd4e0902246dd3121efb6c57cb8231dbb975380f9249c64163f0d88", + "check_gpg": true + }, + { + "checksum": "sha256:c8fc05dd997477fc80e2f3195e719ca2e569fc8997f05a64a13c52c8358e8239", + "check_gpg": true + }, + { + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "checksum": "sha256:5c68635cb03533a38d4a42f6547c21a1d5f9952351bb01f3cf865d2621a6e634", + "check_gpg": true + }, + { + "checksum": "sha256:a0b6a8d5530f5003f5c8d56211246cd1130a5b4dc1396dc50da70ce0e128b02c", + "check_gpg": true + }, + { + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "checksum": "sha256:bce152ddd2f05f892e5ce483a7c12606ba7d2c42108402fc9609ada04048e6df", + "check_gpg": true + }, + { + "checksum": "sha256:1c4b186665558747023a60d0d662d3780a1bc49e578062f4b70100c71ab2220c", + "check_gpg": true + }, + { + "checksum": "sha256:03b50a4ea5cf5655c67e2358fabb6e563eec4e7929e7fc6c4e92c92694f60fa0", + "check_gpg": true + }, + { + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "checksum": "sha256:c9df7c58da59500e1717e435c565e221daa344212db8e83eb33b6a9c8e9a67bb", + "check_gpg": true + }, + { + "checksum": "sha256:58026205b6bd63438307d6afc0b0fb15d1d2d09736cbd0f8b245fadffec81003", + "check_gpg": true + }, + { + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "checksum": "sha256:5e24dd39ae59ef7b7a386f28509cc80d8fabb23f0932e52ea365cf064ff76c59", + "check_gpg": true + }, + { + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "checksum": "sha256:f8bdaf5211c6fc72c8f60c7ddd59b8ca124ab26d2670ee6490a7fabb5177d919", + "check_gpg": true + }, + { + "checksum": "sha256:a9ec13abf63c69913acc1ac7070ab315c8b5a58c6006c3dfc5b27662f7f22260", + "check_gpg": true + }, + { + "checksum": "sha256:173a812d859c70f8db7b014d507c5cacb76c62ab5480c44be217f880465f42c7", + "check_gpg": true + }, + { + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "checksum": "sha256:4c5c7f3773c634c054b0a5fc1b40d0a8448b44bb5aff410bfa88facf9e2059ff", + "check_gpg": true + }, + { + "checksum": "sha256:9c849b1d4fd605ae749fd9d090715b6034520af871c23729cd4003f22e0990de", + "check_gpg": true + }, + { + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "checksum": "sha256:44c8d429eda78196b566c95603bdbcc23483c1dab3dd6e0efae29aa6d848a431", + "check_gpg": true + }, + { + "checksum": "sha256:09128c1b70cb8ea1a9bfbc6f3314dd5a8ba0c1a1886a82cd0fbe6845d48215dc", + "check_gpg": true + }, + { + "checksum": "sha256:8d6742dce47f8ed65e222864872e919f30c678f5df1e99c134fba8a0fc7f454d", + "check_gpg": true + }, + { + "checksum": "sha256:e7ee4b6d6456cb7da0332f5a6fb8a7c47df977bcf616f12f0455413765367e89", + "check_gpg": true + }, + { + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "checksum": "sha256:776a182ecaab9f86c7e869db2eb2deea1f291caee701cddbd752da8cd3c57458", + "check_gpg": true + }, + { + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "checksum": "sha256:9d433d8c058e59c891c0852b95b3b87795ea30a85889c77ba0b12f965517d626", + "check_gpg": true + }, + { + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "checksum": "sha256:addf80c52d794aed47874eb9d5ddbbaa90cb248fda1634d793054a41da0d92d7", + "check_gpg": true + }, + { + "checksum": "sha256:07ed1209e898552e6aeac0e6d148271d562c576f7d903cb7a99a697643068f58", + "check_gpg": true + }, + { + "checksum": "sha256:176ffcb2cf0fdcbdd2d8119cbd98eef60a30fdb0fb065a9382d2c95e90c79652", + "check_gpg": true + }, + { + "checksum": "sha256:1bd969e0521820374122f5132e5998d9bd2ab185be66565a7266096297419c8e", + "check_gpg": true + }, + { + "checksum": "sha256:2ebe28be2e0a413af31a0f49b6a2774670067cdbe48e723040b19922ae205d6b", + "check_gpg": true + }, + { + "checksum": "sha256:c5b5967a094ced90899052a82e2c245529b75ba3f46e0ce1a89cfc95edb935ea", + "check_gpg": true + }, + { + "checksum": "sha256:066f254f9ac7712b44214816de907a87eb8dfd0d2ea9570a7513db9a6617ba26", + "check_gpg": true + }, + { + "checksum": "sha256:0e9a8a0f823bf0ef948862f0ccb62353460bd07931e756c98f23908c1c526578", + "check_gpg": true + }, + { + "checksum": "sha256:c39a53566ad66d6db9e101ca9a6db316843a1d1f6f5ac5f2286c6028638a8ab7", + "check_gpg": true + }, + { + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "checksum": "sha256:941a9068b8fa524ecac58d37f941b95fbdcd9e38bd87c7f9d1330c5925a52a20", + "check_gpg": true + }, + { + "checksum": "sha256:c746d43bd63dd184b8c585dd7323e261567928e521e830720d4754fca76157e0", + "check_gpg": true + }, + { + "checksum": "sha256:15dc15a5be210707852f051f4d09949c063a7283edc7d4ca3d4289eedcc0b509", + "check_gpg": true + }, + { + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "checksum": "sha256:78c43d8a15ca018de1803e4baac5819e1baab1963fd31f1e44e54e8a573acbfc", + "check_gpg": true + }, + { + "checksum": "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178", + "check_gpg": true + }, + { + "checksum": "sha256:109d6db30e5515601b00954b2fd8750c421730a18afc12e1fa7781e24e5b0863", + "check_gpg": true + }, + { + "checksum": "sha256:ebeb05a4a9cdd5d060859eabac1349029c0120615c98fc939e26664c030655c1", + "check_gpg": true + }, + { + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "checksum": "sha256:acec114d3d071379d70634e0c9c097cce38aa418500d010a8057b3fa1f69b27e", + "check_gpg": true + }, + { + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "checksum": "sha256:59ba5bf69953a5a2e902b0f08b7187b66d84968852d46a3579a059477547d1a0", + "check_gpg": true + }, + { + "checksum": "sha256:451d0cb6e2284578e3279b4cbb5ec98e9d98a687556c6b424adf8f1282d4ef58", + "check_gpg": true + }, + { + "checksum": "sha256:78ade36bcaa352e60732f94d0f668ea62a34e88aa2cadd4cb0d1ec0f21392525", + "check_gpg": true + }, + { + "checksum": "sha256:dc835194ecfa6ebda81e0a764c953eff3422a61863e9a3e0dc74ea4cae7a4d94", + "check_gpg": true + }, + { + "checksum": "sha256:20874a9d40b12125c9e5b97fe4ccda3f94acbc03da1dec7299123901f5b56631", + "check_gpg": true + }, + { + "checksum": "sha256:6aa1e29a4d805fc36c3196788fe78cb4552e2ebec8b3d0f8d32974e6a97025f2", + "check_gpg": true + }, + { + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "checksum": "sha256:d1e8c7a00924d1a6dee44ade189025853a501d4f77c73f3bfc006aa907d97daf", + "check_gpg": true + }, + { + "checksum": "sha256:142d4fe6236cdeac3f967517085d99649215d75026fbe00746e0c5214d7d20df", + "check_gpg": true + }, + { + "checksum": "sha256:8891a9a4707611c13a5693b195201dd940254ffdb03cf5742952329282bb8cb7", + "check_gpg": true + }, + { + "checksum": "sha256:7f506879c64e0bb4d98782d025f46fb9a07517487ae4cbebbb3985a98f4e2154", + "check_gpg": true + }, + { + "checksum": "sha256:aa0007192287faeaecc72d9fa48efdb3108c764d450dc8fea65474476da32c45", + "check_gpg": true + }, + { + "checksum": "sha256:525393e4d658e395c6280bd2ff4afe54999796c4722986325297ba4bfade3ea5", + "check_gpg": true + }, + { + "checksum": "sha256:003ee19ec5b88de212c3246bdfdb3e97a9910a25a219fd7cf5030b7bc666fea9", + "check_gpg": true + }, + { + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "checksum": "sha256:bafc2680bd298f0fac70854224ef03b7098d4c46ee35e270f6fd58d2e812ff1b", + "check_gpg": true + }, + { + "checksum": "sha256:f56992135d789147285215cb062960fedcdf4b3296c62658fa430caa2c20165c", + "check_gpg": true + }, + { + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "checksum": "sha256:233e5f78027b684e5aaac1395cc574aea3039059bf86eb4494422bc74216a396", + "check_gpg": true + }, + { + "checksum": "sha256:563b3741d26b6af963fdb7b0634e0791445a707d0b6093ac71c3224299241639", + "check_gpg": true + }, + { + "checksum": "sha256:1cef673b1e520903e3b1c17d0d284d205a6f949908c351618dae892f40fb011b", + "check_gpg": true + }, + { + "checksum": "sha256:017e78c5e23f98d6ee299255fc7be5381dba63d169e3f5dcb1de9d21b5d30ba5", + "check_gpg": true + }, + { + "checksum": "sha256:aa1835fd302a37b84ac256db5dd0de09bd9883a5a07775aedb491faf46b18ee0", + "check_gpg": true + }, + { + "checksum": "sha256:d46e4c5067f182974d74691885cef31100c9cef59966c4ef399a284be3b91608", + "check_gpg": true + }, + { + "checksum": "sha256:ff3846c5910773af5466b5c3640ffd3c867c2bcbcccc11a7c11eb4438d9e3ae2", + "check_gpg": true + }, + { + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "checksum": "sha256:b028aa2b393a124c5bf8665f9111caa9e4c2aa757d880b100c1616c207848a3f", + "check_gpg": true + }, + { + "checksum": "sha256:d967d6bbb33bf7a295a64807f81875c84e82a8ecc59b6c72fe955141b1660d39", + "check_gpg": true + }, + { + "checksum": "sha256:e76ffaf54db6ac36f0aa56c8013431c352c6187c8d674c6d468e25c573e31597", + "check_gpg": true + }, + { + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "checksum": "sha256:7443e0df4d55a40a0ba3cec4cd4da620200a255605e31a137bee001cb4b43af3", + "check_gpg": true + }, + { + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "checksum": "sha256:a1d1bac6c4710e0a1a6e8a507b06a630dda6687f12642be0847768c14ce7271e", + "check_gpg": true + }, + { + "checksum": "sha256:774d214a379c0b729d7e989f9d5094fdfda7df68c1e792ba9200542032f04c91", + "check_gpg": true + }, + { + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "checksum": "sha256:f0346c485da9a7e8c8d93624f335cbb25790a7f37c6c03e43232517bb73bbacb", + "check_gpg": true + }, + { + "checksum": "sha256:be628d396303d6547b9d7239897fbf4fad7447375cb5e898b394a458f420b550", + "check_gpg": true + }, + { + "checksum": "sha256:839c62cd7fc7e152decded6f28c80b5f7b8f34a5e319057867b38b26512cee67", + "check_gpg": true + }, + { + "checksum": "sha256:8846acb4df4306e2274bd8a496e0c47ee1fea1d211f6d3369e261ec863fddcb1", + "check_gpg": true + }, + { + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "checksum": "sha256:a0c8f83cef355dd98d7750e3d8eb3e9f3e9f8f5e9a3ee441cb4bc4014c647e31", + "check_gpg": true + }, + { + "checksum": "sha256:b1871d8ac1abaf5e809448c5f37e32487f177aee3080d9033efb4b160f755aba", + "check_gpg": true + }, + { + "checksum": "sha256:fe944d9dd89d550d2aa44d33cfeb11c803b074bfcda0dbbad486c392bf1cc9d0", + "check_gpg": true + }, + { + "checksum": "sha256:6cd7444c22d56201f61fed5fd741b44cfaae18d95b811d25c5f0ffe2f8e55a8f", + "check_gpg": true + }, + { + "checksum": "sha256:7115a12fad224b469419e19ee5c0d38322f467fe7a1c441c1b0239b197baac2a", + "check_gpg": true + }, + { + "checksum": "sha256:8cad468b07c285444728b39817df72c77f7a96e06367e63f09ac979d3349d386", + "check_gpg": true + }, + { + "checksum": "sha256:d367fa4bad5f6494c390791b570c43ca15fc65db3aa14544ead87571364cd426", + "check_gpg": true + }, + { + "checksum": "sha256:0cb3dccf2c3bd45c773dd3fbf14bd9d7e7a40fe33edd36077738066af3c95517", + "check_gpg": true + }, + { + "checksum": "sha256:cbcade4487fbf372b487b9f82ed85e04ff037551c96c4b461abc3716338ff9c4", + "check_gpg": true + }, + { + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "checksum": "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393", + "check_gpg": true + }, + { + "checksum": "sha256:9664aba8dfd6bd6fda669fcf8f6ff04914305a6373b09d8b675322c7337b9c36", + "check_gpg": true + }, + { + "checksum": "sha256:6fc3208be9c78bf1f843f9f7d4d3f04096f116dc056285142235bf76472ba382", + "check_gpg": true + }, + { + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "checksum": "sha256:b3bc3f1c9e8028a177599f1ed9cb6c31d2d6e75111e34623d25e736d3ddcf8fd", + "check_gpg": true + }, + { + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "checksum": "sha256:eec162a2757ee2ffbbee95e1dbcd33318119e5113e53af877ce9416529a19082", + "check_gpg": true + }, + { + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "checksum": "sha256:3efd6a2548813167fe37718546bc768a5aa8ba59aa80edcecd8ba408bec329b0", + "check_gpg": true + }, + { + "checksum": "sha256:4c02e3e1808f0189269b242242468a364007a8f12c6e38afc24b599b2848b0fa", + "check_gpg": true + }, + { + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "checksum": "sha256:4302361b12eefd5574f57bf0c49c0e5bdc738eddda33634af8b35adfb53a52a1", + "check_gpg": true + }, + { + "checksum": "sha256:bad350fece3f69757d9345ad97acdf1ba72e8d09ed2162fbfe4cc128039594e1", + "check_gpg": true + }, + { + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "checksum": "sha256:b7dbc8efe4e3de5b47742959530182be455a17a7fdc3cd289d15316ae8f54223", + "check_gpg": true + }, + { + "checksum": "sha256:babad6e897ab2e5b46386edaf34dbc77649bb3705df50190c022d4b6f54f15de", + "check_gpg": true + }, + { + "checksum": "sha256:11838afbfab4da7d5fa6e01046f76cce0b0a0c174a87c522eba440fce16e316f", + "check_gpg": true + }, + { + "checksum": "sha256:8cb26212a1235f514b9529868ca86e119ad269755ba4c5e5cf1832523a4efc14", + "check_gpg": true + }, + { + "checksum": "sha256:2fcd7a063cab2e103fd4fdf8f4c63d09b9f3d60759c3b0982c75ed9a9e57bdf8", + "check_gpg": true + }, + { + "checksum": "sha256:ee4413fda60078f82c3b209557f0fc730871bb2a24cc380db6d01b511322ac85", + "check_gpg": true + }, + { + "checksum": "sha256:16d05b70027f6e2879e84887c028043617b899fe3966c36e54c0a7078fbcb411", + "check_gpg": true + }, + { + "checksum": "sha256:dc4f0cc77cf4c89469cf0f9c88b52f2c8c2c35f4e6d714bbdae2083440483311", + "check_gpg": true + }, + { + "checksum": "sha256:7800dfd0d4769a898d11db330fdb5b19614533628a45fe91cce406d6cd1f0c71", + "check_gpg": true + }, + { + "checksum": "sha256:cad86777bcb265db0da766952ff63e8d33f0fd4f3b90b22d0a1da587a785db44", + "check_gpg": true + }, + { + "checksum": "sha256:67419432fe7d373f8e5ddaa7b0dd1c25389608bf2f4ee76dbabcc2d96eb8c9d0", + "check_gpg": true + }, + { + "checksum": "sha256:41a5551a1bdf84359c3f86f08bb1e5c13c0bc1e057ae5d9f0cdf9930afeb37a1", + "check_gpg": true + }, + { + "checksum": "sha256:5f445b2b2a4bdeabd555e25dfa10119d9f4e4e500d1c4492219dd8647f119ce2", + "check_gpg": true + }, + { + "checksum": "sha256:49d972c660b9238dd1d58ab5952285b77e440820bf4563cce2b5ecd2f6ceba78", + "check_gpg": true + }, + { + "checksum": "sha256:9869db60ee2b6d8f2115937857fb0586802720a75e043baf21514011a9fa79aa", + "check_gpg": true + }, + { + "checksum": "sha256:11ac209220f3a53a762adebb4eeb43190e02ef7cdad2c54bcb474b206f7eb6f2", + "check_gpg": true + }, + { + "checksum": "sha256:7bc2e2a25b04b52a4ec5de2858e75eb07f16495d4de5f7ce926777130302cfe3", + "check_gpg": true + }, + { + "checksum": "sha256:105beb1a237e66802e64e620f79b357dfc8f3bb8952ac2f293548f1d68ca40b1", + "check_gpg": true + }, + { + "checksum": "sha256:19ca7ab9cb2e39ec452ed1424f828ec464266094e31903301680d5a5d0e2ac2c", + "check_gpg": true + }, + { + "checksum": "sha256:0221e6e3671c2bd130e9519a7b352404b7e510584b4707d38e1a733e19c7f74f", + "check_gpg": true + }, + { + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "checksum": "sha256:2fbf7e0ba8e8249b45392720a851905a42de547e1b760d461a799e2d1273cd97", + "check_gpg": true + }, + { + "checksum": "sha256:ad2fb5876a4be399a0bcbb1b45f796229186b557d100c5f8f9017955dfd20065", + "check_gpg": true + }, + { + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "checksum": "sha256:ddbbf3a8191dbc1a9fcb67ccf9cea0d34dbe9bbb74780e1359933cd03ee24451", + "check_gpg": true + }, + { + "checksum": "sha256:9dbf3ceb7de5a727f1a36edd5add73dcd96c83f24afc81d78e254b518551da96", + "check_gpg": true + }, + { + "checksum": "sha256:ce43ade7d1cb2519c12119621990ac8075c2f9e7577c739990ca949d6c42737a", + "check_gpg": true + }, + { + "checksum": "sha256:4e1b66f11f9e38bbd4a83aaf20f773925522a32b9fb1d0d75b3cca435556ff02", + "check_gpg": true + }, + { + "checksum": "sha256:5f4f256128dba88a13599d6458908c24c0e9c18d8979ae44bf5734da8e7cab70", + "check_gpg": true + }, + { + "checksum": "sha256:85eb614fc608f3b3f4bbd08d4a3b0ff6af188677ea4e009be021680c521cedae", + "check_gpg": true + }, + { + "checksum": "sha256:60b0cbc5e435be346bb06f45f3336f8936d7362022d8bceda80ff16bc3fb7dd2", + "check_gpg": true + }, + { + "checksum": "sha256:0feac495306bbe6e3149a352025bea8d23cda512859a230cbd3f510cf48caaf7", + "check_gpg": true + }, + { + "checksum": "sha256:9c7a5a6f73c8e32559226c54d229cb25304a81a853af22d9f829b9bb09b21f53", + "check_gpg": true + }, + { + "checksum": "sha256:0bc637f0d028043e8388b083cdd8d0a0acea7fdbc79c0bc9401dfb02c20fb817", + "check_gpg": true + }, + { + "checksum": "sha256:1b53c868277dec628058b31b1a8a8a2ccd8efe832ce9694805b5f82564136eb3", + "check_gpg": true + }, + { + "checksum": "sha256:499e48b35f3b5f5da45031fa78fba559fee6a480ecb106e6c300eb8344510958", + "check_gpg": true + }, + { + "checksum": "sha256:bfa39369bd3c36833126b6f46b747de0736a66835d97196195c0810161c24549", + "check_gpg": true + }, + { + "checksum": "sha256:82ce159a9e4e4b6b4fdce9ad954aa507f67108430bd261a4dcd826e44d0152a4", + "check_gpg": true + }, + { + "checksum": "sha256:0edde19e0c027c8cff31b82e1f4b0b198c00bf924047fcf4dd610a7d4965ab52", + "check_gpg": true + }, + { + "checksum": "sha256:6ef6573d410f9e9dfa4bb4a4e1b2ff2f7555b50b1fc4b2ff8fb890e46b4b8d8a", + "check_gpg": true + }, + { + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "checksum": "sha256:04bcd912af3b987311c2dab6331b65c0d9223c312c4b0654649d821a713133be", + "check_gpg": true + }, + { + "checksum": "sha256:ca82090f18d47e454cc512e832bf3ec771edf65299e3c1d56d5df9fab0428869", + "check_gpg": true + }, + { + "checksum": "sha256:30f37ca1fe1592e29d3e97c1dec0646015000d19bffc40f13dcfe73e15be66fc", + "check_gpg": true + }, + { + "checksum": "sha256:913d735c486bf4f564d91bfb247ade86f7567d6d7a7631d16b95e89fd2d0c3ba", + "check_gpg": true + }, + { + "checksum": "sha256:6fded933d86737a21c5cd77399e68e3912125c2da1afb95592e7089ba5594056", + "check_gpg": true + }, + { + "checksum": "sha256:2f1548290dba27526a7b5541e4c7ff76d3124285f8e6335cd6d72919e2aafd41", + "check_gpg": true + }, + { + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ] + } + }, + { + "name": "org.osbuild.fix-bls", + "options": {} + }, + { + "name": "org.osbuild.fstab", + "options": { + "filesystems": [ + { + "uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "vfs_type": "xfs", + "path": "/", + "options": "defaults" + }, + { + "uuid": "7B77-95E7", + "vfs_type": "vfat", + "path": "/boot/efi", + "options": "defaults,uid=0,gid=0,umask=077,shortname=winnt", + "passno": 2 + } + ] + } + }, + { + "name": "org.osbuild.grub2", + "options": { + "root_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "kernel_opts": "console=tty0 console=ttyS0,115200n8 no_timer_check net.ifnames=0 crashkernel=auto debug", + "legacy": "i386-pc", + "uefi": { + "vendor": "centos" + } + } + }, + { + "name": "org.osbuild.locale", + "options": { + "language": "en_US" + } + }, + { + "name": "org.osbuild.keymap", + "options": { + "keymap": "dvorak" + } + }, + { + "name": "org.osbuild.hostname", + "options": { + "hostname": "my-host" + } + }, + { + "name": "org.osbuild.timezone", + "options": { + "zone": "Europe/London" + } + }, + { + "name": "org.osbuild.chrony", + "options": { + "timeservers": [ + "time.example.com" + ] + } + }, + { + "name": "org.osbuild.groups", + "options": { + "groups": { + "group1": { + "name": "group1", + "gid": 1030 + }, + "group2": { + "name": "group2", + "gid": 1050 + } + } + } + }, + { + "name": "org.osbuild.users", + "options": { + "users": { + "user1": { + "key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC61wMCjOSHwbVb4VfVyl5sn497qW4PsdQ7Ty7aD6wDNZ/QjjULkDV/yW5WjDlDQ7UqFH0Sr7vywjqDizUAqK7zM5FsUKsUXWHWwg/ehKg8j9xKcMv11AkFoUoujtfAujnKODkk58XSA9whPr7qcw3vPrmog680pnMSzf9LC7J6kXfs6lkoKfBh9VnlxusCrw2yg0qI1fHAZBLPx7mW6+me71QZsS6sVz8v8KXyrXsKTdnF50FjzHcK9HXDBtSJS5wA3fkcRYymJe0o6WMWNdgSRVpoSiWaHHmFgdMUJaYoCfhXzyl7LtNb3Q+Sveg+tJK7JaRXBLMUllOlJ6ll5Hod root@localhost" + }, + "user2": { + "uid": 1020, + "gid": 1050, + "groups": [ + "group1" + ], + "description": "description 2", + "home": "/home/home2", + "shell": "/bin/sh", + "password": "$6$BhyxFBgrEFh0VrPJ$MllG8auiU26x2pmzL4.1maHzPHrA.4gTdCvlATFp8HJU9UPee4zCS9BVl2HOzKaUYD/zEm8r/OF05F2icWB0K/", + "key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC61wMCjOSHwbVb4VfVyl5sn497qW4PsdQ7Ty7aD6wDNZ/QjjULkDV/yW5WjDlDQ7UqFH0Sr7vywjqDizUAqK7zM5FsUKsUXWHWwg/ehKg8j9xKcMv11AkFoUoujtfAujnKODkk58XSA9whPr7qcw3vPrmog680pnMSzf9LC7J6kXfs6lkoKfBh9VnlxusCrw2yg0qI1fHAZBLPx7mW6+me71QZsS6sVz8v8KXyrXsKTdnF50FjzHcK9HXDBtSJS5wA3fkcRYymJe0o6WMWNdgSRVpoSiWaHHmFgdMUJaYoCfhXzyl7LtNb3Q+Sveg+tJK7JaRXBLMUllOlJ6ll5Hod root@localhost" + } + } + } + }, + { + "name": "org.osbuild.systemd", + "options": { + "enabled_services": [ + "sshd.socket" + ], + "disabled_services": [ + "bluetooth.service" + ], + "default_target": "multi-user.target" + } + }, + { + "name": "org.osbuild.selinux", + "options": { + "file_contexts": "etc/selinux/targeted/contexts/files/file_contexts" + } + }, + { + "name": "org.osbuild.sysconfig", + "options": { + "kernel": { + "update_default": true, + "default_kernel": "kernel" + }, + "network": { + "networking": true, + "no_zero_conf": true + } + } + }, + { + "name": "org.osbuild.rhsm", + "options": { + "dnf-plugins": { + "product-id": { + "enabled": false + }, + "subscription-manager": { + "enabled": false + } + } + } + } + ], + "assembler": { + "name": "org.osbuild.qemu", + "options": { + "bootloader": { + "type": "grub2" + }, + "format": "qcow2", + "filename": "disk.qcow2", + "size": 10737418240, + "ptuuid": "D209C89E-EA5E-4FBD-B161-B461CCE297E0", + "pttype": "gpt", + "partitions": [ + { + "start": 2048, + "size": 2048, + "type": "21686148-6449-6E6F-744E-656564454649", + "bootable": true, + "uuid": "FAC7F1FB-3E8D-4137-A512-961DE09A5549" + }, + { + "start": 4096, + "size": 204800, + "type": "C12A7328-F81F-11D2-BA4B-00A0C93EC93B", + "uuid": "68B2905B-DF3E-4FB3-80FA-49D1E773AA33", + "filesystem": { + "type": "vfat", + "uuid": "7B77-95E7", + "mountpoint": "/boot/efi" + } + }, + { + "start": 208896, + "type": "0FC63DAF-8483-4772-8E79-3D69D8477DE4", + "uuid": "6264D520-3FB9-423F-8AB8-7A0A8E3D3562", + "filesystem": { + "type": "xfs", + "uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "label": "root", + "mountpoint": "/" + } + } + ] + } + } + } + }, + "rpmmd": { + "build-packages": [ + { + "name": "acl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/acl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "name": "audit-libs", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "name": "basesystem", + "epoch": 0, + "version": "11", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/basesystem-11-5.el8.noarch.rpm", + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "name": "bash", + "epoch": 0, + "version": "4.4.19", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bash-4.4.19-14.el8.x86_64.rpm", + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "name": "brotli", + "epoch": 0, + "version": "1.0.6", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/brotli-1.0.6-3.el8.x86_64.rpm", + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "name": "bzip2-libs", + "epoch": 0, + "version": "1.0.6", + "release": "26.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.6-26.el8.x86_64.rpm", + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "name": "ca-certificates", + "epoch": 0, + "version": "2020.2.41", + "release": "80.0.el8_2", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ca-certificates-2020.2.41-80.0.el8_2.noarch.rpm", + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "name": "centos-gpg-keys", + "epoch": 1, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-gpg-keys-8-2.el8.noarch.rpm", + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "name": "centos-stream-release", + "epoch": 0, + "version": "8.4", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-release-8.4-1.el8.noarch.rpm", + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "name": "centos-stream-repos", + "epoch": 0, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-repos-8-2.el8.noarch.rpm", + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "name": "chkconfig", + "epoch": 0, + "version": "1.13", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chkconfig-1.13-2.el8.x86_64.rpm", + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "name": "coreutils", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "name": "coreutils-common", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-common-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "name": "cpio", + "epoch": 0, + "version": "2.12", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cpio-2.12-10.el8.x86_64.rpm", + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "name": "cracklib", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "name": "cracklib-dicts", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "name": "crypto-policies", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "name": "crypto-policies-scripts", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-scripts-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "name": "cryptsetup-libs", + "epoch": 0, + "version": "2.3.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.3.3-2.el8.x86_64.rpm", + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "name": "curl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/curl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "name": "cyrus-sasl-lib", + "epoch": 0, + "version": "2.1.27", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-5.el8.x86_64.rpm", + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "name": "dbus", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "name": "dbus-common", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-common-1.12.8-12.el8.noarch.rpm", + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "name": "dbus-daemon", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-daemon-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "name": "dbus-libs", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-libs-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "name": "dbus-tools", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-tools-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "name": "device-mapper", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "name": "device-mapper-libs", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "name": "diffutils", + "epoch": 0, + "version": "3.6", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/diffutils-3.6-6.el8.x86_64.rpm", + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "name": "dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "name": "dnf-data", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-data-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "name": "dosfstools", + "epoch": 0, + "version": "4.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dosfstools-4.1-6.el8.x86_64.rpm", + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "name": "dracut", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "name": "e2fsprogs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "name": "e2fsprogs-libs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "name": "elfutils-debuginfod-client", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "name": "elfutils-default-yama-scope", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.182-3.el8.noarch.rpm", + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "name": "elfutils-libelf", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libelf-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "name": "elfutils-libs", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libs-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "name": "expat", + "epoch": 0, + "version": "2.2.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/expat-2.2.5-4.el8.x86_64.rpm", + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "name": "file", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "name": "file-libs", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-libs-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "name": "filesystem", + "epoch": 0, + "version": "3.8", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/filesystem-3.8-4.el8.x86_64.rpm", + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "name": "findutils", + "epoch": 1, + "version": "4.6.0", + "release": "20.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/findutils-4.6.0-20.el8.x86_64.rpm", + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "name": "freetype", + "epoch": 0, + "version": "2.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/freetype-2.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "name": "fuse-libs", + "epoch": 0, + "version": "2.9.7", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-libs-2.9.7-12.el8.x86_64.rpm", + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "name": "gawk", + "epoch": 0, + "version": "4.2.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gawk-4.2.1-2.el8.x86_64.rpm", + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "name": "gdbm", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "name": "gdbm-libs", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-libs-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "name": "gettext", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "name": "gettext-libs", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-libs-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "name": "glib2", + "epoch": 0, + "version": "2.56.4", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib2-2.56.4-9.el8.x86_64.rpm", + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "name": "glibc", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "name": "glibc-all-langpacks", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-all-langpacks-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af", + "check_gpg": true + }, + { + "name": "glibc-common", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-common-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "name": "gmp", + "epoch": 1, + "version": "6.1.2", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gmp-6.1.2-10.el8.x86_64.rpm", + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "name": "gnupg2", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "name": "gnupg2-smime", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-smime-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "name": "gnutls", + "epoch": 0, + "version": "3.6.14", + "release": "7.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnutls-3.6.14-7.el8_3.x86_64.rpm", + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "name": "gpgme", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gpgme-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "name": "grep", + "epoch": 0, + "version": "3.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grep-3.1-6.el8.x86_64.rpm", + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "name": "grub2-common", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-common-2.02-93.el8.noarch.rpm", + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "name": "grub2-pc", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "name": "grub2-pc-modules", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-modules-2.02-93.el8.noarch.rpm", + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "name": "grub2-tools", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "name": "grub2-tools-extra", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-extra-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "name": "grub2-tools-minimal", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-minimal-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "name": "grubby", + "epoch": 0, + "version": "8.40", + "release": "41.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grubby-8.40-41.el8.x86_64.rpm", + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "name": "gzip", + "epoch": 0, + "version": "1.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gzip-1.9-12.el8.x86_64.rpm", + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "name": "hardlink", + "epoch": 1, + "version": "1.3", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hardlink-1.3-6.el8.x86_64.rpm", + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "name": "hwdata", + "epoch": 0, + "version": "0.314", + "release": "8.7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hwdata-0.314-8.7.el8.noarch.rpm", + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "name": "ima-evm-utils", + "epoch": 0, + "version": "1.3.2", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ima-evm-utils-1.3.2-11.el8.x86_64.rpm", + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "name": "info", + "epoch": 0, + "version": "6.5", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/info-6.5-6.el8.x86_64.rpm", + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "name": "iptables-libs", + "epoch": 0, + "version": "1.8.4", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-libs-1.8.4-17.el8.x86_64.rpm", + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "name": "json-c", + "epoch": 0, + "version": "0.13.1", + "release": "0.4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-c-0.13.1-0.4.el8.x86_64.rpm", + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "name": "kbd", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-2.0.4-10.el8.x86_64.rpm", + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "name": "kbd-legacy", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-legacy-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "name": "kbd-misc", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-misc-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "name": "keyutils-libs", + "epoch": 0, + "version": "1.5.10", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-libs-1.5.10-6.el8.x86_64.rpm", + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "name": "kmod", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-25-17.el8.x86_64.rpm", + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "name": "kmod-libs", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-libs-25-17.el8.x86_64.rpm", + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "name": "kpartx", + "epoch": 0, + "version": "0.8.4", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kpartx-0.8.4-8.el8.x86_64.rpm", + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "name": "krb5-libs", + "epoch": 0, + "version": "1.18.2", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/krb5-libs-1.18.2-8.el8.x86_64.rpm", + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "name": "libacl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libacl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "name": "libaio", + "epoch": 0, + "version": "0.3.112", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libaio-0.3.112-1.el8.x86_64.rpm", + "checksum": "sha256:2c63399bee449fb6e921671a9bbf3356fda73f890b578820f7d926202e98a479", + "check_gpg": true + }, + { + "name": "libarchive", + "epoch": 0, + "version": "3.3.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libarchive-3.3.3-1.el8.x86_64.rpm", + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "name": "libassuan", + "epoch": 0, + "version": "2.5.1", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libassuan-2.5.1-3.el8.x86_64.rpm", + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "name": "libattr", + "epoch": 0, + "version": "2.4.48", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libattr-2.4.48-3.el8.x86_64.rpm", + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "name": "libblkid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libblkid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "name": "libcap", + "epoch": 0, + "version": "2.26", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-2.26-4.el8.x86_64.rpm", + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "name": "libcap-ng", + "epoch": 0, + "version": "0.7.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-ng-0.7.9-5.el8.x86_64.rpm", + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "name": "libcom_err", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcom_err-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "name": "libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "name": "libcroco", + "epoch": 0, + "version": "0.6.12", + "release": "4.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcroco-0.6.12-4.el8_2.1.x86_64.rpm", + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "name": "libcurl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcurl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "name": "libdb", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "name": "libdb-utils", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-utils-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "name": "libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "name": "libevent", + "epoch": 0, + "version": "2.1.8", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libevent-2.1.8-5.el8.x86_64.rpm", + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "name": "libfdisk", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libfdisk-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "name": "libffi", + "epoch": 0, + "version": "3.1", + "release": "22.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libffi-3.1-22.el8.x86_64.rpm", + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "name": "libgcc", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcc-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "name": "libgcrypt", + "epoch": 0, + "version": "1.8.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcrypt-1.8.5-4.el8.x86_64.rpm", + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "name": "libgomp", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgomp-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "name": "libgpg-error", + "epoch": 0, + "version": "1.31", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgpg-error-1.31-1.el8.x86_64.rpm", + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "name": "libibverbs", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libibverbs-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "name": "libidn2", + "epoch": 0, + "version": "2.2.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libidn2-2.2.0-1.el8.x86_64.rpm", + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "name": "libkcapi", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "name": "libkcapi-hmaccalc", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-hmaccalc-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "name": "libksba", + "epoch": 0, + "version": "1.3.5", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libksba-1.3.5-7.el8.x86_64.rpm", + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "name": "libmetalink", + "epoch": 0, + "version": "0.1.3", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmetalink-0.1.3-7.el8.x86_64.rpm", + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "name": "libmodulemd", + "epoch": 0, + "version": "2.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodulemd-2.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "name": "libmount", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmount-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "name": "libnghttp2", + "epoch": 0, + "version": "1.33.0", + "release": "3.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnghttp2-1.33.0-3.el8_2.1.x86_64.rpm", + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "name": "libnl3", + "epoch": 0, + "version": "3.5.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-3.5.0-1.el8.x86_64.rpm", + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "name": "libnsl2", + "epoch": 0, + "version": "1.2.0", + "release": "2.20180605git4a062cf.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64.rpm", + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "name": "libpcap", + "epoch": 14, + "version": "1.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpcap-1.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "name": "libpng", + "epoch": 2, + "version": "1.6.34", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpng-1.6.34-5.el8.x86_64.rpm", + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "name": "libpsl", + "epoch": 0, + "version": "0.20.2", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpsl-0.20.2-6.el8.x86_64.rpm", + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "name": "libpwquality", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "name": "librepo", + "epoch": 0, + "version": "1.12.0", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/librepo-1.12.0-3.el8.x86_64.rpm", + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "name": "libreport-filesystem", + "epoch": 0, + "version": "2.9.5", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libreport-filesystem-2.9.5-15.el8.x86_64.rpm", + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "name": "libseccomp", + "epoch": 0, + "version": "2.4.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libseccomp-2.4.3-1.el8.x86_64.rpm", + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "name": "libsecret", + "epoch": 0, + "version": "0.18.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsecret-0.18.6-1.el8.x86_64.rpm", + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "name": "libselinux", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "name": "libselinux-utils", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-utils-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "name": "libsemanage", + "epoch": 0, + "version": "2.9", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsemanage-2.9-6.el8.x86_64.rpm", + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "name": "libsepol", + "epoch": 0, + "version": "2.9", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsepol-2.9-2.el8.x86_64.rpm", + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "name": "libsigsegv", + "epoch": 0, + "version": "2.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsigsegv-2.11-5.el8.x86_64.rpm", + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "name": "libsmartcols", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmartcols-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "name": "libsolv", + "epoch": 0, + "version": "0.7.16", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsolv-0.7.16-2.el8.x86_64.rpm", + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "name": "libss", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libss-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "name": "libssh", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-0.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "name": "libssh-config", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-config-0.9.4-2.el8.noarch.rpm", + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "name": "libstdc++", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstdc++-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "name": "libtasn1", + "epoch": 0, + "version": "4.13", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtasn1-4.13-3.el8.x86_64.rpm", + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "name": "libtirpc", + "epoch": 0, + "version": "1.1.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtirpc-1.1.4-4.el8.x86_64.rpm", + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "name": "libunistring", + "epoch": 0, + "version": "0.9.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libunistring-0.9.9-3.el8.x86_64.rpm", + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "name": "libusbx", + "epoch": 0, + "version": "1.0.23", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libusbx-1.0.23-4.el8.x86_64.rpm", + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "name": "libutempter", + "epoch": 0, + "version": "1.1.6", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libutempter-1.1.6-14.el8.x86_64.rpm", + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "name": "libuuid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuuid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "name": "libverto", + "epoch": 0, + "version": "0.3.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-0.3.0-5.el8.x86_64.rpm", + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "name": "libxcrypt", + "epoch": 0, + "version": "4.1.1", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxcrypt-4.1.1-4.el8.x86_64.rpm", + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "name": "libxml2", + "epoch": 0, + "version": "2.9.7", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxml2-2.9.7-9.el8.x86_64.rpm", + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "name": "libyaml", + "epoch": 0, + "version": "0.1.7", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libyaml-0.1.7-5.el8.x86_64.rpm", + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "name": "libzstd", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libzstd-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "name": "lua-libs", + "epoch": 0, + "version": "5.3.4", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lua-libs-5.3.4-11.el8.x86_64.rpm", + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "name": "lz4-libs", + "epoch": 0, + "version": "1.8.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lz4-libs-1.8.3-2.el8.x86_64.rpm", + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "name": "memstrack", + "epoch": 0, + "version": "0.1.11", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/memstrack-0.1.11-1.el8.x86_64.rpm", + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "name": "mpfr", + "epoch": 0, + "version": "3.1.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mpfr-3.1.6-1.el8.x86_64.rpm", + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "name": "ncurses", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "name": "ncurses-base", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-base-6.1-7.20180224.el8.noarch.rpm", + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "name": "ncurses-libs", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-libs-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "name": "nettle", + "epoch": 0, + "version": "3.4.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nettle-3.4.1-2.el8.x86_64.rpm", + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "name": "npth", + "epoch": 0, + "version": "1.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/npth-1.5-4.el8.x86_64.rpm", + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "name": "openldap", + "epoch": 0, + "version": "2.4.46", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openldap-2.4.46-16.el8.x86_64.rpm", + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "name": "openssl", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "name": "openssl-libs", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-libs-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "name": "openssl-pkcs11", + "epoch": 0, + "version": "0.4.10", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-pkcs11-0.4.10-2.el8.x86_64.rpm", + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "name": "os-prober", + "epoch": 0, + "version": "1.74", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/os-prober-1.74-6.el8.x86_64.rpm", + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "name": "p11-kit", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "name": "p11-kit-trust", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-trust-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "name": "pam", + "epoch": 0, + "version": "1.3.1", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pam-1.3.1-14.el8.x86_64.rpm", + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "name": "pciutils", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "name": "pciutils-libs", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-libs-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "name": "pcre", + "epoch": 0, + "version": "8.42", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre-8.42-4.el8.x86_64.rpm", + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "name": "pcre2", + "epoch": 0, + "version": "10.32", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre2-10.32-2.el8.x86_64.rpm", + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "name": "pigz", + "epoch": 0, + "version": "2.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pigz-2.4-4.el8.x86_64.rpm", + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "name": "platform-python", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "name": "platform-python-pip", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-pip-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "name": "platform-python-setuptools", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-setuptools-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "name": "policycoreutils", + "epoch": 0, + "version": "2.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-2.9-12.el8.x86_64.rpm", + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "name": "popt", + "epoch": 0, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/popt-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "name": "procps-ng", + "epoch": 0, + "version": "3.3.15", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/procps-ng-3.3.15-6.el8.x86_64.rpm", + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "name": "publicsuffix-list-dafsa", + "epoch": 0, + "version": "20180723", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20180723-1.el8.noarch.rpm", + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "name": "python3-dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "name": "python3-gpg", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gpg-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "name": "python3-hawkey", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-hawkey-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "name": "python3-iniparse", + "epoch": 0, + "version": "0.4", + "release": "31.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-iniparse-0.4-31.el8.noarch.rpm", + "checksum": "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178", + "check_gpg": true + }, + { + "name": "python3-libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "name": "python3-libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "name": "python3-libs", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libs-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "name": "python3-pip-wheel", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pip-wheel-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "name": "python3-rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "name": "python3-setuptools", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:c6f27b6e01d80e756408e3c1451e4af00e7d02da0aa24402644c0785118753fe", + "check_gpg": true + }, + { + "name": "python3-setuptools-wheel", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "name": "python3-six", + "epoch": 0, + "version": "1.11.0", + "release": "8.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-six-1.11.0-8.el8.noarch.rpm", + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "name": "rdma-core", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rdma-core-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "name": "readline", + "epoch": 0, + "version": "7.0", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/readline-7.0-10.el8.x86_64.rpm", + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "name": "rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "name": "rpm-build-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-build-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "name": "rpm-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "name": "rpm-plugin-selinux", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "name": "rpm-plugin-systemd-inhibit", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "name": "sed", + "epoch": 0, + "version": "4.5", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sed-4.5-2.el8.x86_64.rpm", + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "name": "selinux-policy", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "name": "selinux-policy-targeted", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-targeted-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "name": "setup", + "epoch": 0, + "version": "2.12.2", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/setup-2.12.2-6.el8.noarch.rpm", + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "name": "shadow-utils", + "epoch": 2, + "version": "4.6", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shadow-utils-4.6-12.el8.x86_64.rpm", + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "name": "shared-mime-info", + "epoch": 0, + "version": "1.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shared-mime-info-1.9-3.el8.x86_64.rpm", + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "name": "sqlite-libs", + "epoch": 0, + "version": "3.26.0", + "release": "13.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sqlite-libs-3.26.0-13.el8.x86_64.rpm", + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "name": "systemd", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-239-44.el8.x86_64.rpm", + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "name": "systemd-libs", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-libs-239-44.el8.x86_64.rpm", + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "name": "systemd-pam", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-pam-239-44.el8.x86_64.rpm", + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "name": "systemd-udev", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-udev-239-44.el8.x86_64.rpm", + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "name": "tar", + "epoch": 2, + "version": "1.30", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tar-1.30-5.el8.x86_64.rpm", + "checksum": "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393", + "check_gpg": true + }, + { + "name": "tpm2-tss", + "epoch": 0, + "version": "2.3.2", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tpm2-tss-2.3.2-3.el8.x86_64.rpm", + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "name": "trousers", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "name": "trousers-lib", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-lib-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "name": "tzdata", + "epoch": 0, + "version": "2021a", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tzdata-2021a-1.el8.noarch.rpm", + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "name": "util-linux", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/util-linux-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "name": "which", + "epoch": 0, + "version": "2.21", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/which-2.21-12.el8.x86_64.rpm", + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "name": "xfsprogs", + "epoch": 0, + "version": "5.0.0", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xfsprogs-5.0.0-8.el8.x86_64.rpm", + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "name": "xz", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "name": "xz-libs", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-libs-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "name": "zlib", + "epoch": 0, + "version": "1.2.11", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/zlib-1.2.11-17.el8.x86_64.rpm", + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "name": "libxkbcommon", + "epoch": 0, + "version": "0.9.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxkbcommon-0.9.1-1.el8.x86_64.rpm", + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "name": "pinentry", + "epoch": 0, + "version": "1.1.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pinentry-1.1.0-2.el8.x86_64.rpm", + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "name": "python3-pip", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pip-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:a2418e8e12144d4e84965298e7bbefedc876c0d0d93771afb9b5c6c2eb139dc0", + "check_gpg": true + }, + { + "name": "python3-unbound", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-unbound-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "name": "python36", + "epoch": 0, + "version": "3.6.8", + "release": "2.module_el8.4.0+666+456f5f48", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python36-3.6.8-2.module_el8.4.0+666+456f5f48.x86_64.rpm", + "checksum": "sha256:df417aae69f2ba5bd4324a14dcfd30dfbfefba440085bbf916c5ef19286cba20", + "check_gpg": true + }, + { + "name": "qemu-img", + "epoch": 15, + "version": "4.2.0", + "release": "35.module_el8.4.0+547+a85d02ba", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/qemu-img-4.2.0-35.module_el8.4.0+547+a85d02ba.x86_64.rpm", + "checksum": "sha256:f6f7907ccf8faa83a93e6d48801970aa45181a3a3c05ad7102b540a07534e318", + "check_gpg": true + }, + { + "name": "unbound-libs", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/unbound-libs-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "name": "xkeyboard-config", + "epoch": 0, + "version": "2.28", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xkeyboard-config-2.28-1.el8.noarch.rpm", + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ], + "packages": [ + { + "name": "NetworkManager", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:1d130b0daf86899c3987d59567303ce7ae44c3273f2d8d0f0625bef7e6bad16d", + "check_gpg": true + }, + { + "name": "NetworkManager-libnm", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-libnm-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:41d9c9f8e17c83f73e51e90f02e08927bb9c836d033815c6cdddc6da44e321f0", + "check_gpg": true + }, + { + "name": "NetworkManager-team", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-team-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:f60f24ba76f7f9d9f42421153d296a279fb616165a27cf2c71657a901a425bb1", + "check_gpg": true + }, + { + "name": "NetworkManager-tui", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-tui-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:657db08f58b6776f48fda17d2b734a26918b431253f9e4eba9fd5a46d9f89aef", + "check_gpg": true + }, + { + "name": "acl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/acl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "name": "audit", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:b0149d85f0172e98866ff2483660af2cf6c6fa0c8f9cab2c51cc2af479c9e319", + "check_gpg": true + }, + { + "name": "audit-libs", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "name": "authselect", + "epoch": 0, + "version": "1.2.2", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-1.2.2-1.el8.x86_64.rpm", + "checksum": "sha256:cb5072917ce75dbde8fe474fa872db85da5dbac59cc1eb4a9125e7b6280f254e", + "check_gpg": true + }, + { + "name": "authselect-libs", + "epoch": 0, + "version": "1.2.2", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-libs-1.2.2-1.el8.x86_64.rpm", + "checksum": "sha256:a217b0fbe9757a0225b66d16c1668cdf5cb2aa69c68b89e79783abd507f2e7bf", + "check_gpg": true + }, + { + "name": "basesystem", + "epoch": 0, + "version": "11", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/basesystem-11-5.el8.noarch.rpm", + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "name": "bash", + "epoch": 0, + "version": "4.4.19", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bash-4.4.19-14.el8.x86_64.rpm", + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "name": "bind-export-libs", + "epoch": 32, + "version": "9.11.26", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bind-export-libs-9.11.26-2.el8.x86_64.rpm", + "checksum": "sha256:2d4cf3bd8b8046adfa869fbb5b472294469457f6445db36abcc227959be9adeb", + "check_gpg": true + }, + { + "name": "brotli", + "epoch": 0, + "version": "1.0.6", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/brotli-1.0.6-3.el8.x86_64.rpm", + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "name": "bzip2", + "epoch": 0, + "version": "1.0.6", + "release": "26.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-1.0.6-26.el8.x86_64.rpm", + "checksum": "sha256:78596f457c3d737a97a4edfe9a03a01f593606379c281701ab7f7eba13ecaf18", + "check_gpg": true + }, + { + "name": "bzip2-libs", + "epoch": 0, + "version": "1.0.6", + "release": "26.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.6-26.el8.x86_64.rpm", + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "name": "c-ares", + "epoch": 0, + "version": "1.13.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/c-ares-1.13.0-5.el8.x86_64.rpm", + "checksum": "sha256:9d160cdfba107ddc0613e169311bf57077c04e71a052a57704f3bdb64729d565", + "check_gpg": true + }, + { + "name": "ca-certificates", + "epoch": 0, + "version": "2020.2.41", + "release": "80.0.el8_2", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ca-certificates-2020.2.41-80.0.el8_2.noarch.rpm", + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "name": "centos-gpg-keys", + "epoch": 1, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-gpg-keys-8-2.el8.noarch.rpm", + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "name": "centos-stream-release", + "epoch": 0, + "version": "8.4", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-release-8.4-1.el8.noarch.rpm", + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "name": "centos-stream-repos", + "epoch": 0, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-repos-8-2.el8.noarch.rpm", + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "name": "checkpolicy", + "epoch": 0, + "version": "2.9", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/checkpolicy-2.9-1.el8.x86_64.rpm", + "checksum": "sha256:d5c283da0d2666742635754626263f6f78e273cd46d83d2d66ed43730a731685", + "check_gpg": true + }, + { + "name": "chkconfig", + "epoch": 0, + "version": "1.13", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chkconfig-1.13-2.el8.x86_64.rpm", + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "name": "chrony", + "epoch": 0, + "version": "3.5", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chrony-3.5-1.el8.x86_64.rpm", + "checksum": "sha256:5f3d3d3b27b7df75738d1ee31112c60d39c54b8d7f92b6900606187f6cffce1d", + "check_gpg": true + }, + { + "name": "cockpit-bridge", + "epoch": 0, + "version": "236", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cockpit-bridge-236-1.el8.x86_64.rpm", + "checksum": "sha256:fe0767b57c921cd1df4b53f8d73936cb8e2d870cb1ed1d8c22d33b6e04e947c7", + "check_gpg": true + }, + { + "name": "cockpit-system", + "epoch": 0, + "version": "236", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cockpit-system-236-1.el8.noarch.rpm", + "checksum": "sha256:7e73df2868a12881f6b98fe025485e9e6345978511e2866132503e05b1ccefda", + "check_gpg": true + }, + { + "name": "cockpit-ws", + "epoch": 0, + "version": "236", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cockpit-ws-236-1.el8.x86_64.rpm", + "checksum": "sha256:a205b1ca2ee6452bec8a2a6a5817f26ed60a5490b99b333c0b3baf8171ef0c71", + "check_gpg": true + }, + { + "name": "coreutils", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "name": "coreutils-common", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-common-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "name": "cpio", + "epoch": 0, + "version": "2.12", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cpio-2.12-10.el8.x86_64.rpm", + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "name": "cracklib", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "name": "cracklib-dicts", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "name": "cronie", + "epoch": 0, + "version": "1.5.2", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-1.5.2-4.el8.x86_64.rpm", + "checksum": "sha256:63a6b7765828081cc88b36d10c68621acbebf02a7c2e7d7f1a1217c8742ea6ae", + "check_gpg": true + }, + { + "name": "cronie-anacron", + "epoch": 0, + "version": "1.5.2", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-anacron-1.5.2-4.el8.x86_64.rpm", + "checksum": "sha256:71fcbbec3aa152bc1427cb4d597375b008438f6259b20cfcb68fff21eef80f91", + "check_gpg": true + }, + { + "name": "crontabs", + "epoch": 0, + "version": "1.11", + "release": "17.20190603git.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crontabs-1.11-17.20190603git.el8.noarch.rpm", + "checksum": "sha256:bcf25aae89f7368b16346bc1ec92850175bcc2312bf7a5e74bc3c512bcd345b0", + "check_gpg": true + }, + { + "name": "crypto-policies", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "name": "crypto-policies-scripts", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-scripts-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "name": "cryptsetup-libs", + "epoch": 0, + "version": "2.3.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.3.3-2.el8.x86_64.rpm", + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "name": "curl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/curl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "name": "cyrus-sasl-lib", + "epoch": 0, + "version": "2.1.27", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-5.el8.x86_64.rpm", + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "name": "dbus", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "name": "dbus-common", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-common-1.12.8-12.el8.noarch.rpm", + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "name": "dbus-daemon", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-daemon-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "name": "dbus-glib", + "epoch": 0, + "version": "0.110", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-glib-0.110-2.el8.x86_64.rpm", + "checksum": "sha256:f86fec6c6a844fbbfbf7c806d79dd7e72e4eef9c804472547a6d3ecf34cddca6", + "check_gpg": true + }, + { + "name": "dbus-libs", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-libs-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "name": "dbus-tools", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-tools-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "name": "dbxtool", + "epoch": 0, + "version": "8", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbxtool-8-5.el8.x86_64.rpm", + "checksum": "sha256:69fc3075751693fe23c0658d1e97c0e14366d8833a78ab75b951596b07345827", + "check_gpg": true + }, + { + "name": "dejavu-fonts-common", + "epoch": 0, + "version": "2.35", + "release": "7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dejavu-fonts-common-2.35-7.el8.noarch.rpm", + "checksum": "sha256:dd80a8169e27959a27651616e998be8b49ffdca141744177cb42126ff0ae12b5", + "check_gpg": true + }, + { + "name": "dejavu-sans-mono-fonts", + "epoch": 0, + "version": "2.35", + "release": "7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dejavu-sans-mono-fonts-2.35-7.el8.noarch.rpm", + "checksum": "sha256:a8a27e1ffbb92356d6376334687b9eaa0cb5f2eece2670128f3a01e391e9f3bb", + "check_gpg": true + }, + { + "name": "device-mapper", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "name": "device-mapper-libs", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "name": "dhcp-client", + "epoch": 12, + "version": "4.3.6", + "release": "44.0.1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-client-4.3.6-44.0.1.el8.x86_64.rpm", + "checksum": "sha256:084c55bef75a2ce2ab67aa4eeb6726ca59ea6d7c2b23bc6e4084f11aac7e17f8", + "check_gpg": true + }, + { + "name": "dhcp-common", + "epoch": 12, + "version": "4.3.6", + "release": "44.0.1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-common-4.3.6-44.0.1.el8.noarch.rpm", + "checksum": "sha256:7ec48db9e1e9896f29a16cbea53cdeecdd7dd2bc278c06721ebca2e71e9dcd6d", + "check_gpg": true + }, + { + "name": "dhcp-libs", + "epoch": 12, + "version": "4.3.6", + "release": "44.0.1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-libs-4.3.6-44.0.1.el8.x86_64.rpm", + "checksum": "sha256:436e93b4c072f8b6f90f41a037d017406be10c18efafc8c634f6da59bbac1105", + "check_gpg": true + }, + { + "name": "diffutils", + "epoch": 0, + "version": "3.6", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/diffutils-3.6-6.el8.x86_64.rpm", + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "name": "dmidecode", + "epoch": 1, + "version": "3.2", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dmidecode-3.2-8.el8.x86_64.rpm", + "checksum": "sha256:b2cd2dc5cf9c1c118053e7e650c6d910b1d37e810a38d90de27d80a04b702e39", + "check_gpg": true + }, + { + "name": "dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "name": "dnf-data", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-data-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "name": "dnf-plugin-subscription-manager", + "epoch": 0, + "version": "1.28.10", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-plugin-subscription-manager-1.28.10-1.el8.x86_64.rpm", + "checksum": "sha256:92d0b9ec103da224c892da489441a7beec1df28e2a0962b56a949a1e66372bf6", + "check_gpg": true + }, + { + "name": "dnf-plugins-core", + "epoch": 0, + "version": "4.0.18", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-plugins-core-4.0.18-3.el8.noarch.rpm", + "checksum": "sha256:c4a5df7ec884bdcc929e73e066c7def89cfb8cf53306ffcf9f33a5c9e4ae84c7", + "check_gpg": true + }, + { + "name": "dosfstools", + "epoch": 0, + "version": "4.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dosfstools-4.1-6.el8.x86_64.rpm", + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "name": "dracut", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "name": "dracut-config-generic", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-config-generic-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:760141c74870a93505dbba2174034287b6a97b9bb2b12c5ca2b7af056773b45b", + "check_gpg": true + }, + { + "name": "dracut-network", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-network-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:4a28d9fa9785d7e8515deaf5e1a381a553c37b02a81a20ddd4fa202b33413ac9", + "check_gpg": true + }, + { + "name": "dracut-squash", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-squash-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:16b34582f757aebb9bc7b0a0475458cbb186238b5b528ef8fdb099cb739ba383", + "check_gpg": true + }, + { + "name": "e2fsprogs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "name": "e2fsprogs-libs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "name": "efi-filesystem", + "epoch": 0, + "version": "3", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efi-filesystem-3-3.el8.noarch.rpm", + "checksum": "sha256:d655ee126614010e72bac89b7ecaf38b515647181a22940cb774647442d28beb", + "check_gpg": true + }, + { + "name": "efivar", + "epoch": 0, + "version": "37", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efivar-37-4.el8.x86_64.rpm", + "checksum": "sha256:8842ae7b6585715e5daeb82bebccd993a81a3e0697ea105735b7a920feb1a7ed", + "check_gpg": true + }, + { + "name": "efivar-libs", + "epoch": 0, + "version": "37", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efivar-libs-37-4.el8.x86_64.rpm", + "checksum": "sha256:48bfe66d6f07baf1974355e8a3ebbc44f2d9812b823ddfff1c15f35635a8dc4e", + "check_gpg": true + }, + { + "name": "elfutils-debuginfod-client", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "name": "elfutils-default-yama-scope", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.182-3.el8.noarch.rpm", + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "name": "elfutils-libelf", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libelf-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "name": "elfutils-libs", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libs-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "name": "ethtool", + "epoch": 2, + "version": "5.8", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ethtool-5.8-5.el8.x86_64.rpm", + "checksum": "sha256:f7e6debd0279cb07f0c805d90b707c187bb55b9ee34643898eec800b79fa6b1b", + "check_gpg": true + }, + { + "name": "expat", + "epoch": 0, + "version": "2.2.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/expat-2.2.5-4.el8.x86_64.rpm", + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "name": "file", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "name": "file-libs", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-libs-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "name": "filesystem", + "epoch": 0, + "version": "3.8", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/filesystem-3.8-4.el8.x86_64.rpm", + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "name": "findutils", + "epoch": 1, + "version": "4.6.0", + "release": "20.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/findutils-4.6.0-20.el8.x86_64.rpm", + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "name": "fontconfig", + "epoch": 0, + "version": "2.13.1", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fontconfig-2.13.1-3.el8.x86_64.rpm", + "checksum": "sha256:960f841e4a286b6b9511d47e6736753e4d1f0fd05395a078bacccfb1c8b164aa", + "check_gpg": true + }, + { + "name": "fontpackages-filesystem", + "epoch": 0, + "version": "1.44", + "release": "22.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fontpackages-filesystem-1.44-22.el8.noarch.rpm", + "checksum": "sha256:700b9050aa490b5eca6d1f8630cbebceb122fce11c370689b5ccb37f5a43ee2f", + "check_gpg": true + }, + { + "name": "freetype", + "epoch": 0, + "version": "2.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/freetype-2.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "name": "fuse-libs", + "epoch": 0, + "version": "2.9.7", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-libs-2.9.7-12.el8.x86_64.rpm", + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "name": "gawk", + "epoch": 0, + "version": "4.2.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gawk-4.2.1-2.el8.x86_64.rpm", + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "name": "gdbm", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "name": "gdbm-libs", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-libs-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "name": "gdk-pixbuf2", + "epoch": 0, + "version": "2.36.12", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdk-pixbuf2-2.36.12-5.el8.x86_64.rpm", + "checksum": "sha256:94cb8dceb47a5b01e3c0542ea3b48601d720325da28e6e6d89ae529e4fddcd97", + "check_gpg": true + }, + { + "name": "gettext", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "name": "gettext-libs", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-libs-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "name": "glib-networking", + "epoch": 0, + "version": "2.56.1", + "release": "1.1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib-networking-2.56.1-1.1.el8.x86_64.rpm", + "checksum": "sha256:a7f9ae54f45ca4fcecf78d9885d12a789f7325119794178bfa2814c6185a953d", + "check_gpg": true + }, + { + "name": "glib2", + "epoch": 0, + "version": "2.56.4", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib2-2.56.4-9.el8.x86_64.rpm", + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "name": "glibc", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "name": "glibc-all-langpacks", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-all-langpacks-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af", + "check_gpg": true + }, + { + "name": "glibc-common", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-common-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "name": "gmp", + "epoch": 1, + "version": "6.1.2", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gmp-6.1.2-10.el8.x86_64.rpm", + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "name": "gnupg2", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "name": "gnupg2-smime", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-smime-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "name": "gnutls", + "epoch": 0, + "version": "3.6.14", + "release": "7.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnutls-3.6.14-7.el8_3.x86_64.rpm", + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "name": "gobject-introspection", + "epoch": 0, + "version": "1.56.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gobject-introspection-1.56.1-1.el8.x86_64.rpm", + "checksum": "sha256:7e2804a4494d4179ed50c0c99da1e30c3a6abf8db889c1412b458943cff0e3e5", + "check_gpg": true + }, + { + "name": "gpgme", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gpgme-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "name": "grep", + "epoch": 0, + "version": "3.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grep-3.1-6.el8.x86_64.rpm", + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "name": "groff-base", + "epoch": 0, + "version": "1.22.3", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/groff-base-1.22.3-18.el8.x86_64.rpm", + "checksum": "sha256:b00855013100d3796e9ed6d82b1ab2d4dc7f4a3a3fa2e186f6de8523577974a0", + "check_gpg": true + }, + { + "name": "grub2-common", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-common-2.02-93.el8.noarch.rpm", + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "name": "grub2-efi-x64", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-efi-x64-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:79277d872ae6035009a1a40e914ec09bca21aefcac9d73dee65880c86387f3c9", + "check_gpg": true + }, + { + "name": "grub2-pc", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "name": "grub2-pc-modules", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-modules-2.02-93.el8.noarch.rpm", + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "name": "grub2-tools", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "name": "grub2-tools-extra", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-extra-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "name": "grub2-tools-minimal", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-minimal-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "name": "grubby", + "epoch": 0, + "version": "8.40", + "release": "41.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grubby-8.40-41.el8.x86_64.rpm", + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "name": "gsettings-desktop-schemas", + "epoch": 0, + "version": "3.32.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gsettings-desktop-schemas-3.32.0-5.el8.x86_64.rpm", + "checksum": "sha256:759d9669521b99f19f60f8067e64b4aa42942e22ca62b7f98503f6a932125783", + "check_gpg": true + }, + { + "name": "gssproxy", + "epoch": 0, + "version": "0.8.0", + "release": "19.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gssproxy-0.8.0-19.el8.x86_64.rpm", + "checksum": "sha256:881bdb9aa79de1933dc553fcf0b6597897b60e0e4b73a369572e4d9460fab439", + "check_gpg": true + }, + { + "name": "gzip", + "epoch": 0, + "version": "1.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gzip-1.9-12.el8.x86_64.rpm", + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "name": "hardlink", + "epoch": 1, + "version": "1.3", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hardlink-1.3-6.el8.x86_64.rpm", + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "name": "hdparm", + "epoch": 0, + "version": "9.54", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hdparm-9.54-3.el8.x86_64.rpm", + "checksum": "sha256:3c6650fd6e32fdc24b8cf1f7a85ae8232661b47bda7019e49fd0eb474683ff23", + "check_gpg": true + }, + { + "name": "hostname", + "epoch": 0, + "version": "3.20", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hostname-3.20-6.el8.x86_64.rpm", + "checksum": "sha256:7a7963e2052bfb45b8569f64619dc5cb92fe8aeb78c754b7cf948b9784646785", + "check_gpg": true + }, + { + "name": "hwdata", + "epoch": 0, + "version": "0.314", + "release": "8.7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hwdata-0.314-8.7.el8.noarch.rpm", + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "name": "ima-evm-utils", + "epoch": 0, + "version": "1.3.2", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ima-evm-utils-1.3.2-11.el8.x86_64.rpm", + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "name": "info", + "epoch": 0, + "version": "6.5", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/info-6.5-6.el8.x86_64.rpm", + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "name": "initscripts", + "epoch": 0, + "version": "10.00.12", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/initscripts-10.00.12-1.el8.x86_64.rpm", + "checksum": "sha256:7fa8fbc576f7d54c388fa39fc3ed86bacb7964cac4544c48b3ffabcdcdc27b61", + "check_gpg": true + }, + { + "name": "ipcalc", + "epoch": 0, + "version": "0.2.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipcalc-0.2.4-4.el8.x86_64.rpm", + "checksum": "sha256:dea18976861575d40ffca814dee08a225376c7828a5afc9e5d0a383edd3d8907", + "check_gpg": true + }, + { + "name": "iproute", + "epoch": 0, + "version": "5.9.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iproute-5.9.0-2.el8.x86_64.rpm", + "checksum": "sha256:a456039834ccc5432949120f1d80b18329b552cf44d1b59ea1b60d2192e7bc5c", + "check_gpg": true + }, + { + "name": "iptables-libs", + "epoch": 0, + "version": "1.8.4", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-libs-1.8.4-17.el8.x86_64.rpm", + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "name": "iputils", + "epoch": 0, + "version": "20180629", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iputils-20180629-6.el8.x86_64.rpm", + "checksum": "sha256:74b842ba3352d7c4ada7e991aeadf8749f058a4d00ccc6f79f1c82a281497cb7", + "check_gpg": true + }, + { + "name": "irqbalance", + "epoch": 2, + "version": "1.4.0", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/irqbalance-1.4.0-6.el8.x86_64.rpm", + "checksum": "sha256:3acd2c8b6ea534811308b3138859b5fa150b89604bb60f16b0650747039d696a", + "check_gpg": true + }, + { + "name": "jansson", + "epoch": 0, + "version": "2.11", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/jansson-2.11-3.el8.x86_64.rpm", + "checksum": "sha256:a06e1d34df03aaf429d290d5c281356fefe0ad510c229189405b88b3c0f40374", + "check_gpg": true + }, + { + "name": "json-c", + "epoch": 0, + "version": "0.13.1", + "release": "0.4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-c-0.13.1-0.4.el8.x86_64.rpm", + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "name": "json-glib", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-glib-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:98a6386df94fc9595365c3ecbc630708420fa68d1774614a723dec4a55e84b9c", + "check_gpg": true + }, + { + "name": "kbd", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-2.0.4-10.el8.x86_64.rpm", + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "name": "kbd-legacy", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-legacy-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "name": "kbd-misc", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-misc-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "name": "kernel", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:c44dbbff4fe503f5f49b71ab17db7848c6c67fe19d9a4cc6cef59cc6dd15f1a6", + "check_gpg": true + }, + { + "name": "kernel-core", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:aa938dc6f13d0d57ca811b8c299b1017723fa419997b87754f74db770430c2d9", + "check_gpg": true + }, + { + "name": "kernel-modules", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:da77940ecadc9edb5d14aad51e4bf06664e5763fe6e46b20364732ec3aa2e08a", + "check_gpg": true + }, + { + "name": "kernel-tools", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:5f45a2ff1a9c9f3d4fcae463c1ca70b1a16caccc59816ce391f064c9d8b9d8ae", + "check_gpg": true + }, + { + "name": "kernel-tools-libs", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-libs-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:ab1be3dcea74c7a7fac49f9a1cad4113fded2d3edabb61b29ed8489a737033fe", + "check_gpg": true + }, + { + "name": "kexec-tools", + "epoch": 0, + "version": "2.0.20", + "release": "45.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kexec-tools-2.0.20-45.el8.x86_64.rpm", + "checksum": "sha256:4280042747c9027c3252d360fa33d63490aa518858849115b20162a097a37146", + "check_gpg": true + }, + { + "name": "keyutils", + "epoch": 0, + "version": "1.5.10", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-1.5.10-6.el8.x86_64.rpm", + "checksum": "sha256:f602f145a2deb352013006744cd47e2e1ff9a740ddbeb9412e50e801b5dbe02a", + "check_gpg": true + }, + { + "name": "keyutils-libs", + "epoch": 0, + "version": "1.5.10", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-libs-1.5.10-6.el8.x86_64.rpm", + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "name": "kmod", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-25-17.el8.x86_64.rpm", + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "name": "kmod-libs", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-libs-25-17.el8.x86_64.rpm", + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "name": "kpartx", + "epoch": 0, + "version": "0.8.4", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kpartx-0.8.4-8.el8.x86_64.rpm", + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "name": "krb5-libs", + "epoch": 0, + "version": "1.18.2", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/krb5-libs-1.18.2-8.el8.x86_64.rpm", + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "name": "less", + "epoch": 0, + "version": "530", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/less-530-1.el8.x86_64.rpm", + "checksum": "sha256:f94172554b8ceeab97b560d0b05c2e2df4b2e737471adce6eca82fd3209be254", + "check_gpg": true + }, + { + "name": "libacl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libacl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "name": "libappstream-glib", + "epoch": 0, + "version": "0.7.14", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libappstream-glib-0.7.14-3.el8.x86_64.rpm", + "checksum": "sha256:230820d3f9dbaa9dcd013836f4ba56d0514946bc05cac7727ef2aaff3a3dde26", + "check_gpg": true + }, + { + "name": "libarchive", + "epoch": 0, + "version": "3.3.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libarchive-3.3.3-1.el8.x86_64.rpm", + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "name": "libassuan", + "epoch": 0, + "version": "2.5.1", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libassuan-2.5.1-3.el8.x86_64.rpm", + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "name": "libattr", + "epoch": 0, + "version": "2.4.48", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libattr-2.4.48-3.el8.x86_64.rpm", + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "name": "libbasicobjects", + "epoch": 0, + "version": "0.1.1", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libbasicobjects-0.1.1-39.el8.x86_64.rpm", + "checksum": "sha256:5452b96e4b57c275dd41e48d55af1ca4f77ccfb3ae403796e599a039d7382b91", + "check_gpg": true + }, + { + "name": "libblkid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libblkid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "name": "libcap", + "epoch": 0, + "version": "2.26", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-2.26-4.el8.x86_64.rpm", + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "name": "libcap-ng", + "epoch": 0, + "version": "0.7.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-ng-0.7.9-5.el8.x86_64.rpm", + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "name": "libcollection", + "epoch": 0, + "version": "0.7.0", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcollection-0.7.0-39.el8.x86_64.rpm", + "checksum": "sha256:708a8fd75f7c6987d66e2d62de664b5a84c6f75fd4e5230e244681897b15a25d", + "check_gpg": true + }, + { + "name": "libcom_err", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcom_err-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "name": "libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "name": "libcroco", + "epoch": 0, + "version": "0.6.12", + "release": "4.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcroco-0.6.12-4.el8_2.1.x86_64.rpm", + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "name": "libcurl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcurl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "name": "libdaemon", + "epoch": 0, + "version": "0.14", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdaemon-0.14-15.el8.x86_64.rpm", + "checksum": "sha256:dae52ddd215b506d1805b66873194df5043fd758d42960dee68f029eab329b42", + "check_gpg": true + }, + { + "name": "libdb", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "name": "libdb-utils", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-utils-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "name": "libdhash", + "epoch": 0, + "version": "0.5.0", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdhash-0.5.0-39.el8.x86_64.rpm", + "checksum": "sha256:6327624b7b0d726a3c95f2245619efb1df8e70023fadcc8158afed39f57859e7", + "check_gpg": true + }, + { + "name": "libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "name": "libedit", + "epoch": 0, + "version": "3.1", + "release": "23.20170329cvs.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libedit-3.1-23.20170329cvs.el8.x86_64.rpm", + "checksum": "sha256:08b76b0af07db4d3b27776a96bb7d0dc0f02b7219569676ac79036190d731d5b", + "check_gpg": true + }, + { + "name": "libevent", + "epoch": 0, + "version": "2.1.8", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libevent-2.1.8-5.el8.x86_64.rpm", + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "name": "libfdisk", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libfdisk-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "name": "libffi", + "epoch": 0, + "version": "3.1", + "release": "22.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libffi-3.1-22.el8.x86_64.rpm", + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "name": "libgcc", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcc-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "name": "libgcrypt", + "epoch": 0, + "version": "1.8.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcrypt-1.8.5-4.el8.x86_64.rpm", + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "name": "libgomp", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgomp-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "name": "libgpg-error", + "epoch": 0, + "version": "1.31", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgpg-error-1.31-1.el8.x86_64.rpm", + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "name": "libibverbs", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libibverbs-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "name": "libidn2", + "epoch": 0, + "version": "2.2.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libidn2-2.2.0-1.el8.x86_64.rpm", + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "name": "libini_config", + "epoch": 0, + "version": "1.3.1", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libini_config-1.3.1-39.el8.x86_64.rpm", + "checksum": "sha256:b06fa62d0a585a7bc3b9d3341923736b3ee4b6cc6d7ca83bebcb97225ca86ac9", + "check_gpg": true + }, + { + "name": "libkcapi", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "name": "libkcapi-hmaccalc", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-hmaccalc-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "name": "libksba", + "epoch": 0, + "version": "1.3.5", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libksba-1.3.5-7.el8.x86_64.rpm", + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "name": "libldb", + "epoch": 0, + "version": "2.2.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libldb-2.2.0-1.el8.x86_64.rpm", + "checksum": "sha256:1b5187e9b694e439a059be58d8de5317f04278371d1195bf000b001ba8699197", + "check_gpg": true + }, + { + "name": "libmetalink", + "epoch": 0, + "version": "0.1.3", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmetalink-0.1.3-7.el8.x86_64.rpm", + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "name": "libmnl", + "epoch": 0, + "version": "1.0.4", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmnl-1.0.4-6.el8.x86_64.rpm", + "checksum": "sha256:30fab73ee155f03dbbd99c1e30fe59dfba4ae8fdb2e7213451ccc36d6918bfcc", + "check_gpg": true + }, + { + "name": "libmodman", + "epoch": 0, + "version": "2.0.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodman-2.0.1-17.el8.x86_64.rpm", + "checksum": "sha256:c3b8c553b166491d3114793e198cd1aad95e494d177af8d0dc7180b8b841124d", + "check_gpg": true + }, + { + "name": "libmodulemd", + "epoch": 0, + "version": "2.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodulemd-2.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "name": "libmount", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmount-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "name": "libndp", + "epoch": 0, + "version": "1.7", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libndp-1.7-3.el8.x86_64.rpm", + "checksum": "sha256:c357a350aa169402db3c898c7edcfee333e1d11a44f62bbeaba3fd3d2f31644d", + "check_gpg": true + }, + { + "name": "libnfsidmap", + "epoch": 1, + "version": "2.3.3", + "release": "41.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnfsidmap-2.3.3-41.el8.x86_64.rpm", + "checksum": "sha256:8852282172440cd618c695356449cbc035be4091b2a0833c785c8e42cc1df0e6", + "check_gpg": true + }, + { + "name": "libnghttp2", + "epoch": 0, + "version": "1.33.0", + "release": "3.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnghttp2-1.33.0-3.el8_2.1.x86_64.rpm", + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "name": "libnl3", + "epoch": 0, + "version": "3.5.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-3.5.0-1.el8.x86_64.rpm", + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "name": "libnl3-cli", + "epoch": 0, + "version": "3.5.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-cli-3.5.0-1.el8.x86_64.rpm", + "checksum": "sha256:2e8d4ee76fa8678b0e4d6c0297b16f96e0116201bf96b36e8924b1b080abcddd", + "check_gpg": true + }, + { + "name": "libnsl2", + "epoch": 0, + "version": "1.2.0", + "release": "2.20180605git4a062cf.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64.rpm", + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "name": "libpath_utils", + "epoch": 0, + "version": "0.2.1", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpath_utils-0.2.1-39.el8.x86_64.rpm", + "checksum": "sha256:185f36b3af9367e6142233af358df22f23ee623697bc6a45c47091013707872e", + "check_gpg": true + }, + { + "name": "libpcap", + "epoch": 14, + "version": "1.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpcap-1.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "name": "libpipeline", + "epoch": 0, + "version": "1.5.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpipeline-1.5.0-2.el8.x86_64.rpm", + "checksum": "sha256:9eb9c1a67c5be04487cc133bdb8498eaf260e4d930a0143d2e1aa772e3d6cf64", + "check_gpg": true + }, + { + "name": "libpng", + "epoch": 2, + "version": "1.6.34", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpng-1.6.34-5.el8.x86_64.rpm", + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "name": "libproxy", + "epoch": 0, + "version": "0.4.15", + "release": "5.2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libproxy-0.4.15-5.2.el8.x86_64.rpm", + "checksum": "sha256:c9597eecf39a25497b2ac3c69bc9777eda05b9eaa6d5d29d004a81d71a45d0d7", + "check_gpg": true + }, + { + "name": "libpsl", + "epoch": 0, + "version": "0.20.2", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpsl-0.20.2-6.el8.x86_64.rpm", + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "name": "libpwquality", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "name": "libref_array", + "epoch": 0, + "version": "0.1.5", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libref_array-0.1.5-39.el8.x86_64.rpm", + "checksum": "sha256:6b740563ba5858573ff3c2d2a827aeaf6e7166178e36066755d2cde4cf8a016f", + "check_gpg": true + }, + { + "name": "librepo", + "epoch": 0, + "version": "1.12.0", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/librepo-1.12.0-3.el8.x86_64.rpm", + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "name": "libreport-filesystem", + "epoch": 0, + "version": "2.9.5", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libreport-filesystem-2.9.5-15.el8.x86_64.rpm", + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "name": "libseccomp", + "epoch": 0, + "version": "2.4.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libseccomp-2.4.3-1.el8.x86_64.rpm", + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "name": "libsecret", + "epoch": 0, + "version": "0.18.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsecret-0.18.6-1.el8.x86_64.rpm", + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "name": "libselinux", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "name": "libselinux-utils", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-utils-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "name": "libsemanage", + "epoch": 0, + "version": "2.9", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsemanage-2.9-6.el8.x86_64.rpm", + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "name": "libsepol", + "epoch": 0, + "version": "2.9", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsepol-2.9-2.el8.x86_64.rpm", + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "name": "libsigsegv", + "epoch": 0, + "version": "2.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsigsegv-2.11-5.el8.x86_64.rpm", + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "name": "libsmartcols", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmartcols-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "name": "libsolv", + "epoch": 0, + "version": "0.7.16", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsolv-0.7.16-2.el8.x86_64.rpm", + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "name": "libsoup", + "epoch": 0, + "version": "2.62.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsoup-2.62.3-2.el8.x86_64.rpm", + "checksum": "sha256:5deb66cc8e9094931cf74002186385c1ebdc022936cd8f10ec4c4675a99b9b2a", + "check_gpg": true + }, + { + "name": "libss", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libss-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "name": "libssh", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-0.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "name": "libssh-config", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-config-0.9.4-2.el8.noarch.rpm", + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "name": "libsss_autofs", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_autofs-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:1230ddb5d92fe538a0526e3a9f05563a111ae4ff1978fc8e18de889974b5b46c", + "check_gpg": true + }, + { + "name": "libsss_certmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_certmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:ef2734017b25f7e9e1abf67315a7d1c97216642b5dfb979c19b1a3f74cff1e54", + "check_gpg": true + }, + { + "name": "libsss_idmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_idmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:377ad20c1681518bff1f40884589bddc4a692506384c7676f072ddf86ae429f9", + "check_gpg": true + }, + { + "name": "libsss_nss_idmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_nss_idmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:2c6dd4f21d9c4bde29f693d32e44f0d1c5dc73d78d013767df531d69bbfc6ed8", + "check_gpg": true + }, + { + "name": "libsss_sudo", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_sudo-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:370b74a811249b8f0bdfcd34137507f058a85196775e9d0d2bb244c100d194ae", + "check_gpg": true + }, + { + "name": "libstdc++", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstdc++-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "name": "libstemmer", + "epoch": 0, + "version": "0", + "release": "10.585svn.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstemmer-0-10.585svn.el8.x86_64.rpm", + "checksum": "sha256:9b121a03314f1f0822a58059efba09944df192c35e22267f39137f70a28cda1c", + "check_gpg": true + }, + { + "name": "libsysfs", + "epoch": 0, + "version": "2.1.0", + "release": "24.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsysfs-2.1.0-24.el8.x86_64.rpm", + "checksum": "sha256:53ae3ecd59ec61852cabbd039c748ed63ceb6a88da98587d4c33323ba4095154", + "check_gpg": true + }, + { + "name": "libtalloc", + "epoch": 0, + "version": "2.3.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtalloc-2.3.1-2.el8.x86_64.rpm", + "checksum": "sha256:918518368513d162d772dfc5d16536ad2799276bcba2f47514a1c7098de2b43f", + "check_gpg": true + }, + { + "name": "libtasn1", + "epoch": 0, + "version": "4.13", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtasn1-4.13-3.el8.x86_64.rpm", + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "name": "libtdb", + "epoch": 0, + "version": "1.4.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtdb-1.4.3-1.el8.x86_64.rpm", + "checksum": "sha256:a5228fc876cffc7dc79769ada5653cb9bfb80d469fb3c9f0acc14a1a0d15782d", + "check_gpg": true + }, + { + "name": "libteam", + "epoch": 0, + "version": "1.31", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libteam-1.31-2.el8.x86_64.rpm", + "checksum": "sha256:0aaaaa29cc1bb4d358142db6eb7d12df9252a8166bf61956203878eed210785c", + "check_gpg": true + }, + { + "name": "libtevent", + "epoch": 0, + "version": "0.10.2", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtevent-0.10.2-2.el8.x86_64.rpm", + "checksum": "sha256:b8e4cfecbbe7d2d6d9f3003432e826398f6bea21d5aba11a17ee74358cb84a6e", + "check_gpg": true + }, + { + "name": "libtirpc", + "epoch": 0, + "version": "1.1.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtirpc-1.1.4-4.el8.x86_64.rpm", + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "name": "libunistring", + "epoch": 0, + "version": "0.9.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libunistring-0.9.9-3.el8.x86_64.rpm", + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "name": "libusbx", + "epoch": 0, + "version": "1.0.23", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libusbx-1.0.23-4.el8.x86_64.rpm", + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "name": "libuser", + "epoch": 0, + "version": "0.62", + "release": "23.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuser-0.62-23.el8.x86_64.rpm", + "checksum": "sha256:70b5e4e580da72969ad3bb144c15293910b7d679e195c118cee60d8320f01851", + "check_gpg": true + }, + { + "name": "libutempter", + "epoch": 0, + "version": "1.1.6", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libutempter-1.1.6-14.el8.x86_64.rpm", + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "name": "libuuid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuuid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "name": "libverto", + "epoch": 0, + "version": "0.3.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-0.3.0-5.el8.x86_64.rpm", + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "name": "libverto-libevent", + "epoch": 0, + "version": "0.3.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-libevent-0.3.0-5.el8.x86_64.rpm", + "checksum": "sha256:538899f9a39e085ef14bd34f84327c12b862981df1428bb1353ef4082ddd3a4c", + "check_gpg": true + }, + { + "name": "libxcrypt", + "epoch": 0, + "version": "4.1.1", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxcrypt-4.1.1-4.el8.x86_64.rpm", + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "name": "libxml2", + "epoch": 0, + "version": "2.9.7", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxml2-2.9.7-9.el8.x86_64.rpm", + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "name": "libyaml", + "epoch": 0, + "version": "0.1.7", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libyaml-0.1.7-5.el8.x86_64.rpm", + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "name": "libzstd", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libzstd-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "name": "linux-firmware", + "epoch": 0, + "version": "20201218", + "release": "102.git05789708.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/linux-firmware-20201218-102.git05789708.el8.noarch.rpm", + "checksum": "sha256:cad76a2802c5f355b527df3cabde70bd58b31ec4b7de3b1ac15a429cda5b9b03", + "check_gpg": true + }, + { + "name": "lmdb-libs", + "epoch": 0, + "version": "0.9.24", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lmdb-libs-0.9.24-1.el8.x86_64.rpm", + "checksum": "sha256:0064a3aeff41fb7345c061956c35e4b9d0b8802954e717491fb6eb51028d22fd", + "check_gpg": true + }, + { + "name": "logrotate", + "epoch": 0, + "version": "3.14.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/logrotate-3.14.0-4.el8.x86_64.rpm", + "checksum": "sha256:3cd092e6e03efb4bb49b91dedd52b43f891092d04a2ff040b9f2197ec2082511", + "check_gpg": true + }, + { + "name": "lshw", + "epoch": 0, + "version": "B.02.19.2", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lshw-B.02.19.2-5.el8.x86_64.rpm", + "checksum": "sha256:fda078d8edd4e0902246dd3121efb6c57cb8231dbb975380f9249c64163f0d88", + "check_gpg": true + }, + { + "name": "lsscsi", + "epoch": 0, + "version": "0.32", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lsscsi-0.32-2.el8.x86_64.rpm", + "checksum": "sha256:c8fc05dd997477fc80e2f3195e719ca2e569fc8997f05a64a13c52c8358e8239", + "check_gpg": true + }, + { + "name": "lua-libs", + "epoch": 0, + "version": "5.3.4", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lua-libs-5.3.4-11.el8.x86_64.rpm", + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "name": "lz4-libs", + "epoch": 0, + "version": "1.8.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lz4-libs-1.8.3-2.el8.x86_64.rpm", + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "name": "lzo", + "epoch": 0, + "version": "2.08", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lzo-2.08-14.el8.x86_64.rpm", + "checksum": "sha256:5c68635cb03533a38d4a42f6547c21a1d5f9952351bb01f3cf865d2621a6e634", + "check_gpg": true + }, + { + "name": "man-db", + "epoch": 0, + "version": "2.7.6.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/man-db-2.7.6.1-17.el8.x86_64.rpm", + "checksum": "sha256:a0b6a8d5530f5003f5c8d56211246cd1130a5b4dc1396dc50da70ce0e128b02c", + "check_gpg": true + }, + { + "name": "memstrack", + "epoch": 0, + "version": "0.1.11", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/memstrack-0.1.11-1.el8.x86_64.rpm", + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "name": "microcode_ctl", + "epoch": 4, + "version": "20201112", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/microcode_ctl-20201112-2.el8.x86_64.rpm", + "checksum": "sha256:bce152ddd2f05f892e5ce483a7c12606ba7d2c42108402fc9609ada04048e6df", + "check_gpg": true + }, + { + "name": "mokutil", + "epoch": 1, + "version": "0.3.0", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mokutil-0.3.0-11.el8.x86_64.rpm", + "checksum": "sha256:1c4b186665558747023a60d0d662d3780a1bc49e578062f4b70100c71ab2220c", + "check_gpg": true + }, + { + "name": "mozjs60", + "epoch": 0, + "version": "60.9.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mozjs60-60.9.0-4.el8.x86_64.rpm", + "checksum": "sha256:03b50a4ea5cf5655c67e2358fabb6e563eec4e7929e7fc6c4e92c92694f60fa0", + "check_gpg": true + }, + { + "name": "mpfr", + "epoch": 0, + "version": "3.1.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mpfr-3.1.6-1.el8.x86_64.rpm", + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "name": "ncurses", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "name": "ncurses-base", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-base-6.1-7.20180224.el8.noarch.rpm", + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "name": "ncurses-libs", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-libs-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "name": "nettle", + "epoch": 0, + "version": "3.4.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nettle-3.4.1-2.el8.x86_64.rpm", + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "name": "newt", + "epoch": 0, + "version": "0.52.20", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/newt-0.52.20-11.el8.x86_64.rpm", + "checksum": "sha256:c9df7c58da59500e1717e435c565e221daa344212db8e83eb33b6a9c8e9a67bb", + "check_gpg": true + }, + { + "name": "nfs-utils", + "epoch": 1, + "version": "2.3.3", + "release": "41.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nfs-utils-2.3.3-41.el8.x86_64.rpm", + "checksum": "sha256:58026205b6bd63438307d6afc0b0fb15d1d2d09736cbd0f8b245fadffec81003", + "check_gpg": true + }, + { + "name": "npth", + "epoch": 0, + "version": "1.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/npth-1.5-4.el8.x86_64.rpm", + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "name": "numactl-libs", + "epoch": 0, + "version": "2.0.12", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/numactl-libs-2.0.12-11.el8.x86_64.rpm", + "checksum": "sha256:5e24dd39ae59ef7b7a386f28509cc80d8fabb23f0932e52ea365cf064ff76c59", + "check_gpg": true + }, + { + "name": "openldap", + "epoch": 0, + "version": "2.4.46", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openldap-2.4.46-16.el8.x86_64.rpm", + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "name": "openssh", + "epoch": 0, + "version": "8.0p1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-8.0p1-5.el8.x86_64.rpm", + "checksum": "sha256:f8bdaf5211c6fc72c8f60c7ddd59b8ca124ab26d2670ee6490a7fabb5177d919", + "check_gpg": true + }, + { + "name": "openssh-clients", + "epoch": 0, + "version": "8.0p1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-clients-8.0p1-5.el8.x86_64.rpm", + "checksum": "sha256:a9ec13abf63c69913acc1ac7070ab315c8b5a58c6006c3dfc5b27662f7f22260", + "check_gpg": true + }, + { + "name": "openssh-server", + "epoch": 0, + "version": "8.0p1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-server-8.0p1-5.el8.x86_64.rpm", + "checksum": "sha256:173a812d859c70f8db7b014d507c5cacb76c62ab5480c44be217f880465f42c7", + "check_gpg": true + }, + { + "name": "openssl", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "name": "openssl-libs", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-libs-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "name": "openssl-pkcs11", + "epoch": 0, + "version": "0.4.10", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-pkcs11-0.4.10-2.el8.x86_64.rpm", + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "name": "os-prober", + "epoch": 0, + "version": "1.74", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/os-prober-1.74-6.el8.x86_64.rpm", + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "name": "p11-kit", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "name": "p11-kit-trust", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-trust-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "name": "pam", + "epoch": 0, + "version": "1.3.1", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pam-1.3.1-14.el8.x86_64.rpm", + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "name": "parted", + "epoch": 0, + "version": "3.2", + "release": "38.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/parted-3.2-38.el8.x86_64.rpm", + "checksum": "sha256:4c5c7f3773c634c054b0a5fc1b40d0a8448b44bb5aff410bfa88facf9e2059ff", + "check_gpg": true + }, + { + "name": "passwd", + "epoch": 0, + "version": "0.80", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/passwd-0.80-3.el8.x86_64.rpm", + "checksum": "sha256:9c849b1d4fd605ae749fd9d090715b6034520af871c23729cd4003f22e0990de", + "check_gpg": true + }, + { + "name": "pciutils", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "name": "pciutils-libs", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-libs-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "name": "pcre", + "epoch": 0, + "version": "8.42", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre-8.42-4.el8.x86_64.rpm", + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "name": "pcre2", + "epoch": 0, + "version": "10.32", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre2-10.32-2.el8.x86_64.rpm", + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "name": "pigz", + "epoch": 0, + "version": "2.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pigz-2.4-4.el8.x86_64.rpm", + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "name": "platform-python", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "name": "platform-python-pip", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-pip-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "name": "platform-python-setuptools", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-setuptools-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "name": "policycoreutils", + "epoch": 0, + "version": "2.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-2.9-12.el8.x86_64.rpm", + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "name": "policycoreutils-python-utils", + "epoch": 0, + "version": "2.9", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-python-utils-2.9-12.el8.noarch.rpm", + "checksum": "sha256:44c8d429eda78196b566c95603bdbcc23483c1dab3dd6e0efae29aa6d848a431", + "check_gpg": true + }, + { + "name": "polkit", + "epoch": 0, + "version": "0.115", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-0.115-11.el8.x86_64.rpm", + "checksum": "sha256:09128c1b70cb8ea1a9bfbc6f3314dd5a8ba0c1a1886a82cd0fbe6845d48215dc", + "check_gpg": true + }, + { + "name": "polkit-libs", + "epoch": 0, + "version": "0.115", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-libs-0.115-11.el8.x86_64.rpm", + "checksum": "sha256:8d6742dce47f8ed65e222864872e919f30c678f5df1e99c134fba8a0fc7f454d", + "check_gpg": true + }, + { + "name": "polkit-pkla-compat", + "epoch": 0, + "version": "0.1", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-pkla-compat-0.1-12.el8.x86_64.rpm", + "checksum": "sha256:e7ee4b6d6456cb7da0332f5a6fb8a7c47df977bcf616f12f0455413765367e89", + "check_gpg": true + }, + { + "name": "popt", + "epoch": 0, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/popt-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "name": "prefixdevname", + "epoch": 0, + "version": "0.1.0", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/prefixdevname-0.1.0-6.el8.x86_64.rpm", + "checksum": "sha256:776a182ecaab9f86c7e869db2eb2deea1f291caee701cddbd752da8cd3c57458", + "check_gpg": true + }, + { + "name": "procps-ng", + "epoch": 0, + "version": "3.3.15", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/procps-ng-3.3.15-6.el8.x86_64.rpm", + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "name": "psmisc", + "epoch": 0, + "version": "23.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/psmisc-23.1-5.el8.x86_64.rpm", + "checksum": "sha256:9d433d8c058e59c891c0852b95b3b87795ea30a85889c77ba0b12f965517d626", + "check_gpg": true + }, + { + "name": "publicsuffix-list-dafsa", + "epoch": 0, + "version": "20180723", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20180723-1.el8.noarch.rpm", + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "name": "python3-audit", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-audit-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:addf80c52d794aed47874eb9d5ddbbaa90cb248fda1634d793054a41da0d92d7", + "check_gpg": true + }, + { + "name": "python3-cffi", + "epoch": 0, + "version": "1.11.5", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-cffi-1.11.5-5.el8.x86_64.rpm", + "checksum": "sha256:07ed1209e898552e6aeac0e6d148271d562c576f7d903cb7a99a697643068f58", + "check_gpg": true + }, + { + "name": "python3-chardet", + "epoch": 0, + "version": "3.0.4", + "release": "7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-chardet-3.0.4-7.el8.noarch.rpm", + "checksum": "sha256:176ffcb2cf0fdcbdd2d8119cbd98eef60a30fdb0fb065a9382d2c95e90c79652", + "check_gpg": true + }, + { + "name": "python3-configobj", + "epoch": 0, + "version": "5.0.6", + "release": "11.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-configobj-5.0.6-11.el8.noarch.rpm", + "checksum": "sha256:1bd969e0521820374122f5132e5998d9bd2ab185be66565a7266096297419c8e", + "check_gpg": true + }, + { + "name": "python3-cryptography", + "epoch": 0, + "version": "3.2.1", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-cryptography-3.2.1-3.el8.x86_64.rpm", + "checksum": "sha256:2ebe28be2e0a413af31a0f49b6a2774670067cdbe48e723040b19922ae205d6b", + "check_gpg": true + }, + { + "name": "python3-dateutil", + "epoch": 1, + "version": "2.6.1", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dateutil-2.6.1-6.el8.noarch.rpm", + "checksum": "sha256:c5b5967a094ced90899052a82e2c245529b75ba3f46e0ce1a89cfc95edb935ea", + "check_gpg": true + }, + { + "name": "python3-dbus", + "epoch": 0, + "version": "1.2.4", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dbus-1.2.4-15.el8.x86_64.rpm", + "checksum": "sha256:066f254f9ac7712b44214816de907a87eb8dfd0d2ea9570a7513db9a6617ba26", + "check_gpg": true + }, + { + "name": "python3-decorator", + "epoch": 0, + "version": "4.2.1", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-decorator-4.2.1-2.el8.noarch.rpm", + "checksum": "sha256:0e9a8a0f823bf0ef948862f0ccb62353460bd07931e756c98f23908c1c526578", + "check_gpg": true + }, + { + "name": "python3-dmidecode", + "epoch": 0, + "version": "3.12.2", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dmidecode-3.12.2-15.el8.x86_64.rpm", + "checksum": "sha256:c39a53566ad66d6db9e101ca9a6db316843a1d1f6f5ac5f2286c6028638a8ab7", + "check_gpg": true + }, + { + "name": "python3-dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "name": "python3-dnf-plugins-core", + "epoch": 0, + "version": "4.0.18", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-plugins-core-4.0.18-3.el8.noarch.rpm", + "checksum": "sha256:941a9068b8fa524ecac58d37f941b95fbdcd9e38bd87c7f9d1330c5925a52a20", + "check_gpg": true + }, + { + "name": "python3-ethtool", + "epoch": 0, + "version": "0.14", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-ethtool-0.14-3.el8.x86_64.rpm", + "checksum": "sha256:c746d43bd63dd184b8c585dd7323e261567928e521e830720d4754fca76157e0", + "check_gpg": true + }, + { + "name": "python3-gobject-base", + "epoch": 0, + "version": "3.28.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gobject-base-3.28.3-2.el8.x86_64.rpm", + "checksum": "sha256:15dc15a5be210707852f051f4d09949c063a7283edc7d4ca3d4289eedcc0b509", + "check_gpg": true + }, + { + "name": "python3-gpg", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gpg-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "name": "python3-hawkey", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-hawkey-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "name": "python3-idna", + "epoch": 0, + "version": "2.5", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-idna-2.5-5.el8.noarch.rpm", + "checksum": "sha256:78c43d8a15ca018de1803e4baac5819e1baab1963fd31f1e44e54e8a573acbfc", + "check_gpg": true + }, + { + "name": "python3-iniparse", + "epoch": 0, + "version": "0.4", + "release": "31.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-iniparse-0.4-31.el8.noarch.rpm", + "checksum": "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178", + "check_gpg": true + }, + { + "name": "python3-inotify", + "epoch": 0, + "version": "0.9.6", + "release": "13.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-inotify-0.9.6-13.el8.noarch.rpm", + "checksum": "sha256:109d6db30e5515601b00954b2fd8750c421730a18afc12e1fa7781e24e5b0863", + "check_gpg": true + }, + { + "name": "python3-jwt", + "epoch": 0, + "version": "1.6.1", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-jwt-1.6.1-2.el8.noarch.rpm", + "checksum": "sha256:ebeb05a4a9cdd5d060859eabac1349029c0120615c98fc939e26664c030655c1", + "check_gpg": true + }, + { + "name": "python3-libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "name": "python3-libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "name": "python3-librepo", + "epoch": 0, + "version": "1.12.0", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-librepo-1.12.0-3.el8.x86_64.rpm", + "checksum": "sha256:acec114d3d071379d70634e0c9c097cce38aa418500d010a8057b3fa1f69b27e", + "check_gpg": true + }, + { + "name": "python3-libs", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libs-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "name": "python3-libselinux", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libselinux-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:59ba5bf69953a5a2e902b0f08b7187b66d84968852d46a3579a059477547d1a0", + "check_gpg": true + }, + { + "name": "python3-libsemanage", + "epoch": 0, + "version": "2.9", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libsemanage-2.9-6.el8.x86_64.rpm", + "checksum": "sha256:451d0cb6e2284578e3279b4cbb5ec98e9d98a687556c6b424adf8f1282d4ef58", + "check_gpg": true + }, + { + "name": "python3-libxml2", + "epoch": 0, + "version": "2.9.7", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libxml2-2.9.7-9.el8.x86_64.rpm", + "checksum": "sha256:78ade36bcaa352e60732f94d0f668ea62a34e88aa2cadd4cb0d1ec0f21392525", + "check_gpg": true + }, + { + "name": "python3-linux-procfs", + "epoch": 0, + "version": "0.6.3", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-linux-procfs-0.6.3-1.el8.noarch.rpm", + "checksum": "sha256:dc835194ecfa6ebda81e0a764c953eff3422a61863e9a3e0dc74ea4cae7a4d94", + "check_gpg": true + }, + { + "name": "python3-oauthlib", + "epoch": 0, + "version": "2.1.0", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-oauthlib-2.1.0-1.el8.noarch.rpm", + "checksum": "sha256:20874a9d40b12125c9e5b97fe4ccda3f94acbc03da1dec7299123901f5b56631", + "check_gpg": true + }, + { + "name": "python3-perf", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-perf-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:6aa1e29a4d805fc36c3196788fe78cb4552e2ebec8b3d0f8d32974e6a97025f2", + "check_gpg": true + }, + { + "name": "python3-pip-wheel", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pip-wheel-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "name": "python3-ply", + "epoch": 0, + "version": "3.9", + "release": "9.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-ply-3.9-9.el8.noarch.rpm", + "checksum": "sha256:d1e8c7a00924d1a6dee44ade189025853a501d4f77c73f3bfc006aa907d97daf", + "check_gpg": true + }, + { + "name": "python3-policycoreutils", + "epoch": 0, + "version": "2.9", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-policycoreutils-2.9-12.el8.noarch.rpm", + "checksum": "sha256:142d4fe6236cdeac3f967517085d99649215d75026fbe00746e0c5214d7d20df", + "check_gpg": true + }, + { + "name": "python3-pycparser", + "epoch": 0, + "version": "2.14", + "release": "14.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pycparser-2.14-14.el8.noarch.rpm", + "checksum": "sha256:8891a9a4707611c13a5693b195201dd940254ffdb03cf5742952329282bb8cb7", + "check_gpg": true + }, + { + "name": "python3-pysocks", + "epoch": 0, + "version": "1.6.8", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pysocks-1.6.8-3.el8.noarch.rpm", + "checksum": "sha256:7f506879c64e0bb4d98782d025f46fb9a07517487ae4cbebbb3985a98f4e2154", + "check_gpg": true + }, + { + "name": "python3-pyudev", + "epoch": 0, + "version": "0.21.0", + "release": "7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pyudev-0.21.0-7.el8.noarch.rpm", + "checksum": "sha256:aa0007192287faeaecc72d9fa48efdb3108c764d450dc8fea65474476da32c45", + "check_gpg": true + }, + { + "name": "python3-pyyaml", + "epoch": 0, + "version": "3.12", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pyyaml-3.12-12.el8.x86_64.rpm", + "checksum": "sha256:525393e4d658e395c6280bd2ff4afe54999796c4722986325297ba4bfade3ea5", + "check_gpg": true + }, + { + "name": "python3-requests", + "epoch": 0, + "version": "2.20.0", + "release": "2.1.el8_1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-requests-2.20.0-2.1.el8_1.noarch.rpm", + "checksum": "sha256:003ee19ec5b88de212c3246bdfdb3e97a9910a25a219fd7cf5030b7bc666fea9", + "check_gpg": true + }, + { + "name": "python3-rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "name": "python3-schedutils", + "epoch": 0, + "version": "0.6", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-schedutils-0.6-6.el8.x86_64.rpm", + "checksum": "sha256:bafc2680bd298f0fac70854224ef03b7098d4c46ee35e270f6fd58d2e812ff1b", + "check_gpg": true + }, + { + "name": "python3-setools", + "epoch": 0, + "version": "4.3.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setools-4.3.0-2.el8.x86_64.rpm", + "checksum": "sha256:f56992135d789147285215cb062960fedcdf4b3296c62658fa430caa2c20165c", + "check_gpg": true + }, + { + "name": "python3-setuptools-wheel", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "name": "python3-six", + "epoch": 0, + "version": "1.11.0", + "release": "8.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-six-1.11.0-8.el8.noarch.rpm", + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "name": "python3-slip", + "epoch": 0, + "version": "0.6.4", + "release": "11.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-slip-0.6.4-11.el8.noarch.rpm", + "checksum": "sha256:233e5f78027b684e5aaac1395cc574aea3039059bf86eb4494422bc74216a396", + "check_gpg": true + }, + { + "name": "python3-slip-dbus", + "epoch": 0, + "version": "0.6.4", + "release": "11.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-slip-dbus-0.6.4-11.el8.noarch.rpm", + "checksum": "sha256:563b3741d26b6af963fdb7b0634e0791445a707d0b6093ac71c3224299241639", + "check_gpg": true + }, + { + "name": "python3-subscription-manager-rhsm", + "epoch": 0, + "version": "1.28.10", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-subscription-manager-rhsm-1.28.10-1.el8.x86_64.rpm", + "checksum": "sha256:1cef673b1e520903e3b1c17d0d284d205a6f949908c351618dae892f40fb011b", + "check_gpg": true + }, + { + "name": "python3-syspurpose", + "epoch": 0, + "version": "1.28.10", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-syspurpose-1.28.10-1.el8.x86_64.rpm", + "checksum": "sha256:017e78c5e23f98d6ee299255fc7be5381dba63d169e3f5dcb1de9d21b5d30ba5", + "check_gpg": true + }, + { + "name": "python3-urllib3", + "epoch": 0, + "version": "1.24.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-urllib3-1.24.2-5.el8.noarch.rpm", + "checksum": "sha256:aa1835fd302a37b84ac256db5dd0de09bd9883a5a07775aedb491faf46b18ee0", + "check_gpg": true + }, + { + "name": "quota", + "epoch": 1, + "version": "4.04", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/quota-4.04-12.el8.x86_64.rpm", + "checksum": "sha256:d46e4c5067f182974d74691885cef31100c9cef59966c4ef399a284be3b91608", + "check_gpg": true + }, + { + "name": "quota-nls", + "epoch": 1, + "version": "4.04", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/quota-nls-4.04-12.el8.noarch.rpm", + "checksum": "sha256:ff3846c5910773af5466b5c3640ffd3c867c2bcbcccc11a7c11eb4438d9e3ae2", + "check_gpg": true + }, + { + "name": "rdma-core", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rdma-core-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "name": "readline", + "epoch": 0, + "version": "7.0", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/readline-7.0-10.el8.x86_64.rpm", + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "name": "rhsm-icons", + "epoch": 0, + "version": "1.28.10", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rhsm-icons-1.28.10-1.el8.noarch.rpm", + "checksum": "sha256:b028aa2b393a124c5bf8665f9111caa9e4c2aa757d880b100c1616c207848a3f", + "check_gpg": true + }, + { + "name": "rootfiles", + "epoch": 0, + "version": "8.1", + "release": "22.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rootfiles-8.1-22.el8.noarch.rpm", + "checksum": "sha256:d967d6bbb33bf7a295a64807f81875c84e82a8ecc59b6c72fe955141b1660d39", + "check_gpg": true + }, + { + "name": "rpcbind", + "epoch": 0, + "version": "1.2.5", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpcbind-1.2.5-8.el8.x86_64.rpm", + "checksum": "sha256:e76ffaf54db6ac36f0aa56c8013431c352c6187c8d674c6d468e25c573e31597", + "check_gpg": true + }, + { + "name": "rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "name": "rpm-build-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-build-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "name": "rpm-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "name": "rpm-plugin-selinux", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "name": "rpm-plugin-systemd-inhibit", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "name": "rsync", + "epoch": 0, + "version": "3.1.3", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rsync-3.1.3-12.el8.x86_64.rpm", + "checksum": "sha256:7443e0df4d55a40a0ba3cec4cd4da620200a255605e31a137bee001cb4b43af3", + "check_gpg": true + }, + { + "name": "sed", + "epoch": 0, + "version": "4.5", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sed-4.5-2.el8.x86_64.rpm", + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "name": "selinux-policy", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "name": "selinux-policy-targeted", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-targeted-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "name": "setup", + "epoch": 0, + "version": "2.12.2", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/setup-2.12.2-6.el8.noarch.rpm", + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "name": "sg3_utils", + "epoch": 0, + "version": "1.44", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-1.44-5.el8.x86_64.rpm", + "checksum": "sha256:a1d1bac6c4710e0a1a6e8a507b06a630dda6687f12642be0847768c14ce7271e", + "check_gpg": true + }, + { + "name": "sg3_utils-libs", + "epoch": 0, + "version": "1.44", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-libs-1.44-5.el8.x86_64.rpm", + "checksum": "sha256:774d214a379c0b729d7e989f9d5094fdfda7df68c1e792ba9200542032f04c91", + "check_gpg": true + }, + { + "name": "shadow-utils", + "epoch": 2, + "version": "4.6", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shadow-utils-4.6-12.el8.x86_64.rpm", + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "name": "shared-mime-info", + "epoch": 0, + "version": "1.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shared-mime-info-1.9-3.el8.x86_64.rpm", + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "name": "shim-x64", + "epoch": 0, + "version": "15", + "release": "15.el8_2", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shim-x64-15-15.el8_2.x86_64.rpm", + "checksum": "sha256:f0346c485da9a7e8c8d93624f335cbb25790a7f37c6c03e43232517bb73bbacb", + "check_gpg": true + }, + { + "name": "slang", + "epoch": 0, + "version": "2.3.2", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/slang-2.3.2-3.el8.x86_64.rpm", + "checksum": "sha256:be628d396303d6547b9d7239897fbf4fad7447375cb5e898b394a458f420b550", + "check_gpg": true + }, + { + "name": "snappy", + "epoch": 0, + "version": "1.1.8", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/snappy-1.1.8-3.el8.x86_64.rpm", + "checksum": "sha256:839c62cd7fc7e152decded6f28c80b5f7b8f34a5e319057867b38b26512cee67", + "check_gpg": true + }, + { + "name": "sos", + "epoch": 0, + "version": "4.0", + "release": "7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sos-4.0-7.el8.noarch.rpm", + "checksum": "sha256:8846acb4df4306e2274bd8a496e0c47ee1fea1d211f6d3369e261ec863fddcb1", + "check_gpg": true + }, + { + "name": "sqlite-libs", + "epoch": 0, + "version": "3.26.0", + "release": "13.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sqlite-libs-3.26.0-13.el8.x86_64.rpm", + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "name": "squashfs-tools", + "epoch": 0, + "version": "4.3", + "release": "19.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/squashfs-tools-4.3-19.el8.x86_64.rpm", + "checksum": "sha256:a0c8f83cef355dd98d7750e3d8eb3e9f3e9f8f5e9a3ee441cb4bc4014c647e31", + "check_gpg": true + }, + { + "name": "sssd-client", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-client-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:b1871d8ac1abaf5e809448c5f37e32487f177aee3080d9033efb4b160f755aba", + "check_gpg": true + }, + { + "name": "sssd-common", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-common-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:fe944d9dd89d550d2aa44d33cfeb11c803b074bfcda0dbbad486c392bf1cc9d0", + "check_gpg": true + }, + { + "name": "sssd-kcm", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-kcm-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:6cd7444c22d56201f61fed5fd741b44cfaae18d95b811d25c5f0ffe2f8e55a8f", + "check_gpg": true + }, + { + "name": "sssd-nfs-idmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-nfs-idmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:7115a12fad224b469419e19ee5c0d38322f467fe7a1c441c1b0239b197baac2a", + "check_gpg": true + }, + { + "name": "subscription-manager", + "epoch": 0, + "version": "1.28.10", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/subscription-manager-1.28.10-1.el8.x86_64.rpm", + "checksum": "sha256:8cad468b07c285444728b39817df72c77f7a96e06367e63f09ac979d3349d386", + "check_gpg": true + }, + { + "name": "subscription-manager-cockpit", + "epoch": 0, + "version": "1.28.10", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/subscription-manager-cockpit-1.28.10-1.el8.noarch.rpm", + "checksum": "sha256:d367fa4bad5f6494c390791b570c43ca15fc65db3aa14544ead87571364cd426", + "check_gpg": true + }, + { + "name": "subscription-manager-rhsm-certificates", + "epoch": 0, + "version": "1.28.10", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/subscription-manager-rhsm-certificates-1.28.10-1.el8.x86_64.rpm", + "checksum": "sha256:0cb3dccf2c3bd45c773dd3fbf14bd9d7e7a40fe33edd36077738066af3c95517", + "check_gpg": true + }, + { + "name": "sudo", + "epoch": 0, + "version": "1.8.29", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sudo-1.8.29-7.el8.x86_64.rpm", + "checksum": "sha256:cbcade4487fbf372b487b9f82ed85e04ff037551c96c4b461abc3716338ff9c4", + "check_gpg": true + }, + { + "name": "systemd", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-239-44.el8.x86_64.rpm", + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "name": "systemd-libs", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-libs-239-44.el8.x86_64.rpm", + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "name": "systemd-pam", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-pam-239-44.el8.x86_64.rpm", + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "name": "systemd-udev", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-udev-239-44.el8.x86_64.rpm", + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "name": "tar", + "epoch": 2, + "version": "1.30", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tar-1.30-5.el8.x86_64.rpm", + "checksum": "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393", + "check_gpg": true + }, + { + "name": "teamd", + "epoch": 0, + "version": "1.31", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/teamd-1.31-2.el8.x86_64.rpm", + "checksum": "sha256:9664aba8dfd6bd6fda669fcf8f6ff04914305a6373b09d8b675322c7337b9c36", + "check_gpg": true + }, + { + "name": "timedatex", + "epoch": 0, + "version": "0.5", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/timedatex-0.5-3.el8.x86_64.rpm", + "checksum": "sha256:6fc3208be9c78bf1f843f9f7d4d3f04096f116dc056285142235bf76472ba382", + "check_gpg": true + }, + { + "name": "tpm2-tss", + "epoch": 0, + "version": "2.3.2", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tpm2-tss-2.3.2-3.el8.x86_64.rpm", + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "name": "trousers", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "name": "trousers-lib", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-lib-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "name": "tuned", + "epoch": 0, + "version": "2.15.0", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tuned-2.15.0-1.el8.noarch.rpm", + "checksum": "sha256:b3bc3f1c9e8028a177599f1ed9cb6c31d2d6e75111e34623d25e736d3ddcf8fd", + "check_gpg": true + }, + { + "name": "tzdata", + "epoch": 0, + "version": "2021a", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tzdata-2021a-1.el8.noarch.rpm", + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "name": "usermode", + "epoch": 0, + "version": "1.113", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/usermode-1.113-1.el8.x86_64.rpm", + "checksum": "sha256:eec162a2757ee2ffbbee95e1dbcd33318119e5113e53af877ce9416529a19082", + "check_gpg": true + }, + { + "name": "util-linux", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/util-linux-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "name": "vim-minimal", + "epoch": 2, + "version": "8.0.1763", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/vim-minimal-8.0.1763-15.el8.x86_64.rpm", + "checksum": "sha256:3efd6a2548813167fe37718546bc768a5aa8ba59aa80edcecd8ba408bec329b0", + "check_gpg": true + }, + { + "name": "virt-what", + "epoch": 0, + "version": "1.18", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/virt-what-1.18-6.el8.x86_64.rpm", + "checksum": "sha256:4c02e3e1808f0189269b242242468a364007a8f12c6e38afc24b599b2848b0fa", + "check_gpg": true + }, + { + "name": "which", + "epoch": 0, + "version": "2.21", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/which-2.21-12.el8.x86_64.rpm", + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "name": "xfsprogs", + "epoch": 0, + "version": "5.0.0", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xfsprogs-5.0.0-8.el8.x86_64.rpm", + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "name": "xz", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "name": "xz-libs", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-libs-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "name": "yum", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/yum-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:4302361b12eefd5574f57bf0c49c0e5bdc738eddda33634af8b35adfb53a52a1", + "check_gpg": true + }, + { + "name": "yum-utils", + "epoch": 0, + "version": "4.0.18", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/yum-utils-4.0.18-3.el8.noarch.rpm", + "checksum": "sha256:bad350fece3f69757d9345ad97acdf1ba72e8d09ed2162fbfe4cc128039594e1", + "check_gpg": true + }, + { + "name": "zlib", + "epoch": 0, + "version": "1.2.11", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/zlib-1.2.11-17.el8.x86_64.rpm", + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "name": "PackageKit", + "epoch": 0, + "version": "1.1.12", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/PackageKit-1.1.12-6.el8.x86_64.rpm", + "checksum": "sha256:b7dbc8efe4e3de5b47742959530182be455a17a7fdc3cd289d15316ae8f54223", + "check_gpg": true + }, + { + "name": "PackageKit-glib", + "epoch": 0, + "version": "1.1.12", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/PackageKit-glib-1.1.12-6.el8.x86_64.rpm", + "checksum": "sha256:babad6e897ab2e5b46386edaf34dbc77649bb3705df50190c022d4b6f54f15de", + "check_gpg": true + }, + { + "name": "abattis-cantarell-fonts", + "epoch": 0, + "version": "0.0.25", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/abattis-cantarell-fonts-0.0.25-6.el8.noarch.rpm", + "checksum": "sha256:11838afbfab4da7d5fa6e01046f76cce0b0a0c174a87c522eba440fce16e316f", + "check_gpg": true + }, + { + "name": "authselect-compat", + "epoch": 0, + "version": "1.2.2", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/authselect-compat-1.2.2-1.el8.x86_64.rpm", + "checksum": "sha256:8cb26212a1235f514b9529868ca86e119ad269755ba4c5e5cf1832523a4efc14", + "check_gpg": true + }, + { + "name": "cairo", + "epoch": 0, + "version": "1.15.12", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cairo-1.15.12-3.el8.x86_64.rpm", + "checksum": "sha256:2fcd7a063cab2e103fd4fdf8f4c63d09b9f3d60759c3b0982c75ed9a9e57bdf8", + "check_gpg": true + }, + { + "name": "cairo-gobject", + "epoch": 0, + "version": "1.15.12", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cairo-gobject-1.15.12-3.el8.x86_64.rpm", + "checksum": "sha256:ee4413fda60078f82c3b209557f0fc730871bb2a24cc380db6d01b511322ac85", + "check_gpg": true + }, + { + "name": "centos-logos", + "epoch": 0, + "version": "82.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/centos-logos-82.0-2.el8.x86_64.rpm", + "checksum": "sha256:16d05b70027f6e2879e84887c028043617b899fe3966c36e54c0a7078fbcb411", + "check_gpg": true + }, + { + "name": "cloud-init", + "epoch": 0, + "version": "20.3", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cloud-init-20.3-10.el8.noarch.rpm", + "checksum": "sha256:dc4f0cc77cf4c89469cf0f9c88b52f2c8c2c35f4e6d714bbdae2083440483311", + "check_gpg": true + }, + { + "name": "cloud-utils-growpart", + "epoch": 0, + "version": "0.31", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cloud-utils-growpart-0.31-1.el8.noarch.rpm", + "checksum": "sha256:7800dfd0d4769a898d11db330fdb5b19614533628a45fe91cce406d6cd1f0c71", + "check_gpg": true + }, + { + "name": "geolite2-city", + "epoch": 0, + "version": "20180605", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-city-20180605-1.el8.noarch.rpm", + "checksum": "sha256:cad86777bcb265db0da766952ff63e8d33f0fd4f3b90b22d0a1da587a785db44", + "check_gpg": true + }, + { + "name": "geolite2-country", + "epoch": 0, + "version": "20180605", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-country-20180605-1.el8.noarch.rpm", + "checksum": "sha256:67419432fe7d373f8e5ddaa7b0dd1c25389608bf2f4ee76dbabcc2d96eb8c9d0", + "check_gpg": true + }, + { + "name": "libX11", + "epoch": 0, + "version": "1.6.8", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libX11-1.6.8-4.el8.x86_64.rpm", + "checksum": "sha256:41a5551a1bdf84359c3f86f08bb1e5c13c0bc1e057ae5d9f0cdf9930afeb37a1", + "check_gpg": true + }, + { + "name": "libX11-common", + "epoch": 0, + "version": "1.6.8", + "release": "4.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libX11-common-1.6.8-4.el8.noarch.rpm", + "checksum": "sha256:5f445b2b2a4bdeabd555e25dfa10119d9f4e4e500d1c4492219dd8647f119ce2", + "check_gpg": true + }, + { + "name": "libXau", + "epoch": 0, + "version": "1.0.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXau-1.0.9-3.el8.x86_64.rpm", + "checksum": "sha256:49d972c660b9238dd1d58ab5952285b77e440820bf4563cce2b5ecd2f6ceba78", + "check_gpg": true + }, + { + "name": "libXext", + "epoch": 0, + "version": "1.3.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXext-1.3.4-1.el8.x86_64.rpm", + "checksum": "sha256:9869db60ee2b6d8f2115937857fb0586802720a75e043baf21514011a9fa79aa", + "check_gpg": true + }, + { + "name": "libXrender", + "epoch": 0, + "version": "0.9.10", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libXrender-0.9.10-7.el8.x86_64.rpm", + "checksum": "sha256:11ac209220f3a53a762adebb4eeb43190e02ef7cdad2c54bcb474b206f7eb6f2", + "check_gpg": true + }, + { + "name": "libestr", + "epoch": 0, + "version": "0.1.10", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libestr-0.1.10-1.el8.x86_64.rpm", + "checksum": "sha256:7bc2e2a25b04b52a4ec5de2858e75eb07f16495d4de5f7ce926777130302cfe3", + "check_gpg": true + }, + { + "name": "libfastjson", + "epoch": 0, + "version": "0.99.8", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libfastjson-0.99.8-2.el8.x86_64.rpm", + "checksum": "sha256:105beb1a237e66802e64e620f79b357dfc8f3bb8952ac2f293548f1d68ca40b1", + "check_gpg": true + }, + { + "name": "libmaxminddb", + "epoch": 0, + "version": "1.2.0", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libmaxminddb-1.2.0-10.el8.x86_64.rpm", + "checksum": "sha256:19ca7ab9cb2e39ec452ed1424f828ec464266094e31903301680d5a5d0e2ac2c", + "check_gpg": true + }, + { + "name": "libxcb", + "epoch": 0, + "version": "1.13.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxcb-1.13.1-1.el8.x86_64.rpm", + "checksum": "sha256:0221e6e3671c2bd130e9519a7b352404b7e510584b4707d38e1a733e19c7f74f", + "check_gpg": true + }, + { + "name": "libxkbcommon", + "epoch": 0, + "version": "0.9.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxkbcommon-0.9.1-1.el8.x86_64.rpm", + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "name": "oddjob", + "epoch": 0, + "version": "0.34.7", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/oddjob-0.34.7-1.el8.x86_64.rpm", + "checksum": "sha256:2fbf7e0ba8e8249b45392720a851905a42de547e1b760d461a799e2d1273cd97", + "check_gpg": true + }, + { + "name": "oddjob-mkhomedir", + "epoch": 0, + "version": "0.34.7", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/oddjob-mkhomedir-0.34.7-1.el8.x86_64.rpm", + "checksum": "sha256:ad2fb5876a4be399a0bcbb1b45f796229186b557d100c5f8f9017955dfd20065", + "check_gpg": true + }, + { + "name": "pinentry", + "epoch": 0, + "version": "1.1.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pinentry-1.1.0-2.el8.x86_64.rpm", + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "name": "pixman", + "epoch": 0, + "version": "0.38.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pixman-0.38.4-1.el8.x86_64.rpm", + "checksum": "sha256:ddbbf3a8191dbc1a9fcb67ccf9cea0d34dbe9bbb74780e1359933cd03ee24451", + "check_gpg": true + }, + { + "name": "python3-babel", + "epoch": 0, + "version": "2.5.1", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-babel-2.5.1-5.el8.noarch.rpm", + "checksum": "sha256:9dbf3ceb7de5a727f1a36edd5add73dcd96c83f24afc81d78e254b518551da96", + "check_gpg": true + }, + { + "name": "python3-cairo", + "epoch": 0, + "version": "1.16.3", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-cairo-1.16.3-6.el8.x86_64.rpm", + "checksum": "sha256:ce43ade7d1cb2519c12119621990ac8075c2f9e7577c739990ca949d6c42737a", + "check_gpg": true + }, + { + "name": "python3-gobject", + "epoch": 0, + "version": "3.28.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-gobject-3.28.3-2.el8.x86_64.rpm", + "checksum": "sha256:4e1b66f11f9e38bbd4a83aaf20f773925522a32b9fb1d0d75b3cca435556ff02", + "check_gpg": true + }, + { + "name": "python3-jinja2", + "epoch": 0, + "version": "2.10.1", + "release": "2.el8_0", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jinja2-2.10.1-2.el8_0.noarch.rpm", + "checksum": "sha256:5f4f256128dba88a13599d6458908c24c0e9c18d8979ae44bf5734da8e7cab70", + "check_gpg": true + }, + { + "name": "python3-jsonpatch", + "epoch": 0, + "version": "1.21", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonpatch-1.21-2.el8.noarch.rpm", + "checksum": "sha256:85eb614fc608f3b3f4bbd08d4a3b0ff6af188677ea4e009be021680c521cedae", + "check_gpg": true + }, + { + "name": "python3-jsonpointer", + "epoch": 0, + "version": "1.10", + "release": "11.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonpointer-1.10-11.el8.noarch.rpm", + "checksum": "sha256:60b0cbc5e435be346bb06f45f3336f8936d7362022d8bceda80ff16bc3fb7dd2", + "check_gpg": true + }, + { + "name": "python3-jsonschema", + "epoch": 0, + "version": "2.6.0", + "release": "4.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonschema-2.6.0-4.el8.noarch.rpm", + "checksum": "sha256:0feac495306bbe6e3149a352025bea8d23cda512859a230cbd3f510cf48caaf7", + "check_gpg": true + }, + { + "name": "python3-markupsafe", + "epoch": 0, + "version": "0.23", + "release": "19.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-markupsafe-0.23-19.el8.x86_64.rpm", + "checksum": "sha256:9c7a5a6f73c8e32559226c54d229cb25304a81a853af22d9f829b9bb09b21f53", + "check_gpg": true + }, + { + "name": "python3-pexpect", + "epoch": 0, + "version": "4.3.1", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pexpect-4.3.1-3.el8.noarch.rpm", + "checksum": "sha256:0bc637f0d028043e8388b083cdd8d0a0acea7fdbc79c0bc9401dfb02c20fb817", + "check_gpg": true + }, + { + "name": "python3-prettytable", + "epoch": 0, + "version": "0.7.2", + "release": "14.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-prettytable-0.7.2-14.el8.noarch.rpm", + "checksum": "sha256:1b53c868277dec628058b31b1a8a8a2ccd8efe832ce9694805b5f82564136eb3", + "check_gpg": true + }, + { + "name": "python3-ptyprocess", + "epoch": 0, + "version": "0.5.2", + "release": "4.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-ptyprocess-0.5.2-4.el8.noarch.rpm", + "checksum": "sha256:499e48b35f3b5f5da45031fa78fba559fee6a480ecb106e6c300eb8344510958", + "check_gpg": true + }, + { + "name": "python3-pydbus", + "epoch": 0, + "version": "0.6.0", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pydbus-0.6.0-5.el8.noarch.rpm", + "checksum": "sha256:bfa39369bd3c36833126b6f46b747de0736a66835d97196195c0810161c24549", + "check_gpg": true + }, + { + "name": "python3-pyserial", + "epoch": 0, + "version": "3.1.1", + "release": "8.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pyserial-3.1.1-8.el8.noarch.rpm", + "checksum": "sha256:82ce159a9e4e4b6b4fdce9ad954aa507f67108430bd261a4dcd826e44d0152a4", + "check_gpg": true + }, + { + "name": "python3-pytz", + "epoch": 0, + "version": "2017.2", + "release": "9.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pytz-2017.2-9.el8.noarch.rpm", + "checksum": "sha256:0edde19e0c027c8cff31b82e1f4b0b198c00bf924047fcf4dd610a7d4965ab52", + "check_gpg": true + }, + { + "name": "python3-systemd", + "epoch": 0, + "version": "234", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-systemd-234-8.el8.x86_64.rpm", + "checksum": "sha256:6ef6573d410f9e9dfa4bb4a4e1b2ff2f7555b50b1fc4b2ff8fb890e46b4b8d8a", + "check_gpg": true + }, + { + "name": "python3-unbound", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-unbound-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "name": "qemu-guest-agent", + "epoch": 15, + "version": "4.2.0", + "release": "35.module_el8.4.0+547+a85d02ba", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/qemu-guest-agent-4.2.0-35.module_el8.4.0+547+a85d02ba.x86_64.rpm", + "checksum": "sha256:04bcd912af3b987311c2dab6331b65c0d9223c312c4b0654649d821a713133be", + "check_gpg": true + }, + { + "name": "rsyslog", + "epoch": 0, + "version": "8.1911.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/rsyslog-8.1911.0-7.el8.x86_64.rpm", + "checksum": "sha256:ca82090f18d47e454cc512e832bf3ec771edf65299e3c1d56d5df9fab0428869", + "check_gpg": true + }, + { + "name": "setroubleshoot-plugins", + "epoch": 0, + "version": "3.3.13", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/setroubleshoot-plugins-3.3.13-1.el8.noarch.rpm", + "checksum": "sha256:30f37ca1fe1592e29d3e97c1dec0646015000d19bffc40f13dcfe73e15be66fc", + "check_gpg": true + }, + { + "name": "setroubleshoot-server", + "epoch": 0, + "version": "3.3.24", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/setroubleshoot-server-3.3.24-2.el8.x86_64.rpm", + "checksum": "sha256:913d735c486bf4f564d91bfb247ade86f7567d6d7a7631d16b95e89fd2d0c3ba", + "check_gpg": true + }, + { + "name": "sscg", + "epoch": 0, + "version": "2.3.3", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/sscg-2.3.3-14.el8.x86_64.rpm", + "checksum": "sha256:6fded933d86737a21c5cd77399e68e3912125c2da1afb95592e7089ba5594056", + "check_gpg": true + }, + { + "name": "tcpdump", + "epoch": 14, + "version": "4.9.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/tcpdump-4.9.3-1.el8.x86_64.rpm", + "checksum": "sha256:2f1548290dba27526a7b5541e4c7ff76d3124285f8e6335cd6d72919e2aafd41", + "check_gpg": true + }, + { + "name": "unbound-libs", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/unbound-libs-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "name": "xkeyboard-config", + "epoch": 0, + "version": "2.28", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xkeyboard-config-2.28-1.el8.noarch.rpm", + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ], + "checksums": { + "0": "sha256:06fa6273454f85c58ca743a0ef0202bed4cac267393049dc447839cdb39f4a54", + "1": "sha256:5b16e44261a7beffd5d7bf961fe269da407bd57abb1faac407c46a81969dfd63" + } + }, + "image-info": { + "boot-environment": { + "kernelopts": "root=UUID=0194fdc2-fa2f-4cc0-81d3-ff12045b73c8 console=tty0 console=ttyS0,115200n8 no_timer_check net.ifnames=0 crashkernel=auto debug" + }, + "bootloader": "grub", + "bootmenu": [ + { + "grub_arg": "--unrestricted", + "grub_class": "kernel", + "grub_users": "$grub_users", + "id": "centos-20210203204355-4.18.0-277.el8.x86_64", + "initrd": "/boot/initramfs-4.18.0-277.el8.x86_64.img $tuned_initrd", + "linux": "/boot/vmlinuz-4.18.0-277.el8.x86_64", + "options": "$kernelopts $tuned_params", + "title": "CentOS Stream (4.18.0-277.el8.x86_64) 8", + "version": "4.18.0-277.el8.x86_64" + } + ], + "default-target": "multi-user.target", + "fstab": [ + [ + "UUID=0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "/", + "xfs", + "defaults", + "0", + "0" + ], + [ + "UUID=7B77-95E7", + "/boot/efi", + "vfat", + "defaults,uid=0,gid=0,umask=077,shortname=winnt", + "0", + "2" + ] + ], + "groups": [ + "adm:x:4:", + "audio:x:63:", + "bin:x:1:", + "cdrom:x:11:", + "chrony:x:989:", + "cockpit-ws:x:991:", + "cockpit-wsinstance:x:990:", + "daemon:x:2:", + "dbus:x:81:", + "dialout:x:18:", + "disk:x:6:", + "floppy:x:19:", + "ftp:x:50:", + "games:x:20:", + "group1:x:1030:user2", + "group2:x:1050:", + "input:x:999:", + "kmem:x:9:", + "kvm:x:36:", + "lock:x:54:", + "lp:x:7:", + "mail:x:12:", + "man:x:15:", + "mem:x:8:", + "nobody:x:65534:", + "polkitd:x:996:", + "render:x:998:", + "root:x:0:", + "rpc:x:32:", + "rpcuser:x:29:", + "setroubleshoot:x:992:", + "ssh_keys:x:995:", + "sshd:x:74:", + "sssd:x:993:", + "sys:x:3:", + "systemd-coredump:x:997:", + "systemd-journal:x:190:", + "systemd-resolve:x:193:", + "tape:x:33:", + "tcpdump:x:72:", + "tss:x:59:", + "tty:x:5:", + "unbound:x:994:", + "user1:x:1000:", + "users:x:100:", + "utempter:x:35:", + "utmp:x:22:", + "video:x:39:", + "wheel:x:10:" + ], + "hostname": "my-host", + "image-format": "qcow2", + "os-release": { + "ANSI_COLOR": "0;31", + "BUG_REPORT_URL": "https://bugzilla.redhat.com/", + "CPE_NAME": "cpe:/o:centos:centos:8", + "HOME_URL": "https://centos.org/", + "ID": "centos", + "ID_LIKE": "rhel fedora", + "NAME": "CentOS Stream", + "PLATFORM_ID": "platform:el8", + "PRETTY_NAME": "CentOS Stream 8", + "REDHAT_SUPPORT_PRODUCT": "Red Hat Enterprise Linux 8", + "REDHAT_SUPPORT_PRODUCT_VERSION": "CentOS Stream", + "VERSION": "8", + "VERSION_ID": "8" + }, + "packages": [ + "NetworkManager-1.30.0-0.9.el8.x86_64", + "NetworkManager-libnm-1.30.0-0.9.el8.x86_64", + "NetworkManager-team-1.30.0-0.9.el8.x86_64", + "NetworkManager-tui-1.30.0-0.9.el8.x86_64", + "PackageKit-1.1.12-6.el8.x86_64", + "PackageKit-glib-1.1.12-6.el8.x86_64", + "abattis-cantarell-fonts-0.0.25-6.el8.noarch", + "acl-2.2.53-1.el8.x86_64", + "audit-3.0-0.17.20191104git1c2f876.el8.x86_64", + "audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64", + "authselect-1.2.2-1.el8.x86_64", + "authselect-compat-1.2.2-1.el8.x86_64", + "authselect-libs-1.2.2-1.el8.x86_64", + "basesystem-11-5.el8.noarch", + "bash-4.4.19-14.el8.x86_64", + "bind-export-libs-9.11.26-2.el8.x86_64", + "brotli-1.0.6-3.el8.x86_64", + "bzip2-1.0.6-26.el8.x86_64", + "bzip2-libs-1.0.6-26.el8.x86_64", + "c-ares-1.13.0-5.el8.x86_64", + "ca-certificates-2020.2.41-80.0.el8_2.noarch", + "cairo-1.15.12-3.el8.x86_64", + "cairo-gobject-1.15.12-3.el8.x86_64", + "centos-gpg-keys-8-2.el8.noarch", + "centos-logos-82.0-2.el8.x86_64", + "centos-stream-release-8.4-1.el8.noarch", + "centos-stream-repos-8-2.el8.noarch", + "checkpolicy-2.9-1.el8.x86_64", + "chkconfig-1.13-2.el8.x86_64", + "chrony-3.5-1.el8.x86_64", + "cloud-init-20.3-10.el8.noarch", + "cloud-utils-growpart-0.31-1.el8.noarch", + "cockpit-bridge-236-1.el8.x86_64", + "cockpit-system-236-1.el8.noarch", + "cockpit-ws-236-1.el8.x86_64", + "coreutils-8.30-8.el8.x86_64", + "coreutils-common-8.30-8.el8.x86_64", + "cpio-2.12-10.el8.x86_64", + "cracklib-2.9.6-15.el8.x86_64", + "cracklib-dicts-2.9.6-15.el8.x86_64", + "cronie-1.5.2-4.el8.x86_64", + "cronie-anacron-1.5.2-4.el8.x86_64", + "crontabs-1.11-17.20190603git.el8.noarch", + "crypto-policies-20200713-1.git51d1222.el8.noarch", + "crypto-policies-scripts-20200713-1.git51d1222.el8.noarch", + "cryptsetup-libs-2.3.3-2.el8.x86_64", + "curl-7.61.1-18.el8.x86_64", + "cyrus-sasl-lib-2.1.27-5.el8.x86_64", + "dbus-1.12.8-12.el8.x86_64", + "dbus-common-1.12.8-12.el8.noarch", + "dbus-daemon-1.12.8-12.el8.x86_64", + "dbus-glib-0.110-2.el8.x86_64", + "dbus-libs-1.12.8-12.el8.x86_64", + "dbus-tools-1.12.8-12.el8.x86_64", + "dbxtool-8-5.el8.x86_64", + "dejavu-fonts-common-2.35-7.el8.noarch", + "dejavu-sans-mono-fonts-2.35-7.el8.noarch", + "device-mapper-1.02.175-3.el8.x86_64", + "device-mapper-libs-1.02.175-3.el8.x86_64", + "dhcp-client-4.3.6-44.0.1.el8.x86_64", + "dhcp-common-4.3.6-44.0.1.el8.noarch", + "dhcp-libs-4.3.6-44.0.1.el8.x86_64", + "diffutils-3.6-6.el8.x86_64", + "dmidecode-3.2-8.el8.x86_64", + "dnf-4.4.2-5.el8.noarch", + "dnf-data-4.4.2-5.el8.noarch", + "dnf-plugin-subscription-manager-1.28.10-1.el8.x86_64", + "dnf-plugins-core-4.0.18-3.el8.noarch", + "dosfstools-4.1-6.el8.x86_64", + "dracut-049-133.git20210112.el8.x86_64", + "dracut-config-generic-049-133.git20210112.el8.x86_64", + "dracut-network-049-133.git20210112.el8.x86_64", + "dracut-squash-049-133.git20210112.el8.x86_64", + "e2fsprogs-1.45.6-1.el8.x86_64", + "e2fsprogs-libs-1.45.6-1.el8.x86_64", + "efi-filesystem-3-3.el8.noarch", + "efivar-37-4.el8.x86_64", + "efivar-libs-37-4.el8.x86_64", + "elfutils-debuginfod-client-0.182-3.el8.x86_64", + "elfutils-default-yama-scope-0.182-3.el8.noarch", + "elfutils-libelf-0.182-3.el8.x86_64", + "elfutils-libs-0.182-3.el8.x86_64", + "ethtool-5.8-5.el8.x86_64", + "expat-2.2.5-4.el8.x86_64", + "file-5.33-16.el8.x86_64", + "file-libs-5.33-16.el8.x86_64", + "filesystem-3.8-4.el8.x86_64", + "findutils-4.6.0-20.el8.x86_64", + "fontconfig-2.13.1-3.el8.x86_64", + "fontpackages-filesystem-1.44-22.el8.noarch", + "freetype-2.9.1-5.el8.x86_64", + "fuse-libs-2.9.7-12.el8.x86_64", + "gawk-4.2.1-2.el8.x86_64", + "gdbm-1.18-1.el8.x86_64", + "gdbm-libs-1.18-1.el8.x86_64", + "gdk-pixbuf2-2.36.12-5.el8.x86_64", + "geolite2-city-20180605-1.el8.noarch", + "geolite2-country-20180605-1.el8.noarch", + "gettext-0.19.8.1-17.el8.x86_64", + "gettext-libs-0.19.8.1-17.el8.x86_64", + "glib-networking-2.56.1-1.1.el8.x86_64", + "glib2-2.56.4-9.el8.x86_64", + "glibc-2.28-147.el8.x86_64", + "glibc-all-langpacks-2.28-147.el8.x86_64", + "glibc-common-2.28-147.el8.x86_64", + "gmp-6.1.2-10.el8.x86_64", + "gnupg2-2.2.20-2.el8.x86_64", + "gnupg2-smime-2.2.20-2.el8.x86_64", + "gnutls-3.6.14-7.el8_3.x86_64", + "gobject-introspection-1.56.1-1.el8.x86_64", + "gpg-pubkey-8483c65d-5ccc5b19", + "gpgme-1.13.1-7.el8.x86_64", + "grep-3.1-6.el8.x86_64", + "groff-base-1.22.3-18.el8.x86_64", + "grub2-common-2.02-93.el8.noarch", + "grub2-efi-x64-2.02-93.el8.x86_64", + "grub2-pc-2.02-93.el8.x86_64", + "grub2-pc-modules-2.02-93.el8.noarch", + "grub2-tools-2.02-93.el8.x86_64", + "grub2-tools-extra-2.02-93.el8.x86_64", + "grub2-tools-minimal-2.02-93.el8.x86_64", + "grubby-8.40-41.el8.x86_64", + "gsettings-desktop-schemas-3.32.0-5.el8.x86_64", + "gssproxy-0.8.0-19.el8.x86_64", + "gzip-1.9-12.el8.x86_64", + "hardlink-1.3-6.el8.x86_64", + "hdparm-9.54-3.el8.x86_64", + "hostname-3.20-6.el8.x86_64", + "hwdata-0.314-8.7.el8.noarch", + "ima-evm-utils-1.3.2-11.el8.x86_64", + "info-6.5-6.el8.x86_64", + "initscripts-10.00.12-1.el8.x86_64", + "ipcalc-0.2.4-4.el8.x86_64", + "iproute-5.9.0-2.el8.x86_64", + "iptables-libs-1.8.4-17.el8.x86_64", + "iputils-20180629-6.el8.x86_64", + "irqbalance-1.4.0-6.el8.x86_64", + "jansson-2.11-3.el8.x86_64", + "json-c-0.13.1-0.4.el8.x86_64", + "json-glib-1.4.4-1.el8.x86_64", + "kbd-2.0.4-10.el8.x86_64", + "kbd-legacy-2.0.4-10.el8.noarch", + "kbd-misc-2.0.4-10.el8.noarch", + "kernel-4.18.0-277.el8.x86_64", + "kernel-core-4.18.0-277.el8.x86_64", + "kernel-modules-4.18.0-277.el8.x86_64", + "kernel-tools-4.18.0-277.el8.x86_64", + "kernel-tools-libs-4.18.0-277.el8.x86_64", + "kexec-tools-2.0.20-45.el8.x86_64", + "keyutils-1.5.10-6.el8.x86_64", + "keyutils-libs-1.5.10-6.el8.x86_64", + "kmod-25-17.el8.x86_64", + "kmod-libs-25-17.el8.x86_64", + "kpartx-0.8.4-8.el8.x86_64", + "krb5-libs-1.18.2-8.el8.x86_64", + "less-530-1.el8.x86_64", + "libX11-1.6.8-4.el8.x86_64", + "libX11-common-1.6.8-4.el8.noarch", + "libXau-1.0.9-3.el8.x86_64", + "libXext-1.3.4-1.el8.x86_64", + "libXrender-0.9.10-7.el8.x86_64", + "libacl-2.2.53-1.el8.x86_64", + "libappstream-glib-0.7.14-3.el8.x86_64", + "libarchive-3.3.3-1.el8.x86_64", + "libassuan-2.5.1-3.el8.x86_64", + "libattr-2.4.48-3.el8.x86_64", + "libbasicobjects-0.1.1-39.el8.x86_64", + "libblkid-2.32.1-27.el8.x86_64", + "libcap-2.26-4.el8.x86_64", + "libcap-ng-0.7.9-5.el8.x86_64", + "libcollection-0.7.0-39.el8.x86_64", + "libcom_err-1.45.6-1.el8.x86_64", + "libcomps-0.1.11-5.el8.x86_64", + "libcroco-0.6.12-4.el8_2.1.x86_64", + "libcurl-7.61.1-18.el8.x86_64", + "libdaemon-0.14-15.el8.x86_64", + "libdb-5.3.28-40.el8.x86_64", + "libdb-utils-5.3.28-40.el8.x86_64", + "libdhash-0.5.0-39.el8.x86_64", + "libdnf-0.55.0-2.el8.x86_64", + "libedit-3.1-23.20170329cvs.el8.x86_64", + "libestr-0.1.10-1.el8.x86_64", + "libevent-2.1.8-5.el8.x86_64", + "libfastjson-0.99.8-2.el8.x86_64", + "libfdisk-2.32.1-27.el8.x86_64", + "libffi-3.1-22.el8.x86_64", + "libgcc-8.4.1-1.el8.x86_64", + "libgcrypt-1.8.5-4.el8.x86_64", + "libgomp-8.4.1-1.el8.x86_64", + "libgpg-error-1.31-1.el8.x86_64", + "libibverbs-32.0-4.el8.x86_64", + "libidn2-2.2.0-1.el8.x86_64", + "libini_config-1.3.1-39.el8.x86_64", + "libkcapi-1.2.0-2.el8.x86_64", + "libkcapi-hmaccalc-1.2.0-2.el8.x86_64", + "libksba-1.3.5-7.el8.x86_64", + "libldb-2.2.0-1.el8.x86_64", + "libmaxminddb-1.2.0-10.el8.x86_64", + "libmetalink-0.1.3-7.el8.x86_64", + "libmnl-1.0.4-6.el8.x86_64", + "libmodman-2.0.1-17.el8.x86_64", + "libmodulemd-2.9.4-2.el8.x86_64", + "libmount-2.32.1-27.el8.x86_64", + "libndp-1.7-3.el8.x86_64", + "libnfsidmap-2.3.3-41.el8.x86_64", + "libnghttp2-1.33.0-3.el8_2.1.x86_64", + "libnl3-3.5.0-1.el8.x86_64", + "libnl3-cli-3.5.0-1.el8.x86_64", + "libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64", + "libpath_utils-0.2.1-39.el8.x86_64", + "libpcap-1.9.1-5.el8.x86_64", + "libpipeline-1.5.0-2.el8.x86_64", + "libpng-1.6.34-5.el8.x86_64", + "libproxy-0.4.15-5.2.el8.x86_64", + "libpsl-0.20.2-6.el8.x86_64", + "libpwquality-1.4.4-1.el8.x86_64", + "libref_array-0.1.5-39.el8.x86_64", + "librepo-1.12.0-3.el8.x86_64", + "libreport-filesystem-2.9.5-15.el8.x86_64", + "libseccomp-2.4.3-1.el8.x86_64", + "libsecret-0.18.6-1.el8.x86_64", + "libselinux-2.9-5.el8.x86_64", + "libselinux-utils-2.9-5.el8.x86_64", + "libsemanage-2.9-6.el8.x86_64", + "libsepol-2.9-2.el8.x86_64", + "libsigsegv-2.11-5.el8.x86_64", + "libsmartcols-2.32.1-27.el8.x86_64", + "libsolv-0.7.16-2.el8.x86_64", + "libsoup-2.62.3-2.el8.x86_64", + "libss-1.45.6-1.el8.x86_64", + "libssh-0.9.4-2.el8.x86_64", + "libssh-config-0.9.4-2.el8.noarch", + "libsss_autofs-2.4.0-7.el8.x86_64", + "libsss_certmap-2.4.0-7.el8.x86_64", + "libsss_idmap-2.4.0-7.el8.x86_64", + "libsss_nss_idmap-2.4.0-7.el8.x86_64", + "libsss_sudo-2.4.0-7.el8.x86_64", + "libstdc++-8.4.1-1.el8.x86_64", + "libstemmer-0-10.585svn.el8.x86_64", + "libsysfs-2.1.0-24.el8.x86_64", + "libtalloc-2.3.1-2.el8.x86_64", + "libtasn1-4.13-3.el8.x86_64", + "libtdb-1.4.3-1.el8.x86_64", + "libteam-1.31-2.el8.x86_64", + "libtevent-0.10.2-2.el8.x86_64", + "libtirpc-1.1.4-4.el8.x86_64", + "libunistring-0.9.9-3.el8.x86_64", + "libusbx-1.0.23-4.el8.x86_64", + "libuser-0.62-23.el8.x86_64", + "libutempter-1.1.6-14.el8.x86_64", + "libuuid-2.32.1-27.el8.x86_64", + "libverto-0.3.0-5.el8.x86_64", + "libverto-libevent-0.3.0-5.el8.x86_64", + "libxcb-1.13.1-1.el8.x86_64", + "libxcrypt-4.1.1-4.el8.x86_64", + "libxkbcommon-0.9.1-1.el8.x86_64", + "libxml2-2.9.7-9.el8.x86_64", + "libyaml-0.1.7-5.el8.x86_64", + "libzstd-1.4.4-1.el8.x86_64", + "linux-firmware-20201218-102.git05789708.el8.noarch", + "lmdb-libs-0.9.24-1.el8.x86_64", + "logrotate-3.14.0-4.el8.x86_64", + "lshw-B.02.19.2-5.el8.x86_64", + "lsscsi-0.32-2.el8.x86_64", + "lua-libs-5.3.4-11.el8.x86_64", + "lz4-libs-1.8.3-2.el8.x86_64", + "lzo-2.08-14.el8.x86_64", + "man-db-2.7.6.1-17.el8.x86_64", + "memstrack-0.1.11-1.el8.x86_64", + "microcode_ctl-20201112-2.el8.x86_64", + "mokutil-0.3.0-11.el8.x86_64", + "mozjs60-60.9.0-4.el8.x86_64", + "mpfr-3.1.6-1.el8.x86_64", + "ncurses-6.1-7.20180224.el8.x86_64", + "ncurses-base-6.1-7.20180224.el8.noarch", + "ncurses-libs-6.1-7.20180224.el8.x86_64", + "nettle-3.4.1-2.el8.x86_64", + "newt-0.52.20-11.el8.x86_64", + "nfs-utils-2.3.3-41.el8.x86_64", + "npth-1.5-4.el8.x86_64", + "numactl-libs-2.0.12-11.el8.x86_64", + "oddjob-0.34.7-1.el8.x86_64", + "oddjob-mkhomedir-0.34.7-1.el8.x86_64", + "openldap-2.4.46-16.el8.x86_64", + "openssh-8.0p1-5.el8.x86_64", + "openssh-clients-8.0p1-5.el8.x86_64", + "openssh-server-8.0p1-5.el8.x86_64", + "openssl-1.1.1g-12.el8_3.x86_64", + "openssl-libs-1.1.1g-12.el8_3.x86_64", + "openssl-pkcs11-0.4.10-2.el8.x86_64", + "os-prober-1.74-6.el8.x86_64", + "p11-kit-0.23.22-1.el8.x86_64", + "p11-kit-trust-0.23.22-1.el8.x86_64", + "pam-1.3.1-14.el8.x86_64", + "parted-3.2-38.el8.x86_64", + "passwd-0.80-3.el8.x86_64", + "pciutils-3.7.0-1.el8.x86_64", + "pciutils-libs-3.7.0-1.el8.x86_64", + "pcre-8.42-4.el8.x86_64", + "pcre2-10.32-2.el8.x86_64", + "pigz-2.4-4.el8.x86_64", + "pinentry-1.1.0-2.el8.x86_64", + "pixman-0.38.4-1.el8.x86_64", + "platform-python-3.6.8-36.el8.x86_64", + "platform-python-pip-9.0.3-19.el8.noarch", + "platform-python-setuptools-39.2.0-6.el8.noarch", + "policycoreutils-2.9-12.el8.x86_64", + "policycoreutils-python-utils-2.9-12.el8.noarch", + "polkit-0.115-11.el8.x86_64", + "polkit-libs-0.115-11.el8.x86_64", + "polkit-pkla-compat-0.1-12.el8.x86_64", + "popt-1.18-1.el8.x86_64", + "prefixdevname-0.1.0-6.el8.x86_64", + "procps-ng-3.3.15-6.el8.x86_64", + "psmisc-23.1-5.el8.x86_64", + "publicsuffix-list-dafsa-20180723-1.el8.noarch", + "python3-audit-3.0-0.17.20191104git1c2f876.el8.x86_64", + "python3-babel-2.5.1-5.el8.noarch", + "python3-cairo-1.16.3-6.el8.x86_64", + "python3-cffi-1.11.5-5.el8.x86_64", + "python3-chardet-3.0.4-7.el8.noarch", + "python3-configobj-5.0.6-11.el8.noarch", + "python3-cryptography-3.2.1-3.el8.x86_64", + "python3-dateutil-2.6.1-6.el8.noarch", + "python3-dbus-1.2.4-15.el8.x86_64", + "python3-decorator-4.2.1-2.el8.noarch", + "python3-dmidecode-3.12.2-15.el8.x86_64", + "python3-dnf-4.4.2-5.el8.noarch", + "python3-dnf-plugins-core-4.0.18-3.el8.noarch", + "python3-ethtool-0.14-3.el8.x86_64", + "python3-gobject-3.28.3-2.el8.x86_64", + "python3-gobject-base-3.28.3-2.el8.x86_64", + "python3-gpg-1.13.1-7.el8.x86_64", + "python3-hawkey-0.55.0-2.el8.x86_64", + "python3-idna-2.5-5.el8.noarch", + "python3-iniparse-0.4-31.el8.noarch", + "python3-inotify-0.9.6-13.el8.noarch", + "python3-jinja2-2.10.1-2.el8_0.noarch", + "python3-jsonpatch-1.21-2.el8.noarch", + "python3-jsonpointer-1.10-11.el8.noarch", + "python3-jsonschema-2.6.0-4.el8.noarch", + "python3-jwt-1.6.1-2.el8.noarch", + "python3-libcomps-0.1.11-5.el8.x86_64", + "python3-libdnf-0.55.0-2.el8.x86_64", + "python3-librepo-1.12.0-3.el8.x86_64", + "python3-libs-3.6.8-36.el8.x86_64", + "python3-libselinux-2.9-5.el8.x86_64", + "python3-libsemanage-2.9-6.el8.x86_64", + "python3-libxml2-2.9.7-9.el8.x86_64", + "python3-linux-procfs-0.6.3-1.el8.noarch", + "python3-markupsafe-0.23-19.el8.x86_64", + "python3-oauthlib-2.1.0-1.el8.noarch", + "python3-perf-4.18.0-277.el8.x86_64", + "python3-pexpect-4.3.1-3.el8.noarch", + "python3-pip-wheel-9.0.3-19.el8.noarch", + "python3-ply-3.9-9.el8.noarch", + "python3-policycoreutils-2.9-12.el8.noarch", + "python3-prettytable-0.7.2-14.el8.noarch", + "python3-ptyprocess-0.5.2-4.el8.noarch", + "python3-pycparser-2.14-14.el8.noarch", + "python3-pydbus-0.6.0-5.el8.noarch", + "python3-pyserial-3.1.1-8.el8.noarch", + "python3-pysocks-1.6.8-3.el8.noarch", + "python3-pytz-2017.2-9.el8.noarch", + "python3-pyudev-0.21.0-7.el8.noarch", + "python3-pyyaml-3.12-12.el8.x86_64", + "python3-requests-2.20.0-2.1.el8_1.noarch", + "python3-rpm-4.14.3-10.el8.x86_64", + "python3-schedutils-0.6-6.el8.x86_64", + "python3-setools-4.3.0-2.el8.x86_64", + "python3-setuptools-wheel-39.2.0-6.el8.noarch", + "python3-six-1.11.0-8.el8.noarch", + "python3-slip-0.6.4-11.el8.noarch", + "python3-slip-dbus-0.6.4-11.el8.noarch", + "python3-subscription-manager-rhsm-1.28.10-1.el8.x86_64", + "python3-syspurpose-1.28.10-1.el8.x86_64", + "python3-systemd-234-8.el8.x86_64", + "python3-unbound-1.7.3-15.el8.x86_64", + "python3-urllib3-1.24.2-5.el8.noarch", + "qemu-guest-agent-4.2.0-35.module_el8.4.0+547+a85d02ba.x86_64", + "quota-4.04-12.el8.x86_64", + "quota-nls-4.04-12.el8.noarch", + "rdma-core-32.0-4.el8.x86_64", + "readline-7.0-10.el8.x86_64", + "rhsm-icons-1.28.10-1.el8.noarch", + "rootfiles-8.1-22.el8.noarch", + "rpcbind-1.2.5-8.el8.x86_64", + "rpm-4.14.3-10.el8.x86_64", + "rpm-build-libs-4.14.3-10.el8.x86_64", + "rpm-libs-4.14.3-10.el8.x86_64", + "rpm-plugin-selinux-4.14.3-10.el8.x86_64", + "rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64", + "rsync-3.1.3-12.el8.x86_64", + "rsyslog-8.1911.0-7.el8.x86_64", + "sed-4.5-2.el8.x86_64", + "selinux-policy-3.14.3-62.el8.noarch", + "selinux-policy-targeted-3.14.3-62.el8.noarch", + "setroubleshoot-plugins-3.3.13-1.el8.noarch", + "setroubleshoot-server-3.3.24-2.el8.x86_64", + "setup-2.12.2-6.el8.noarch", + "sg3_utils-1.44-5.el8.x86_64", + "sg3_utils-libs-1.44-5.el8.x86_64", + "shadow-utils-4.6-12.el8.x86_64", + "shared-mime-info-1.9-3.el8.x86_64", + "shim-x64-15-15.el8_2.x86_64", + "slang-2.3.2-3.el8.x86_64", + "snappy-1.1.8-3.el8.x86_64", + "sos-4.0-7.el8.noarch", + "sqlite-libs-3.26.0-13.el8.x86_64", + "squashfs-tools-4.3-19.el8.x86_64", + "sscg-2.3.3-14.el8.x86_64", + "sssd-client-2.4.0-7.el8.x86_64", + "sssd-common-2.4.0-7.el8.x86_64", + "sssd-kcm-2.4.0-7.el8.x86_64", + "sssd-nfs-idmap-2.4.0-7.el8.x86_64", + "subscription-manager-1.28.10-1.el8.x86_64", + "subscription-manager-cockpit-1.28.10-1.el8.noarch", + "subscription-manager-rhsm-certificates-1.28.10-1.el8.x86_64", + "sudo-1.8.29-7.el8.x86_64", + "systemd-239-44.el8.x86_64", + "systemd-libs-239-44.el8.x86_64", + "systemd-pam-239-44.el8.x86_64", + "systemd-udev-239-44.el8.x86_64", + "tar-1.30-5.el8.x86_64", + "tcpdump-4.9.3-1.el8.x86_64", + "teamd-1.31-2.el8.x86_64", + "timedatex-0.5-3.el8.x86_64", + "tpm2-tss-2.3.2-3.el8.x86_64", + "trousers-0.3.15-1.el8.x86_64", + "trousers-lib-0.3.15-1.el8.x86_64", + "tuned-2.15.0-1.el8.noarch", + "tzdata-2021a-1.el8.noarch", + "unbound-libs-1.7.3-15.el8.x86_64", + "usermode-1.113-1.el8.x86_64", + "util-linux-2.32.1-27.el8.x86_64", + "vim-minimal-8.0.1763-15.el8.x86_64", + "virt-what-1.18-6.el8.x86_64", + "which-2.21-12.el8.x86_64", + "xfsprogs-5.0.0-8.el8.x86_64", + "xkeyboard-config-2.28-1.el8.noarch", + "xz-5.2.4-3.el8.x86_64", + "xz-libs-5.2.4-3.el8.x86_64", + "yum-4.4.2-5.el8.noarch", + "yum-utils-4.0.18-3.el8.noarch", + "zlib-1.2.11-17.el8.x86_64" + ], + "partition-table": "gpt", + "partition-table-id": "D209C89E-EA5E-4FBD-B161-B461CCE297E0", + "partitions": [ + { + "bootable": false, + "fstype": null, + "label": null, + "partuuid": "FAC7F1FB-3E8D-4137-A512-961DE09A5549", + "size": 1048576, + "start": 1048576, + "type": "21686148-6449-6E6F-744E-656564454649", + "uuid": null + }, + { + "bootable": false, + "fstype": "vfat", + "label": null, + "partuuid": "68B2905B-DF3E-4FB3-80FA-49D1E773AA33", + "size": 104857600, + "start": 2097152, + "type": "C12A7328-F81F-11D2-BA4B-00A0C93EC93B", + "uuid": "7B77-95E7" + }, + { + "bootable": false, + "fstype": "xfs", + "label": "root", + "partuuid": "6264D520-3FB9-423F-8AB8-7A0A8E3D3562", + "size": 10630446592, + "start": 106954752, + "type": "0FC63DAF-8483-4772-8E79-3D69D8477DE4", + "uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8" + } + ], + "passwd": [ + "adm:x:3:4:adm:/var/adm:/sbin/nologin", + "bin:x:1:1:bin:/bin:/sbin/nologin", + "chrony:x:992:989::/var/lib/chrony:/sbin/nologin", + "cockpit-ws:x:994:991:User for cockpit web service:/nonexisting:/sbin/nologin", + "cockpit-wsinstance:x:993:990:User for cockpit-ws instances:/nonexisting:/sbin/nologin", + "daemon:x:2:2:daemon:/sbin:/sbin/nologin", + "dbus:x:81:81:System message bus:/:/sbin/nologin", + "ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin", + "games:x:12:100:games:/usr/games:/sbin/nologin", + "halt:x:7:0:halt:/sbin:/sbin/halt", + "lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin", + "mail:x:8:12:mail:/var/spool/mail:/sbin/nologin", + "nobody:x:65534:65534:Kernel Overflow User:/:/sbin/nologin", + "operator:x:11:0:operator:/root:/sbin/nologin", + "polkitd:x:998:996:User for polkitd:/:/sbin/nologin", + "root:x:0:0:root:/root:/bin/bash", + "rpc:x:32:32:Rpcbind Daemon:/var/lib/rpcbind:/sbin/nologin", + "rpcuser:x:29:29:RPC Service User:/var/lib/nfs:/sbin/nologin", + "setroubleshoot:x:995:992::/var/lib/setroubleshoot:/sbin/nologin", + "shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown", + "sshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:/sbin/nologin", + "sssd:x:996:993:User for sssd:/:/sbin/nologin", + "sync:x:5:0:sync:/sbin:/bin/sync", + "systemd-coredump:x:999:997:systemd Core Dumper:/:/sbin/nologin", + "systemd-resolve:x:193:193:systemd Resolver:/:/sbin/nologin", + "tcpdump:x:72:72::/:/sbin/nologin", + "tss:x:59:59:Account used for TPM access:/dev/null:/sbin/nologin", + "unbound:x:997:994:Unbound DNS resolver:/etc/unbound:/sbin/nologin", + "user1:x:1000:1000::/home/user1:/bin/bash", + "user2:x:1020:1050:description 2:/home/home2:/bin/sh" + ], + "rhsm": { + "dnf-plugins": { + "product-id": { + "enabled": false + }, + "subscription-manager": { + "enabled": false + } + } + }, + "rpm-verify": { + "changed": { + "/boot/efi/EFI/centos/grubx64.efi": ".......T.", + "/etc/chrony.conf": "S.5....T.", + "/etc/dnf/plugins/product-id.conf": "..5....T.", + "/etc/dnf/plugins/subscription-manager.conf": ".......T.", + "/etc/machine-id": ".M.......", + "/proc": ".M.......", + "/run/cockpit": ".M.......", + "/sys": ".M.......", + "/var/log/lastlog": ".M....G..", + "/var/spool/anacron/cron.daily": ".M.......", + "/var/spool/anacron/cron.monthly": ".M.......", + "/var/spool/anacron/cron.weekly": ".M......." + }, + "missing": [] + }, + "services-disabled": [ + "chrony-dnssrv@.timer", + "chrony-wait.service", + "cockpit.socket", + "console-getty.service", + "cpupower.service", + "ctrl-alt-del.target", + "dbxtool.service", + "debug-shell.service", + "exit.target", + "fstrim.timer", + "gssproxy.service", + "halt.target", + "kexec.target", + "nfs-blkmap.service", + "nfs-convert.service", + "nfs-server.service", + "oddjobd.service", + "poweroff.target", + "qemu-guest-agent.service", + "rdisc.service", + "reboot.target", + "remote-cryptsetup.target", + "rhsm-facts.service", + "rhsm.service", + "runlevel0.target", + "runlevel6.target", + "serial-getty@.service", + "sshd-keygen@.service", + "sssd-autofs.socket", + "sssd-nss.socket", + "sssd-pac.socket", + "sssd-pam-priv.socket", + "sssd-pam.socket", + "sssd-ssh.socket", + "sssd-sudo.socket", + "systemd-resolved.service", + "tcsd.service", + "tmp.mount" + ], + "services-enabled": [ + "NetworkManager-dispatcher.service", + "NetworkManager-wait-online.service", + "NetworkManager.service", + "auditd.service", + "autovt@.service", + "chronyd.service", + "cloud-config.service", + "cloud-final.service", + "cloud-init-local.service", + "cloud-init.service", + "crond.service", + "dbus-org.freedesktop.nm-dispatcher.service", + "dbus-org.freedesktop.timedate1.service", + "dnf-makecache.timer", + "getty@.service", + "import-state.service", + "irqbalance.service", + "kdump.service", + "loadmodules.service", + "microcode.service", + "nfs-client.target", + "nis-domainname.service", + "remote-fs.target", + "rhsmcertd.service", + "rpcbind.service", + "rpcbind.socket", + "rsyslog.service", + "selinux-autorelabel-mark.service", + "sshd.service", + "sshd.socket", + "sssd-kcm.socket", + "sssd.service", + "syslog.service", + "timedatex.service", + "tuned.service", + "unbound-anchor.timer" + ], + "sysconfig": { + "kernel": { + "DEFAULTKERNEL": "kernel", + "UPDATEDEFAULT": "yes" + }, + "network": { + "NETWORKING": "yes", + "NOZEROCONF": "yes" + } + }, + "timezone": "London" + } +} \ No newline at end of file diff --git a/test/data/manifests/centos_8-x86_64-tar-boot.json b/test/data/manifests/centos_8-x86_64-tar-boot.json new file mode 100644 index 000000000..189180e2d --- /dev/null +++ b/test/data/manifests/centos_8-x86_64-tar-boot.json @@ -0,0 +1,6740 @@ +{ + "boot": { + "type": "nspawn-extract" + }, + "compose-request": { + "distro": "centos-8", + "arch": "x86_64", + "image-type": "tar", + "repositories": [ + { + "name": "baseos", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + }, + { + "name": "appstream", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + } + ], + "filename": "root.tar.xz", + "blueprint": { + "name": "tar-boot-test", + "description": "Image for boot test", + "packages": [ + { + "name": "openssh-server", + "version": "*" + } + ], + "modules": [], + "groups": [], + "customizations": { + "user": [ + { + "name": "redhat", + "key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC61wMCjOSHwbVb4VfVyl5sn497qW4PsdQ7Ty7aD6wDNZ/QjjULkDV/yW5WjDlDQ7UqFH0Sr7vywjqDizUAqK7zM5FsUKsUXWHWwg/ehKg8j9xKcMv11AkFoUoujtfAujnKODkk58XSA9whPr7qcw3vPrmog680pnMSzf9LC7J6kXfs6lkoKfBh9VnlxusCrw2yg0qI1fHAZBLPx7mW6+me71QZsS6sVz8v8KXyrXsKTdnF50FjzHcK9HXDBtSJS5wA3fkcRYymJe0o6WMWNdgSRVpoSiWaHHmFgdMUJaYoCfhXzyl7LtNb3Q+Sveg+tJK7JaRXBLMUllOlJ6ll5Hod root@localhost" + } + ] + } + } + }, + "manifest": { + "sources": { + "org.osbuild.files": { + "urls": { + "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libs-0.182-3.el8.x86_64.rpm" + }, + "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libyaml-0.1.7-5.el8.x86_64.rpm" + }, + "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnghttp2-1.33.0-3.el8_2.1.x86_64.rpm" + }, + "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsigsegv-2.11-5.el8.x86_64.rpm" + }, + "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-5.2.4-3.el8.x86_64.rpm" + }, + "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-5.33-16.el8.x86_64.rpm" + }, + "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-2.0.4-10.el8.x86_64.rpm" + }, + "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.182-3.el8.noarch.rpm" + }, + "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/expat-2.2.5-4.el8.x86_64.rpm" + }, + "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-scripts-20200713-1.git51d1222.el8.noarch.rpm" + }, + "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-25-17.el8.x86_64.rpm" + }, + "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cpio-2.12-10.el8.x86_64.rpm" + }, + "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-6.1-7.20180224.el8.x86_64.rpm" + }, + "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libblkid-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-libs-25-17.el8.x86_64.rpm" + }, + "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/npth-1.5-4.el8.x86_64.rpm" + }, + "sha256:173a812d859c70f8db7b014d507c5cacb76c62ab5480c44be217f880465f42c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-server-8.0p1-5.el8.x86_64.rpm" + }, + "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-c-0.13.1-0.4.el8.x86_64.rpm" + }, + "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-2.02-93.el8.x86_64.rpm" + }, + "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grubby-8.40-41.el8.x86_64.rpm" + }, + "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-5.3.28-40.el8.x86_64.rpm" + }, + "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.6-26.el8.x86_64.rpm" + }, + "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/freetype-2.9.1-5.el8.x86_64.rpm" + }, + "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kpartx-0.8.4-8.el8.x86_64.rpm" + }, + "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-base-6.1-7.20180224.el8.noarch.rpm" + }, + "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libunistring-0.9.9-3.el8.x86_64.rpm" + }, + "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-libs-1.1.1g-12.el8_3.x86_64.rpm" + }, + "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-3.5.0-1.el8.x86_64.rpm" + }, + "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/acl-2.2.53-1.el8.x86_64.rpm" + }, + "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:2c63399bee449fb6e921671a9bbf3356fda73f890b578820f7d926202e98a479": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libaio-0.3.112-1.el8.x86_64.rpm" + }, + "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/filesystem-3.8-4.el8.x86_64.rpm" + }, + "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstdc++-8.4.1-1.el8.x86_64.rpm" + }, + "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-pkcs11-0.4.10-2.el8.x86_64.rpm" + }, + "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-libs-239-44.el8.x86_64.rpm" + }, + "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sed-4.5-2.el8.x86_64.rpm" + }, + "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gpg-1.13.1-7.el8.x86_64.rpm" + }, + "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pigz-2.4-4.el8.x86_64.rpm" + }, + "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdnf-0.55.0-2.el8.x86_64.rpm" + }, + "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libffi-3.1-22.el8.x86_64.rpm" + }, + "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-all-langpacks-2.28-147.el8.x86_64.rpm" + }, + "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-libs-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-libs-1.18-1.el8.x86_64.rpm" + }, + "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libfdisk-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gmp-6.1.2-10.el8.x86_64.rpm" + }, + "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ima-evm-utils-1.3.2-11.el8.x86_64.rpm" + }, + "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-4.4.2-5.el8.noarch.rpm" + }, + "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chkconfig-1.13-2.el8.x86_64.rpm" + }, + "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmartcols-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shared-mime-info-1.9-3.el8.x86_64.rpm" + }, + "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grep-3.1-6.el8.x86_64.rpm" + }, + "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/popt-1.18-1.el8.x86_64.rpm" + }, + "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dosfstools-4.1-6.el8.x86_64.rpm" + }, + "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-release-8.4-1.el8.noarch.rpm" + }, + "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-2.2.20-2.el8.x86_64.rpm" + }, + "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-1.2.0-2.el8.x86_64.rpm" + }, + "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-common-2.28-147.el8.x86_64.rpm" + }, + "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-libs-6.1-7.20180224.el8.x86_64.rpm" + }, + "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tzdata-2021a-1.el8.noarch.rpm" + }, + "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcrypt-1.8.5-4.el8.x86_64.rpm" + }, + "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nettle-3.4.1-2.el8.x86_64.rpm" + }, + "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-libs-5.33-16.el8.x86_64.rpm" + }, + "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/unbound-libs-1.7.3-15.el8.x86_64.rpm" + }, + "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/basesystem-11-5.el8.noarch.rpm" + }, + "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libacl-2.2.53-1.el8.x86_64.rpm" + }, + "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-3.14.3-62.el8.noarch.rpm" + }, + "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-libs-3.7.0-1.el8.x86_64.rpm" + }, + "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-3.7.0-1.el8.x86_64.rpm" + }, + "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtirpc-1.1.4-4.el8.x86_64.rpm" + }, + "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-config-0.9.4-2.el8.noarch.rpm" + }, + "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-rpm-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-utils-2.9-5.el8.x86_64.rpm" + }, + "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgomp-8.4.1-1.el8.x86_64.rpm" + }, + "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/curl-7.61.1-18.el8.x86_64.rpm" + }, + "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-pip-9.0.3-19.el8.noarch.rpm" + }, + "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-0.3.15-1.el8.x86_64.rpm" + }, + "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libarchive-3.3.3-1.el8.x86_64.rpm" + }, + "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64.rpm" + }, + "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libdnf-0.55.0-2.el8.x86_64.rpm" + }, + "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.3.3-2.el8.x86_64.rpm" + }, + "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libibverbs-32.0-4.el8.x86_64.rpm" + }, + "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-20200713-1.git51d1222.el8.noarch.rpm" + }, + "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxml2-2.9.7-9.el8.x86_64.rpm" + }, + "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-iniparse-0.4-31.el8.noarch.rpm" + }, + "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hwdata-0.314-8.7.el8.noarch.rpm" + }, + "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxcrypt-4.1.1-4.el8.x86_64.rpm" + }, + "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/info-6.5-6.el8.x86_64.rpm" + }, + "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-libs-5.2.4-3.el8.x86_64.rpm" + }, + "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gpgme-1.13.1-7.el8.x86_64.rpm" + }, + "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpsl-0.20.2-6.el8.x86_64.rpm" + }, + "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsepol-2.9-2.el8.x86_64.rpm" + }, + "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pip-wheel-9.0.3-19.el8.noarch.rpm" + }, + "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.175-3.el8.x86_64.rpm" + }, + "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20180723-1.el8.noarch.rpm" + }, + "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcom_err-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-smime-2.2.20-2.el8.x86_64.rpm" + }, + "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-0.23.22-1.el8.x86_64.rpm" + }, + "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsemanage-2.9-6.el8.x86_64.rpm" + }, + "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sqlite-libs-3.26.0-13.el8.x86_64.rpm" + }, + "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-libs-2.9.7-12.el8.x86_64.rpm" + }, + "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gzip-1.9-12.el8.x86_64.rpm" + }, + "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tpm2-tss-2.3.2-3.el8.x86_64.rpm" + }, + "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libelf-0.182-3.el8.x86_64.rpm" + }, + "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libevent-2.1.8-5.el8.x86_64.rpm" + }, + "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-1.18-1.el8.x86_64.rpm" + }, + "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-targeted-3.14.3-62.el8.noarch.rpm" + }, + "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-239-44.el8.x86_64.rpm" + }, + "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodulemd-2.9.4-2.el8.x86_64.rpm" + }, + "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openldap-2.4.46-16.el8.x86_64.rpm" + }, + "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-data-4.4.2-5.el8.noarch.rpm" + }, + "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libzstd-1.4.4-1.el8.x86_64.rpm" + }, + "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-libs-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libidn2-2.2.0-1.el8.x86_64.rpm" + }, + "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libusbx-1.0.23-4.el8.x86_64.rpm" + }, + "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libs-3.6.8-36.el8.x86_64.rpm" + }, + "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpcap-1.9.1-5.el8.x86_64.rpm" + }, + "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-hmaccalc-1.2.0-2.el8.x86_64.rpm" + }, + "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/findutils-4.6.0-20.el8.x86_64.rpm" + }, + "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcurl-7.61.1-18.el8.x86_64.rpm" + }, + "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-0.19.8.1-17.el8.x86_64.rpm" + }, + "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/util-linux-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libcomps-0.1.11-5.el8.x86_64.rpm" + }, + "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-gpg-keys-8-2.el8.noarch.rpm" + }, + "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgpg-error-1.31-1.el8.x86_64.rpm" + }, + "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcroco-0.6.12-4.el8_2.1.x86_64.rpm" + }, + "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-2.9-5.el8.x86_64.rpm" + }, + "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-udev-239-44.el8.x86_64.rpm" + }, + "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libss-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-2.28-147.el8.x86_64.rpm" + }, + "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/os-prober-1.74-6.el8.x86_64.rpm" + }, + "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-unbound-1.7.3-15.el8.x86_64.rpm" + }, + "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-setuptools-39.2.0-6.el8.noarch.rpm" + }, + "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-1.02.175-3.el8.x86_64.rpm" + }, + "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre-8.42-4.el8.x86_64.rpm" + }, + "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libseccomp-2.4.3-1.el8.x86_64.rpm" + }, + "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuuid-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lua-libs-5.3.4-11.el8.x86_64.rpm" + }, + "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-common-1.12.8-12.el8.noarch.rpm" + }, + "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pinentry-1.1.0-2.el8.x86_64.rpm" + }, + "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/setup-2.12.2-6.el8.noarch.rpm" + }, + "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-common-2.02-93.el8.noarch.rpm" + }, + "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libattr-2.4.48-3.el8.x86_64.rpm" + }, + "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-six-1.11.0-8.el8.noarch.rpm" + }, + "sha256:a2418e8e12144d4e84965298e7bbefedc876c0d0d93771afb9b5c6c2eb139dc0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pip-9.0.3-19.el8.noarch.rpm" + }, + "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xkeyboard-config-2.28-1.el8.noarch.rpm" + }, + "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcomps-0.1.11-5.el8.x86_64.rpm" + }, + "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-legacy-2.0.4-10.el8.noarch.rpm" + }, + "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-minimal-2.02-93.el8.x86_64.rpm" + }, + "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/zlib-1.2.11-17.el8.x86_64.rpm" + }, + "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xfsprogs-5.0.0-8.el8.x86_64.rpm" + }, + "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-repos-8-2.el8.noarch.rpm" + }, + "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-common-8.30-8.el8.x86_64.rpm" + }, + "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-3.6.8-36.el8.x86_64.rpm" + }, + "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnutls-3.6.14-7.el8_3.x86_64.rpm" + }, + "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcc-8.4.1-1.el8.x86_64.rpm" + }, + "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-libs-0.19.8.1-17.el8.x86_64.rpm" + }, + "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-libs-1.5.10-6.el8.x86_64.rpm" + }, + "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shadow-utils-4.6-12.el8.x86_64.rpm" + }, + "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-39.2.0-6.el8.noarch.rpm" + }, + "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-tools-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pam-1.3.1-14.el8.x86_64.rpm" + }, + "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libassuan-2.5.1-3.el8.x86_64.rpm" + }, + "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsolv-0.7.16-2.el8.x86_64.rpm" + }, + "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/librepo-1.12.0-3.el8.x86_64.rpm" + }, + "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-hawkey-0.55.0-2.el8.x86_64.rpm" + }, + "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib2-2.56.4-9.el8.x86_64.rpm" + }, + "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-1.1.1g-12.el8_3.x86_64.rpm" + }, + "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libreport-filesystem-2.9.5-15.el8.x86_64.rpm" + }, + "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lz4-libs-1.8.3-2.el8.x86_64.rpm" + }, + "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gawk-4.2.1-2.el8.x86_64.rpm" + }, + "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-ng-0.7.9-5.el8.x86_64.rpm" + }, + "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hardlink-1.3-6.el8.x86_64.rpm" + }, + "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-2.9-12.el8.x86_64.rpm" + }, + "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-build-libs-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/krb5-libs-1.18.2-8.el8.x86_64.rpm" + }, + "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmetalink-0.1.3-7.el8.x86_64.rpm" + }, + "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-5.el8.x86_64.rpm" + }, + "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/diffutils-3.6-6.el8.x86_64.rpm" + }, + "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-1.el8.x86_64.rpm" + }, + "sha256:c6f27b6e01d80e756408e3c1451e4af00e7d02da0aa24402644c0785118753fe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-39.2.0-6.el8.noarch.rpm" + }, + "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libutempter-1.1.6-14.el8.x86_64.rpm" + }, + "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-modules-2.02-93.el8.noarch.rpm" + }, + "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpng-1.6.34-5.el8.x86_64.rpm" + }, + "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-2.26-4.el8.x86_64.rpm" + }, + "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-trust-0.23.22-1.el8.x86_64.rpm" + }, + "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-2.02-93.el8.x86_64.rpm" + }, + "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-0.9.4-2.el8.x86_64.rpm" + }, + "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmount-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-2.9.6-15.el8.x86_64.rpm" + }, + "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-libs-1.8.4-17.el8.x86_64.rpm" + }, + "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ca-certificates-2020.2.41-80.0.el8_2.noarch.rpm" + }, + "sha256:df417aae69f2ba5bd4324a14dcfd30dfbfefba440085bbf916c5ef19286cba20": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python36-3.6.8-2.module_el8.4.0+666+456f5f48.x86_64.rpm" + }, + "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bash-4.4.19-14.el8.x86_64.rpm" + }, + "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-utils-5.3.28-40.el8.x86_64.rpm" + }, + "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.182-3.el8.x86_64.rpm" + }, + "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxkbcommon-0.9.1-1.el8.x86_64.rpm" + }, + "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/brotli-1.0.6-3.el8.x86_64.rpm" + }, + "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libksba-1.3.5-7.el8.x86_64.rpm" + }, + "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm" + }, + "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mpfr-3.1.6-1.el8.x86_64.rpm" + }, + "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtasn1-4.13-3.el8.x86_64.rpm" + }, + "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-4.4.2-5.el8.noarch.rpm" + }, + "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tar-1.30-5.el8.x86_64.rpm" + }, + "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/which-2.21-12.el8.x86_64.rpm" + }, + "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-misc-2.0.4-10.el8.noarch.rpm" + }, + "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/memstrack-0.1.11-1.el8.x86_64.rpm" + }, + "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rdma-core-32.0-4.el8.x86_64.rpm" + }, + "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-extra-2.02-93.el8.x86_64.rpm" + }, + "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-15.el8.x86_64.rpm" + }, + "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/procps-ng-3.3.15-6.el8.x86_64.rpm" + }, + "sha256:f6f7907ccf8faa83a93e6d48801970aa45181a3a3c05ad7102b540a07534e318": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/qemu-img-4.2.0-35.module_el8.4.0+547+a85d02ba.x86_64.rpm" + }, + "sha256:f8bdaf5211c6fc72c8f60c7ddd59b8ca124ab26d2670ee6490a7fabb5177d919": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-8.0p1-5.el8.x86_64.rpm" + }, + "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsecret-0.18.6-1.el8.x86_64.rpm" + }, + "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-0.3.0-5.el8.x86_64.rpm" + }, + "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre2-10.32-2.el8.x86_64.rpm" + }, + "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-daemon-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-8.30-8.el8.x86_64.rpm" + }, + "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/readline-7.0-10.el8.x86_64.rpm" + }, + "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-pam-239-44.el8.x86_64.rpm" + }, + "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-lib-0.3.15-1.el8.x86_64.rpm" + } + } + } + }, + "pipeline": { + "build": { + "pipeline": { + "stages": [ + { + "name": "org.osbuild.rpm", + "options": { + "gpgkeys": [ + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n" + ], + "packages": [ + { + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "checksum": "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af", + "check_gpg": true + }, + { + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "checksum": "sha256:2c63399bee449fb6e921671a9bbf3356fda73f890b578820f7d926202e98a479", + "check_gpg": true + }, + { + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "checksum": "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178", + "check_gpg": true + }, + { + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "checksum": "sha256:c6f27b6e01d80e756408e3c1451e4af00e7d02da0aa24402644c0785118753fe", + "check_gpg": true + }, + { + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "checksum": "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393", + "check_gpg": true + }, + { + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "checksum": "sha256:a2418e8e12144d4e84965298e7bbefedc876c0d0d93771afb9b5c6c2eb139dc0", + "check_gpg": true + }, + { + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "checksum": "sha256:df417aae69f2ba5bd4324a14dcfd30dfbfefba440085bbf916c5ef19286cba20", + "check_gpg": true + }, + { + "checksum": "sha256:f6f7907ccf8faa83a93e6d48801970aa45181a3a3c05ad7102b540a07534e318", + "check_gpg": true + }, + { + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ] + } + }, + { + "name": "org.osbuild.selinux", + "options": { + "file_contexts": "etc/selinux/targeted/contexts/files/file_contexts" + } + } + ] + }, + "runner": "org.osbuild.centos8" + }, + "stages": [ + { + "name": "org.osbuild.rpm", + "options": { + "gpgkeys": [ + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n" + ], + "packages": [ + { + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "checksum": "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af", + "check_gpg": true + }, + { + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "checksum": "sha256:f8bdaf5211c6fc72c8f60c7ddd59b8ca124ab26d2670ee6490a7fabb5177d919", + "check_gpg": true + }, + { + "checksum": "sha256:173a812d859c70f8db7b014d507c5cacb76c62ab5480c44be217f880465f42c7", + "check_gpg": true + }, + { + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ] + } + }, + { + "name": "org.osbuild.fix-bls", + "options": {} + }, + { + "name": "org.osbuild.locale", + "options": { + "language": "en_US" + } + }, + { + "name": "org.osbuild.timezone", + "options": { + "zone": "America/New_York" + } + }, + { + "name": "org.osbuild.users", + "options": { + "users": { + "redhat": { + "key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC61wMCjOSHwbVb4VfVyl5sn497qW4PsdQ7Ty7aD6wDNZ/QjjULkDV/yW5WjDlDQ7UqFH0Sr7vywjqDizUAqK7zM5FsUKsUXWHWwg/ehKg8j9xKcMv11AkFoUoujtfAujnKODkk58XSA9whPr7qcw3vPrmog680pnMSzf9LC7J6kXfs6lkoKfBh9VnlxusCrw2yg0qI1fHAZBLPx7mW6+me71QZsS6sVz8v8KXyrXsKTdnF50FjzHcK9HXDBtSJS5wA3fkcRYymJe0o6WMWNdgSRVpoSiWaHHmFgdMUJaYoCfhXzyl7LtNb3Q+Sveg+tJK7JaRXBLMUllOlJ6ll5Hod root@localhost" + } + } + } + }, + { + "name": "org.osbuild.selinux", + "options": { + "file_contexts": "etc/selinux/targeted/contexts/files/file_contexts" + } + }, + { + "name": "org.osbuild.sysconfig", + "options": { + "kernel": { + "update_default": true, + "default_kernel": "kernel" + }, + "network": { + "networking": true, + "no_zero_conf": true + } + } + } + ], + "assembler": { + "name": "org.osbuild.tar", + "options": { + "filename": "root.tar.xz", + "compression": "xz" + } + } + } + }, + "rpmmd": { + "build-packages": [ + { + "name": "acl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/acl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "name": "audit-libs", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "name": "basesystem", + "epoch": 0, + "version": "11", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/basesystem-11-5.el8.noarch.rpm", + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "name": "bash", + "epoch": 0, + "version": "4.4.19", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bash-4.4.19-14.el8.x86_64.rpm", + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "name": "brotli", + "epoch": 0, + "version": "1.0.6", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/brotli-1.0.6-3.el8.x86_64.rpm", + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "name": "bzip2-libs", + "epoch": 0, + "version": "1.0.6", + "release": "26.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.6-26.el8.x86_64.rpm", + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "name": "ca-certificates", + "epoch": 0, + "version": "2020.2.41", + "release": "80.0.el8_2", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ca-certificates-2020.2.41-80.0.el8_2.noarch.rpm", + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "name": "centos-gpg-keys", + "epoch": 1, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-gpg-keys-8-2.el8.noarch.rpm", + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "name": "centos-stream-release", + "epoch": 0, + "version": "8.4", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-release-8.4-1.el8.noarch.rpm", + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "name": "centos-stream-repos", + "epoch": 0, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-repos-8-2.el8.noarch.rpm", + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "name": "chkconfig", + "epoch": 0, + "version": "1.13", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chkconfig-1.13-2.el8.x86_64.rpm", + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "name": "coreutils", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "name": "coreutils-common", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-common-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "name": "cpio", + "epoch": 0, + "version": "2.12", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cpio-2.12-10.el8.x86_64.rpm", + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "name": "cracklib", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "name": "cracklib-dicts", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "name": "crypto-policies", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "name": "crypto-policies-scripts", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-scripts-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "name": "cryptsetup-libs", + "epoch": 0, + "version": "2.3.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.3.3-2.el8.x86_64.rpm", + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "name": "curl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/curl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "name": "cyrus-sasl-lib", + "epoch": 0, + "version": "2.1.27", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-5.el8.x86_64.rpm", + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "name": "dbus", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "name": "dbus-common", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-common-1.12.8-12.el8.noarch.rpm", + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "name": "dbus-daemon", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-daemon-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "name": "dbus-libs", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-libs-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "name": "dbus-tools", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-tools-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "name": "device-mapper", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "name": "device-mapper-libs", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "name": "diffutils", + "epoch": 0, + "version": "3.6", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/diffutils-3.6-6.el8.x86_64.rpm", + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "name": "dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "name": "dnf-data", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-data-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "name": "dosfstools", + "epoch": 0, + "version": "4.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dosfstools-4.1-6.el8.x86_64.rpm", + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "name": "dracut", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "name": "e2fsprogs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "name": "e2fsprogs-libs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "name": "elfutils-debuginfod-client", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "name": "elfutils-default-yama-scope", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.182-3.el8.noarch.rpm", + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "name": "elfutils-libelf", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libelf-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "name": "elfutils-libs", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libs-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "name": "expat", + "epoch": 0, + "version": "2.2.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/expat-2.2.5-4.el8.x86_64.rpm", + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "name": "file", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "name": "file-libs", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-libs-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "name": "filesystem", + "epoch": 0, + "version": "3.8", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/filesystem-3.8-4.el8.x86_64.rpm", + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "name": "findutils", + "epoch": 1, + "version": "4.6.0", + "release": "20.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/findutils-4.6.0-20.el8.x86_64.rpm", + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "name": "freetype", + "epoch": 0, + "version": "2.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/freetype-2.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "name": "fuse-libs", + "epoch": 0, + "version": "2.9.7", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-libs-2.9.7-12.el8.x86_64.rpm", + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "name": "gawk", + "epoch": 0, + "version": "4.2.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gawk-4.2.1-2.el8.x86_64.rpm", + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "name": "gdbm", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "name": "gdbm-libs", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-libs-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "name": "gettext", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "name": "gettext-libs", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-libs-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "name": "glib2", + "epoch": 0, + "version": "2.56.4", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib2-2.56.4-9.el8.x86_64.rpm", + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "name": "glibc", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "name": "glibc-all-langpacks", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-all-langpacks-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af", + "check_gpg": true + }, + { + "name": "glibc-common", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-common-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "name": "gmp", + "epoch": 1, + "version": "6.1.2", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gmp-6.1.2-10.el8.x86_64.rpm", + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "name": "gnupg2", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "name": "gnupg2-smime", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-smime-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "name": "gnutls", + "epoch": 0, + "version": "3.6.14", + "release": "7.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnutls-3.6.14-7.el8_3.x86_64.rpm", + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "name": "gpgme", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gpgme-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "name": "grep", + "epoch": 0, + "version": "3.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grep-3.1-6.el8.x86_64.rpm", + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "name": "grub2-common", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-common-2.02-93.el8.noarch.rpm", + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "name": "grub2-pc", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "name": "grub2-pc-modules", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-modules-2.02-93.el8.noarch.rpm", + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "name": "grub2-tools", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "name": "grub2-tools-extra", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-extra-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "name": "grub2-tools-minimal", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-minimal-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "name": "grubby", + "epoch": 0, + "version": "8.40", + "release": "41.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grubby-8.40-41.el8.x86_64.rpm", + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "name": "gzip", + "epoch": 0, + "version": "1.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gzip-1.9-12.el8.x86_64.rpm", + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "name": "hardlink", + "epoch": 1, + "version": "1.3", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hardlink-1.3-6.el8.x86_64.rpm", + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "name": "hwdata", + "epoch": 0, + "version": "0.314", + "release": "8.7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hwdata-0.314-8.7.el8.noarch.rpm", + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "name": "ima-evm-utils", + "epoch": 0, + "version": "1.3.2", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ima-evm-utils-1.3.2-11.el8.x86_64.rpm", + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "name": "info", + "epoch": 0, + "version": "6.5", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/info-6.5-6.el8.x86_64.rpm", + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "name": "iptables-libs", + "epoch": 0, + "version": "1.8.4", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-libs-1.8.4-17.el8.x86_64.rpm", + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "name": "json-c", + "epoch": 0, + "version": "0.13.1", + "release": "0.4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-c-0.13.1-0.4.el8.x86_64.rpm", + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "name": "kbd", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-2.0.4-10.el8.x86_64.rpm", + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "name": "kbd-legacy", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-legacy-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "name": "kbd-misc", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-misc-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "name": "keyutils-libs", + "epoch": 0, + "version": "1.5.10", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-libs-1.5.10-6.el8.x86_64.rpm", + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "name": "kmod", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-25-17.el8.x86_64.rpm", + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "name": "kmod-libs", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-libs-25-17.el8.x86_64.rpm", + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "name": "kpartx", + "epoch": 0, + "version": "0.8.4", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kpartx-0.8.4-8.el8.x86_64.rpm", + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "name": "krb5-libs", + "epoch": 0, + "version": "1.18.2", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/krb5-libs-1.18.2-8.el8.x86_64.rpm", + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "name": "libacl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libacl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "name": "libaio", + "epoch": 0, + "version": "0.3.112", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libaio-0.3.112-1.el8.x86_64.rpm", + "checksum": "sha256:2c63399bee449fb6e921671a9bbf3356fda73f890b578820f7d926202e98a479", + "check_gpg": true + }, + { + "name": "libarchive", + "epoch": 0, + "version": "3.3.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libarchive-3.3.3-1.el8.x86_64.rpm", + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "name": "libassuan", + "epoch": 0, + "version": "2.5.1", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libassuan-2.5.1-3.el8.x86_64.rpm", + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "name": "libattr", + "epoch": 0, + "version": "2.4.48", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libattr-2.4.48-3.el8.x86_64.rpm", + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "name": "libblkid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libblkid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "name": "libcap", + "epoch": 0, + "version": "2.26", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-2.26-4.el8.x86_64.rpm", + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "name": "libcap-ng", + "epoch": 0, + "version": "0.7.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-ng-0.7.9-5.el8.x86_64.rpm", + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "name": "libcom_err", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcom_err-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "name": "libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "name": "libcroco", + "epoch": 0, + "version": "0.6.12", + "release": "4.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcroco-0.6.12-4.el8_2.1.x86_64.rpm", + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "name": "libcurl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcurl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "name": "libdb", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "name": "libdb-utils", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-utils-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "name": "libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "name": "libevent", + "epoch": 0, + "version": "2.1.8", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libevent-2.1.8-5.el8.x86_64.rpm", + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "name": "libfdisk", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libfdisk-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "name": "libffi", + "epoch": 0, + "version": "3.1", + "release": "22.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libffi-3.1-22.el8.x86_64.rpm", + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "name": "libgcc", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcc-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "name": "libgcrypt", + "epoch": 0, + "version": "1.8.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcrypt-1.8.5-4.el8.x86_64.rpm", + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "name": "libgomp", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgomp-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "name": "libgpg-error", + "epoch": 0, + "version": "1.31", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgpg-error-1.31-1.el8.x86_64.rpm", + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "name": "libibverbs", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libibverbs-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "name": "libidn2", + "epoch": 0, + "version": "2.2.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libidn2-2.2.0-1.el8.x86_64.rpm", + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "name": "libkcapi", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "name": "libkcapi-hmaccalc", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-hmaccalc-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "name": "libksba", + "epoch": 0, + "version": "1.3.5", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libksba-1.3.5-7.el8.x86_64.rpm", + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "name": "libmetalink", + "epoch": 0, + "version": "0.1.3", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmetalink-0.1.3-7.el8.x86_64.rpm", + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "name": "libmodulemd", + "epoch": 0, + "version": "2.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodulemd-2.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "name": "libmount", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmount-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "name": "libnghttp2", + "epoch": 0, + "version": "1.33.0", + "release": "3.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnghttp2-1.33.0-3.el8_2.1.x86_64.rpm", + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "name": "libnl3", + "epoch": 0, + "version": "3.5.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-3.5.0-1.el8.x86_64.rpm", + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "name": "libnsl2", + "epoch": 0, + "version": "1.2.0", + "release": "2.20180605git4a062cf.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64.rpm", + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "name": "libpcap", + "epoch": 14, + "version": "1.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpcap-1.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "name": "libpng", + "epoch": 2, + "version": "1.6.34", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpng-1.6.34-5.el8.x86_64.rpm", + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "name": "libpsl", + "epoch": 0, + "version": "0.20.2", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpsl-0.20.2-6.el8.x86_64.rpm", + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "name": "libpwquality", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "name": "librepo", + "epoch": 0, + "version": "1.12.0", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/librepo-1.12.0-3.el8.x86_64.rpm", + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "name": "libreport-filesystem", + "epoch": 0, + "version": "2.9.5", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libreport-filesystem-2.9.5-15.el8.x86_64.rpm", + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "name": "libseccomp", + "epoch": 0, + "version": "2.4.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libseccomp-2.4.3-1.el8.x86_64.rpm", + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "name": "libsecret", + "epoch": 0, + "version": "0.18.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsecret-0.18.6-1.el8.x86_64.rpm", + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "name": "libselinux", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "name": "libselinux-utils", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-utils-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "name": "libsemanage", + "epoch": 0, + "version": "2.9", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsemanage-2.9-6.el8.x86_64.rpm", + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "name": "libsepol", + "epoch": 0, + "version": "2.9", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsepol-2.9-2.el8.x86_64.rpm", + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "name": "libsigsegv", + "epoch": 0, + "version": "2.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsigsegv-2.11-5.el8.x86_64.rpm", + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "name": "libsmartcols", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmartcols-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "name": "libsolv", + "epoch": 0, + "version": "0.7.16", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsolv-0.7.16-2.el8.x86_64.rpm", + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "name": "libss", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libss-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "name": "libssh", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-0.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "name": "libssh-config", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-config-0.9.4-2.el8.noarch.rpm", + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "name": "libstdc++", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstdc++-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "name": "libtasn1", + "epoch": 0, + "version": "4.13", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtasn1-4.13-3.el8.x86_64.rpm", + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "name": "libtirpc", + "epoch": 0, + "version": "1.1.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtirpc-1.1.4-4.el8.x86_64.rpm", + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "name": "libunistring", + "epoch": 0, + "version": "0.9.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libunistring-0.9.9-3.el8.x86_64.rpm", + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "name": "libusbx", + "epoch": 0, + "version": "1.0.23", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libusbx-1.0.23-4.el8.x86_64.rpm", + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "name": "libutempter", + "epoch": 0, + "version": "1.1.6", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libutempter-1.1.6-14.el8.x86_64.rpm", + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "name": "libuuid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuuid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "name": "libverto", + "epoch": 0, + "version": "0.3.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-0.3.0-5.el8.x86_64.rpm", + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "name": "libxcrypt", + "epoch": 0, + "version": "4.1.1", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxcrypt-4.1.1-4.el8.x86_64.rpm", + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "name": "libxml2", + "epoch": 0, + "version": "2.9.7", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxml2-2.9.7-9.el8.x86_64.rpm", + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "name": "libyaml", + "epoch": 0, + "version": "0.1.7", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libyaml-0.1.7-5.el8.x86_64.rpm", + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "name": "libzstd", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libzstd-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "name": "lua-libs", + "epoch": 0, + "version": "5.3.4", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lua-libs-5.3.4-11.el8.x86_64.rpm", + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "name": "lz4-libs", + "epoch": 0, + "version": "1.8.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lz4-libs-1.8.3-2.el8.x86_64.rpm", + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "name": "memstrack", + "epoch": 0, + "version": "0.1.11", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/memstrack-0.1.11-1.el8.x86_64.rpm", + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "name": "mpfr", + "epoch": 0, + "version": "3.1.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mpfr-3.1.6-1.el8.x86_64.rpm", + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "name": "ncurses", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "name": "ncurses-base", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-base-6.1-7.20180224.el8.noarch.rpm", + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "name": "ncurses-libs", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-libs-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "name": "nettle", + "epoch": 0, + "version": "3.4.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nettle-3.4.1-2.el8.x86_64.rpm", + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "name": "npth", + "epoch": 0, + "version": "1.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/npth-1.5-4.el8.x86_64.rpm", + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "name": "openldap", + "epoch": 0, + "version": "2.4.46", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openldap-2.4.46-16.el8.x86_64.rpm", + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "name": "openssl", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "name": "openssl-libs", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-libs-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "name": "openssl-pkcs11", + "epoch": 0, + "version": "0.4.10", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-pkcs11-0.4.10-2.el8.x86_64.rpm", + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "name": "os-prober", + "epoch": 0, + "version": "1.74", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/os-prober-1.74-6.el8.x86_64.rpm", + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "name": "p11-kit", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "name": "p11-kit-trust", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-trust-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "name": "pam", + "epoch": 0, + "version": "1.3.1", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pam-1.3.1-14.el8.x86_64.rpm", + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "name": "pciutils", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "name": "pciutils-libs", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-libs-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "name": "pcre", + "epoch": 0, + "version": "8.42", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre-8.42-4.el8.x86_64.rpm", + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "name": "pcre2", + "epoch": 0, + "version": "10.32", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre2-10.32-2.el8.x86_64.rpm", + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "name": "pigz", + "epoch": 0, + "version": "2.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pigz-2.4-4.el8.x86_64.rpm", + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "name": "platform-python", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "name": "platform-python-pip", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-pip-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "name": "platform-python-setuptools", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-setuptools-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "name": "policycoreutils", + "epoch": 0, + "version": "2.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-2.9-12.el8.x86_64.rpm", + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "name": "popt", + "epoch": 0, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/popt-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "name": "procps-ng", + "epoch": 0, + "version": "3.3.15", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/procps-ng-3.3.15-6.el8.x86_64.rpm", + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "name": "publicsuffix-list-dafsa", + "epoch": 0, + "version": "20180723", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20180723-1.el8.noarch.rpm", + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "name": "python3-dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "name": "python3-gpg", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gpg-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "name": "python3-hawkey", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-hawkey-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "name": "python3-iniparse", + "epoch": 0, + "version": "0.4", + "release": "31.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-iniparse-0.4-31.el8.noarch.rpm", + "checksum": "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178", + "check_gpg": true + }, + { + "name": "python3-libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "name": "python3-libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "name": "python3-libs", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libs-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "name": "python3-pip-wheel", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pip-wheel-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "name": "python3-rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "name": "python3-setuptools", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:c6f27b6e01d80e756408e3c1451e4af00e7d02da0aa24402644c0785118753fe", + "check_gpg": true + }, + { + "name": "python3-setuptools-wheel", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "name": "python3-six", + "epoch": 0, + "version": "1.11.0", + "release": "8.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-six-1.11.0-8.el8.noarch.rpm", + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "name": "rdma-core", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rdma-core-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "name": "readline", + "epoch": 0, + "version": "7.0", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/readline-7.0-10.el8.x86_64.rpm", + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "name": "rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "name": "rpm-build-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-build-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "name": "rpm-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "name": "rpm-plugin-selinux", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "name": "rpm-plugin-systemd-inhibit", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "name": "sed", + "epoch": 0, + "version": "4.5", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sed-4.5-2.el8.x86_64.rpm", + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "name": "selinux-policy", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "name": "selinux-policy-targeted", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-targeted-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "name": "setup", + "epoch": 0, + "version": "2.12.2", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/setup-2.12.2-6.el8.noarch.rpm", + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "name": "shadow-utils", + "epoch": 2, + "version": "4.6", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shadow-utils-4.6-12.el8.x86_64.rpm", + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "name": "shared-mime-info", + "epoch": 0, + "version": "1.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shared-mime-info-1.9-3.el8.x86_64.rpm", + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "name": "sqlite-libs", + "epoch": 0, + "version": "3.26.0", + "release": "13.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sqlite-libs-3.26.0-13.el8.x86_64.rpm", + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "name": "systemd", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-239-44.el8.x86_64.rpm", + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "name": "systemd-libs", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-libs-239-44.el8.x86_64.rpm", + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "name": "systemd-pam", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-pam-239-44.el8.x86_64.rpm", + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "name": "systemd-udev", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-udev-239-44.el8.x86_64.rpm", + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "name": "tar", + "epoch": 2, + "version": "1.30", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tar-1.30-5.el8.x86_64.rpm", + "checksum": "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393", + "check_gpg": true + }, + { + "name": "tpm2-tss", + "epoch": 0, + "version": "2.3.2", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tpm2-tss-2.3.2-3.el8.x86_64.rpm", + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "name": "trousers", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "name": "trousers-lib", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-lib-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "name": "tzdata", + "epoch": 0, + "version": "2021a", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tzdata-2021a-1.el8.noarch.rpm", + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "name": "util-linux", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/util-linux-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "name": "which", + "epoch": 0, + "version": "2.21", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/which-2.21-12.el8.x86_64.rpm", + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "name": "xfsprogs", + "epoch": 0, + "version": "5.0.0", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xfsprogs-5.0.0-8.el8.x86_64.rpm", + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "name": "xz", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "name": "xz-libs", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-libs-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "name": "zlib", + "epoch": 0, + "version": "1.2.11", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/zlib-1.2.11-17.el8.x86_64.rpm", + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "name": "libxkbcommon", + "epoch": 0, + "version": "0.9.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxkbcommon-0.9.1-1.el8.x86_64.rpm", + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "name": "pinentry", + "epoch": 0, + "version": "1.1.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pinentry-1.1.0-2.el8.x86_64.rpm", + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "name": "python3-pip", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pip-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:a2418e8e12144d4e84965298e7bbefedc876c0d0d93771afb9b5c6c2eb139dc0", + "check_gpg": true + }, + { + "name": "python3-unbound", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-unbound-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "name": "python36", + "epoch": 0, + "version": "3.6.8", + "release": "2.module_el8.4.0+666+456f5f48", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python36-3.6.8-2.module_el8.4.0+666+456f5f48.x86_64.rpm", + "checksum": "sha256:df417aae69f2ba5bd4324a14dcfd30dfbfefba440085bbf916c5ef19286cba20", + "check_gpg": true + }, + { + "name": "qemu-img", + "epoch": 15, + "version": "4.2.0", + "release": "35.module_el8.4.0+547+a85d02ba", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/qemu-img-4.2.0-35.module_el8.4.0+547+a85d02ba.x86_64.rpm", + "checksum": "sha256:f6f7907ccf8faa83a93e6d48801970aa45181a3a3c05ad7102b540a07534e318", + "check_gpg": true + }, + { + "name": "unbound-libs", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/unbound-libs-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "name": "xkeyboard-config", + "epoch": 0, + "version": "2.28", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xkeyboard-config-2.28-1.el8.noarch.rpm", + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ], + "packages": [ + { + "name": "acl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/acl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "name": "audit-libs", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "name": "basesystem", + "epoch": 0, + "version": "11", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/basesystem-11-5.el8.noarch.rpm", + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "name": "bash", + "epoch": 0, + "version": "4.4.19", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bash-4.4.19-14.el8.x86_64.rpm", + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "name": "brotli", + "epoch": 0, + "version": "1.0.6", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/brotli-1.0.6-3.el8.x86_64.rpm", + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "name": "bzip2-libs", + "epoch": 0, + "version": "1.0.6", + "release": "26.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.6-26.el8.x86_64.rpm", + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "name": "ca-certificates", + "epoch": 0, + "version": "2020.2.41", + "release": "80.0.el8_2", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ca-certificates-2020.2.41-80.0.el8_2.noarch.rpm", + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "name": "centos-gpg-keys", + "epoch": 1, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-gpg-keys-8-2.el8.noarch.rpm", + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "name": "centos-stream-release", + "epoch": 0, + "version": "8.4", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-release-8.4-1.el8.noarch.rpm", + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "name": "centos-stream-repos", + "epoch": 0, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-repos-8-2.el8.noarch.rpm", + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "name": "chkconfig", + "epoch": 0, + "version": "1.13", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chkconfig-1.13-2.el8.x86_64.rpm", + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "name": "coreutils", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "name": "coreutils-common", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-common-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "name": "cpio", + "epoch": 0, + "version": "2.12", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cpio-2.12-10.el8.x86_64.rpm", + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "name": "cracklib", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "name": "cracklib-dicts", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "name": "crypto-policies", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "name": "crypto-policies-scripts", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-scripts-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "name": "cryptsetup-libs", + "epoch": 0, + "version": "2.3.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.3.3-2.el8.x86_64.rpm", + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "name": "curl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/curl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "name": "cyrus-sasl-lib", + "epoch": 0, + "version": "2.1.27", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-5.el8.x86_64.rpm", + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "name": "dbus", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "name": "dbus-common", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-common-1.12.8-12.el8.noarch.rpm", + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "name": "dbus-daemon", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-daemon-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "name": "dbus-libs", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-libs-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "name": "dbus-tools", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-tools-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "name": "device-mapper", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "name": "device-mapper-libs", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "name": "diffutils", + "epoch": 0, + "version": "3.6", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/diffutils-3.6-6.el8.x86_64.rpm", + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "name": "dracut", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "name": "elfutils-debuginfod-client", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "name": "elfutils-default-yama-scope", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.182-3.el8.noarch.rpm", + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "name": "elfutils-libelf", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libelf-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "name": "elfutils-libs", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libs-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "name": "expat", + "epoch": 0, + "version": "2.2.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/expat-2.2.5-4.el8.x86_64.rpm", + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "name": "file", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "name": "file-libs", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-libs-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "name": "filesystem", + "epoch": 0, + "version": "3.8", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/filesystem-3.8-4.el8.x86_64.rpm", + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "name": "findutils", + "epoch": 1, + "version": "4.6.0", + "release": "20.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/findutils-4.6.0-20.el8.x86_64.rpm", + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "name": "gawk", + "epoch": 0, + "version": "4.2.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gawk-4.2.1-2.el8.x86_64.rpm", + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "name": "gdbm", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "name": "gdbm-libs", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-libs-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "name": "gettext", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "name": "gettext-libs", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-libs-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "name": "glib2", + "epoch": 0, + "version": "2.56.4", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib2-2.56.4-9.el8.x86_64.rpm", + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "name": "glibc", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "name": "glibc-all-langpacks", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-all-langpacks-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af", + "check_gpg": true + }, + { + "name": "glibc-common", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-common-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "name": "gmp", + "epoch": 1, + "version": "6.1.2", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gmp-6.1.2-10.el8.x86_64.rpm", + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "name": "gnutls", + "epoch": 0, + "version": "3.6.14", + "release": "7.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnutls-3.6.14-7.el8_3.x86_64.rpm", + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "name": "grep", + "epoch": 0, + "version": "3.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grep-3.1-6.el8.x86_64.rpm", + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "name": "grub2-common", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-common-2.02-93.el8.noarch.rpm", + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "name": "grub2-tools", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "name": "grub2-tools-minimal", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-minimal-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "name": "grubby", + "epoch": 0, + "version": "8.40", + "release": "41.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grubby-8.40-41.el8.x86_64.rpm", + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "name": "gzip", + "epoch": 0, + "version": "1.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gzip-1.9-12.el8.x86_64.rpm", + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "name": "hardlink", + "epoch": 1, + "version": "1.3", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hardlink-1.3-6.el8.x86_64.rpm", + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "name": "hwdata", + "epoch": 0, + "version": "0.314", + "release": "8.7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hwdata-0.314-8.7.el8.noarch.rpm", + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "name": "info", + "epoch": 0, + "version": "6.5", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/info-6.5-6.el8.x86_64.rpm", + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "name": "iptables-libs", + "epoch": 0, + "version": "1.8.4", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-libs-1.8.4-17.el8.x86_64.rpm", + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "name": "json-c", + "epoch": 0, + "version": "0.13.1", + "release": "0.4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-c-0.13.1-0.4.el8.x86_64.rpm", + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "name": "kbd", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-2.0.4-10.el8.x86_64.rpm", + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "name": "kbd-legacy", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-legacy-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "name": "kbd-misc", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-misc-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "name": "keyutils-libs", + "epoch": 0, + "version": "1.5.10", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-libs-1.5.10-6.el8.x86_64.rpm", + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "name": "kmod", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-25-17.el8.x86_64.rpm", + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "name": "kmod-libs", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-libs-25-17.el8.x86_64.rpm", + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "name": "kpartx", + "epoch": 0, + "version": "0.8.4", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kpartx-0.8.4-8.el8.x86_64.rpm", + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "name": "krb5-libs", + "epoch": 0, + "version": "1.18.2", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/krb5-libs-1.18.2-8.el8.x86_64.rpm", + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "name": "libacl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libacl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "name": "libarchive", + "epoch": 0, + "version": "3.3.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libarchive-3.3.3-1.el8.x86_64.rpm", + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "name": "libattr", + "epoch": 0, + "version": "2.4.48", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libattr-2.4.48-3.el8.x86_64.rpm", + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "name": "libblkid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libblkid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "name": "libcap", + "epoch": 0, + "version": "2.26", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-2.26-4.el8.x86_64.rpm", + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "name": "libcap-ng", + "epoch": 0, + "version": "0.7.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-ng-0.7.9-5.el8.x86_64.rpm", + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "name": "libcom_err", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcom_err-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "name": "libcroco", + "epoch": 0, + "version": "0.6.12", + "release": "4.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcroco-0.6.12-4.el8_2.1.x86_64.rpm", + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "name": "libcurl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcurl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "name": "libdb", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "name": "libdb-utils", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-utils-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "name": "libfdisk", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libfdisk-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "name": "libffi", + "epoch": 0, + "version": "3.1", + "release": "22.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libffi-3.1-22.el8.x86_64.rpm", + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "name": "libgcc", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcc-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "name": "libgcrypt", + "epoch": 0, + "version": "1.8.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcrypt-1.8.5-4.el8.x86_64.rpm", + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "name": "libgomp", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgomp-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "name": "libgpg-error", + "epoch": 0, + "version": "1.31", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgpg-error-1.31-1.el8.x86_64.rpm", + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "name": "libibverbs", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libibverbs-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "name": "libidn2", + "epoch": 0, + "version": "2.2.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libidn2-2.2.0-1.el8.x86_64.rpm", + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "name": "libkcapi", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "name": "libkcapi-hmaccalc", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-hmaccalc-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "name": "libmetalink", + "epoch": 0, + "version": "0.1.3", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmetalink-0.1.3-7.el8.x86_64.rpm", + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "name": "libmount", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmount-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "name": "libnghttp2", + "epoch": 0, + "version": "1.33.0", + "release": "3.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnghttp2-1.33.0-3.el8_2.1.x86_64.rpm", + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "name": "libnl3", + "epoch": 0, + "version": "3.5.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-3.5.0-1.el8.x86_64.rpm", + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "name": "libnsl2", + "epoch": 0, + "version": "1.2.0", + "release": "2.20180605git4a062cf.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64.rpm", + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "name": "libpcap", + "epoch": 14, + "version": "1.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpcap-1.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "name": "libpsl", + "epoch": 0, + "version": "0.20.2", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpsl-0.20.2-6.el8.x86_64.rpm", + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "name": "libpwquality", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "name": "libseccomp", + "epoch": 0, + "version": "2.4.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libseccomp-2.4.3-1.el8.x86_64.rpm", + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "name": "libselinux", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "name": "libselinux-utils", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-utils-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "name": "libsemanage", + "epoch": 0, + "version": "2.9", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsemanage-2.9-6.el8.x86_64.rpm", + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "name": "libsepol", + "epoch": 0, + "version": "2.9", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsepol-2.9-2.el8.x86_64.rpm", + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "name": "libsigsegv", + "epoch": 0, + "version": "2.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsigsegv-2.11-5.el8.x86_64.rpm", + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "name": "libsmartcols", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmartcols-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "name": "libssh", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-0.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "name": "libssh-config", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-config-0.9.4-2.el8.noarch.rpm", + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "name": "libstdc++", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstdc++-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "name": "libtasn1", + "epoch": 0, + "version": "4.13", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtasn1-4.13-3.el8.x86_64.rpm", + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "name": "libtirpc", + "epoch": 0, + "version": "1.1.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtirpc-1.1.4-4.el8.x86_64.rpm", + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "name": "libunistring", + "epoch": 0, + "version": "0.9.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libunistring-0.9.9-3.el8.x86_64.rpm", + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "name": "libutempter", + "epoch": 0, + "version": "1.1.6", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libutempter-1.1.6-14.el8.x86_64.rpm", + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "name": "libuuid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuuid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "name": "libverto", + "epoch": 0, + "version": "0.3.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-0.3.0-5.el8.x86_64.rpm", + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "name": "libxcrypt", + "epoch": 0, + "version": "4.1.1", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxcrypt-4.1.1-4.el8.x86_64.rpm", + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "name": "libxml2", + "epoch": 0, + "version": "2.9.7", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxml2-2.9.7-9.el8.x86_64.rpm", + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "name": "libzstd", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libzstd-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "name": "lua-libs", + "epoch": 0, + "version": "5.3.4", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lua-libs-5.3.4-11.el8.x86_64.rpm", + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "name": "lz4-libs", + "epoch": 0, + "version": "1.8.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lz4-libs-1.8.3-2.el8.x86_64.rpm", + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "name": "memstrack", + "epoch": 0, + "version": "0.1.11", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/memstrack-0.1.11-1.el8.x86_64.rpm", + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "name": "mpfr", + "epoch": 0, + "version": "3.1.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mpfr-3.1.6-1.el8.x86_64.rpm", + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "name": "ncurses", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "name": "ncurses-base", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-base-6.1-7.20180224.el8.noarch.rpm", + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "name": "ncurses-libs", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-libs-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "name": "nettle", + "epoch": 0, + "version": "3.4.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nettle-3.4.1-2.el8.x86_64.rpm", + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "name": "openldap", + "epoch": 0, + "version": "2.4.46", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openldap-2.4.46-16.el8.x86_64.rpm", + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "name": "openssh", + "epoch": 0, + "version": "8.0p1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-8.0p1-5.el8.x86_64.rpm", + "checksum": "sha256:f8bdaf5211c6fc72c8f60c7ddd59b8ca124ab26d2670ee6490a7fabb5177d919", + "check_gpg": true + }, + { + "name": "openssh-server", + "epoch": 0, + "version": "8.0p1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-server-8.0p1-5.el8.x86_64.rpm", + "checksum": "sha256:173a812d859c70f8db7b014d507c5cacb76c62ab5480c44be217f880465f42c7", + "check_gpg": true + }, + { + "name": "openssl", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "name": "openssl-libs", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-libs-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "name": "openssl-pkcs11", + "epoch": 0, + "version": "0.4.10", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-pkcs11-0.4.10-2.el8.x86_64.rpm", + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "name": "os-prober", + "epoch": 0, + "version": "1.74", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/os-prober-1.74-6.el8.x86_64.rpm", + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "name": "p11-kit", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "name": "p11-kit-trust", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-trust-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "name": "pam", + "epoch": 0, + "version": "1.3.1", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pam-1.3.1-14.el8.x86_64.rpm", + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "name": "pciutils", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "name": "pciutils-libs", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-libs-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "name": "pcre", + "epoch": 0, + "version": "8.42", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre-8.42-4.el8.x86_64.rpm", + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "name": "pcre2", + "epoch": 0, + "version": "10.32", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre2-10.32-2.el8.x86_64.rpm", + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "name": "pigz", + "epoch": 0, + "version": "2.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pigz-2.4-4.el8.x86_64.rpm", + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "name": "platform-python", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "name": "platform-python-pip", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-pip-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "name": "platform-python-setuptools", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-setuptools-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "name": "policycoreutils", + "epoch": 0, + "version": "2.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-2.9-12.el8.x86_64.rpm", + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "name": "popt", + "epoch": 0, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/popt-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "name": "procps-ng", + "epoch": 0, + "version": "3.3.15", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/procps-ng-3.3.15-6.el8.x86_64.rpm", + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "name": "publicsuffix-list-dafsa", + "epoch": 0, + "version": "20180723", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20180723-1.el8.noarch.rpm", + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "name": "python3-libs", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libs-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "name": "python3-pip-wheel", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pip-wheel-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "name": "python3-setuptools-wheel", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "name": "rdma-core", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rdma-core-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "name": "readline", + "epoch": 0, + "version": "7.0", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/readline-7.0-10.el8.x86_64.rpm", + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "name": "rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "name": "rpm-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "name": "rpm-plugin-selinux", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "name": "sed", + "epoch": 0, + "version": "4.5", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sed-4.5-2.el8.x86_64.rpm", + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "name": "selinux-policy", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "name": "selinux-policy-targeted", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-targeted-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "name": "setup", + "epoch": 0, + "version": "2.12.2", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/setup-2.12.2-6.el8.noarch.rpm", + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "name": "shadow-utils", + "epoch": 2, + "version": "4.6", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shadow-utils-4.6-12.el8.x86_64.rpm", + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "name": "shared-mime-info", + "epoch": 0, + "version": "1.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shared-mime-info-1.9-3.el8.x86_64.rpm", + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "name": "sqlite-libs", + "epoch": 0, + "version": "3.26.0", + "release": "13.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sqlite-libs-3.26.0-13.el8.x86_64.rpm", + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "name": "systemd", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-239-44.el8.x86_64.rpm", + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "name": "systemd-libs", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-libs-239-44.el8.x86_64.rpm", + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "name": "systemd-pam", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-pam-239-44.el8.x86_64.rpm", + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "name": "systemd-udev", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-udev-239-44.el8.x86_64.rpm", + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "name": "trousers", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "name": "trousers-lib", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-lib-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "name": "tzdata", + "epoch": 0, + "version": "2021a", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tzdata-2021a-1.el8.noarch.rpm", + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "name": "util-linux", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/util-linux-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "name": "which", + "epoch": 0, + "version": "2.21", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/which-2.21-12.el8.x86_64.rpm", + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "name": "xz", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "name": "xz-libs", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-libs-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "name": "zlib", + "epoch": 0, + "version": "1.2.11", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/zlib-1.2.11-17.el8.x86_64.rpm", + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "name": "libxkbcommon", + "epoch": 0, + "version": "0.9.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxkbcommon-0.9.1-1.el8.x86_64.rpm", + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "name": "xkeyboard-config", + "epoch": 0, + "version": "2.28", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xkeyboard-config-2.28-1.el8.noarch.rpm", + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ], + "checksums": { + "0": "sha256:06fa6273454f85c58ca743a0ef0202bed4cac267393049dc447839cdb39f4a54", + "1": "sha256:5b16e44261a7beffd5d7bf961fe269da407bd57abb1faac407c46a81969dfd63" + } + }, + "image-info": { + "bootmenu": [], + "default-target": "graphical.target", + "groups": [ + "adm:x:4:", + "audio:x:63:", + "bin:x:1:", + "cdrom:x:11:", + "daemon:x:2:", + "dbus:x:81:", + "dialout:x:18:", + "disk:x:6:", + "floppy:x:19:", + "ftp:x:50:", + "games:x:20:", + "input:x:999:", + "kmem:x:9:", + "kvm:x:36:", + "lock:x:54:", + "lp:x:7:", + "mail:x:12:", + "man:x:15:", + "mem:x:8:", + "nobody:x:65534:", + "redhat:x:1000:", + "render:x:998:", + "root:x:0:", + "ssh_keys:x:996:", + "sshd:x:74:", + "sys:x:3:", + "systemd-coredump:x:997:", + "systemd-journal:x:190:", + "systemd-resolve:x:193:", + "tape:x:33:", + "tss:x:59:", + "tty:x:5:", + "users:x:100:", + "utempter:x:35:", + "utmp:x:22:", + "video:x:39:", + "wheel:x:10:" + ], + "os-release": { + "ANSI_COLOR": "0;31", + "BUG_REPORT_URL": "https://bugzilla.redhat.com/", + "CPE_NAME": "cpe:/o:centos:centos:8", + "HOME_URL": "https://centos.org/", + "ID": "centos", + "ID_LIKE": "rhel fedora", + "NAME": "CentOS Stream", + "PLATFORM_ID": "platform:el8", + "PRETTY_NAME": "CentOS Stream 8", + "REDHAT_SUPPORT_PRODUCT": "Red Hat Enterprise Linux 8", + "REDHAT_SUPPORT_PRODUCT_VERSION": "CentOS Stream", + "VERSION": "8", + "VERSION_ID": "8" + }, + "packages": [ + "acl-2.2.53-1.el8.x86_64", + "audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64", + "basesystem-11-5.el8.noarch", + "bash-4.4.19-14.el8.x86_64", + "brotli-1.0.6-3.el8.x86_64", + "bzip2-libs-1.0.6-26.el8.x86_64", + "ca-certificates-2020.2.41-80.0.el8_2.noarch", + "centos-gpg-keys-8-2.el8.noarch", + "centos-stream-release-8.4-1.el8.noarch", + "centos-stream-repos-8-2.el8.noarch", + "chkconfig-1.13-2.el8.x86_64", + "coreutils-8.30-8.el8.x86_64", + "coreutils-common-8.30-8.el8.x86_64", + "cpio-2.12-10.el8.x86_64", + "cracklib-2.9.6-15.el8.x86_64", + "cracklib-dicts-2.9.6-15.el8.x86_64", + "crypto-policies-20200713-1.git51d1222.el8.noarch", + "crypto-policies-scripts-20200713-1.git51d1222.el8.noarch", + "cryptsetup-libs-2.3.3-2.el8.x86_64", + "curl-7.61.1-18.el8.x86_64", + "cyrus-sasl-lib-2.1.27-5.el8.x86_64", + "dbus-1.12.8-12.el8.x86_64", + "dbus-common-1.12.8-12.el8.noarch", + "dbus-daemon-1.12.8-12.el8.x86_64", + "dbus-libs-1.12.8-12.el8.x86_64", + "dbus-tools-1.12.8-12.el8.x86_64", + "device-mapper-1.02.175-3.el8.x86_64", + "device-mapper-libs-1.02.175-3.el8.x86_64", + "diffutils-3.6-6.el8.x86_64", + "dracut-049-133.git20210112.el8.x86_64", + "elfutils-debuginfod-client-0.182-3.el8.x86_64", + "elfutils-default-yama-scope-0.182-3.el8.noarch", + "elfutils-libelf-0.182-3.el8.x86_64", + "elfutils-libs-0.182-3.el8.x86_64", + "expat-2.2.5-4.el8.x86_64", + "file-5.33-16.el8.x86_64", + "file-libs-5.33-16.el8.x86_64", + "filesystem-3.8-4.el8.x86_64", + "findutils-4.6.0-20.el8.x86_64", + "gawk-4.2.1-2.el8.x86_64", + "gdbm-1.18-1.el8.x86_64", + "gdbm-libs-1.18-1.el8.x86_64", + "gettext-0.19.8.1-17.el8.x86_64", + "gettext-libs-0.19.8.1-17.el8.x86_64", + "glib2-2.56.4-9.el8.x86_64", + "glibc-2.28-147.el8.x86_64", + "glibc-all-langpacks-2.28-147.el8.x86_64", + "glibc-common-2.28-147.el8.x86_64", + "gmp-6.1.2-10.el8.x86_64", + "gnutls-3.6.14-7.el8_3.x86_64", + "gpg-pubkey-8483c65d-5ccc5b19", + "grep-3.1-6.el8.x86_64", + "grub2-common-2.02-93.el8.noarch", + "grub2-tools-2.02-93.el8.x86_64", + "grub2-tools-minimal-2.02-93.el8.x86_64", + "grubby-8.40-41.el8.x86_64", + "gzip-1.9-12.el8.x86_64", + "hardlink-1.3-6.el8.x86_64", + "hwdata-0.314-8.7.el8.noarch", + "info-6.5-6.el8.x86_64", + "iptables-libs-1.8.4-17.el8.x86_64", + "json-c-0.13.1-0.4.el8.x86_64", + "kbd-2.0.4-10.el8.x86_64", + "kbd-legacy-2.0.4-10.el8.noarch", + "kbd-misc-2.0.4-10.el8.noarch", + "keyutils-libs-1.5.10-6.el8.x86_64", + "kmod-25-17.el8.x86_64", + "kmod-libs-25-17.el8.x86_64", + "kpartx-0.8.4-8.el8.x86_64", + "krb5-libs-1.18.2-8.el8.x86_64", + "libacl-2.2.53-1.el8.x86_64", + "libarchive-3.3.3-1.el8.x86_64", + "libattr-2.4.48-3.el8.x86_64", + "libblkid-2.32.1-27.el8.x86_64", + "libcap-2.26-4.el8.x86_64", + "libcap-ng-0.7.9-5.el8.x86_64", + "libcom_err-1.45.6-1.el8.x86_64", + "libcroco-0.6.12-4.el8_2.1.x86_64", + "libcurl-7.61.1-18.el8.x86_64", + "libdb-5.3.28-40.el8.x86_64", + "libdb-utils-5.3.28-40.el8.x86_64", + "libfdisk-2.32.1-27.el8.x86_64", + "libffi-3.1-22.el8.x86_64", + "libgcc-8.4.1-1.el8.x86_64", + "libgcrypt-1.8.5-4.el8.x86_64", + "libgomp-8.4.1-1.el8.x86_64", + "libgpg-error-1.31-1.el8.x86_64", + "libibverbs-32.0-4.el8.x86_64", + "libidn2-2.2.0-1.el8.x86_64", + "libkcapi-1.2.0-2.el8.x86_64", + "libkcapi-hmaccalc-1.2.0-2.el8.x86_64", + "libmetalink-0.1.3-7.el8.x86_64", + "libmount-2.32.1-27.el8.x86_64", + "libnghttp2-1.33.0-3.el8_2.1.x86_64", + "libnl3-3.5.0-1.el8.x86_64", + "libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64", + "libpcap-1.9.1-5.el8.x86_64", + "libpsl-0.20.2-6.el8.x86_64", + "libpwquality-1.4.4-1.el8.x86_64", + "libseccomp-2.4.3-1.el8.x86_64", + "libselinux-2.9-5.el8.x86_64", + "libselinux-utils-2.9-5.el8.x86_64", + "libsemanage-2.9-6.el8.x86_64", + "libsepol-2.9-2.el8.x86_64", + "libsigsegv-2.11-5.el8.x86_64", + "libsmartcols-2.32.1-27.el8.x86_64", + "libssh-0.9.4-2.el8.x86_64", + "libssh-config-0.9.4-2.el8.noarch", + "libstdc++-8.4.1-1.el8.x86_64", + "libtasn1-4.13-3.el8.x86_64", + "libtirpc-1.1.4-4.el8.x86_64", + "libunistring-0.9.9-3.el8.x86_64", + "libutempter-1.1.6-14.el8.x86_64", + "libuuid-2.32.1-27.el8.x86_64", + "libverto-0.3.0-5.el8.x86_64", + "libxcrypt-4.1.1-4.el8.x86_64", + "libxkbcommon-0.9.1-1.el8.x86_64", + "libxml2-2.9.7-9.el8.x86_64", + "libzstd-1.4.4-1.el8.x86_64", + "lua-libs-5.3.4-11.el8.x86_64", + "lz4-libs-1.8.3-2.el8.x86_64", + "memstrack-0.1.11-1.el8.x86_64", + "mpfr-3.1.6-1.el8.x86_64", + "ncurses-6.1-7.20180224.el8.x86_64", + "ncurses-base-6.1-7.20180224.el8.noarch", + "ncurses-libs-6.1-7.20180224.el8.x86_64", + "nettle-3.4.1-2.el8.x86_64", + "openldap-2.4.46-16.el8.x86_64", + "openssh-8.0p1-5.el8.x86_64", + "openssh-server-8.0p1-5.el8.x86_64", + "openssl-1.1.1g-12.el8_3.x86_64", + "openssl-libs-1.1.1g-12.el8_3.x86_64", + "openssl-pkcs11-0.4.10-2.el8.x86_64", + "os-prober-1.74-6.el8.x86_64", + "p11-kit-0.23.22-1.el8.x86_64", + "p11-kit-trust-0.23.22-1.el8.x86_64", + "pam-1.3.1-14.el8.x86_64", + "pciutils-3.7.0-1.el8.x86_64", + "pciutils-libs-3.7.0-1.el8.x86_64", + "pcre-8.42-4.el8.x86_64", + "pcre2-10.32-2.el8.x86_64", + "pigz-2.4-4.el8.x86_64", + "platform-python-3.6.8-36.el8.x86_64", + "platform-python-pip-9.0.3-19.el8.noarch", + "platform-python-setuptools-39.2.0-6.el8.noarch", + "policycoreutils-2.9-12.el8.x86_64", + "popt-1.18-1.el8.x86_64", + "procps-ng-3.3.15-6.el8.x86_64", + "publicsuffix-list-dafsa-20180723-1.el8.noarch", + "python3-libs-3.6.8-36.el8.x86_64", + "python3-pip-wheel-9.0.3-19.el8.noarch", + "python3-setuptools-wheel-39.2.0-6.el8.noarch", + "rdma-core-32.0-4.el8.x86_64", + "readline-7.0-10.el8.x86_64", + "rpm-4.14.3-10.el8.x86_64", + "rpm-libs-4.14.3-10.el8.x86_64", + "rpm-plugin-selinux-4.14.3-10.el8.x86_64", + "sed-4.5-2.el8.x86_64", + "selinux-policy-3.14.3-62.el8.noarch", + "selinux-policy-targeted-3.14.3-62.el8.noarch", + "setup-2.12.2-6.el8.noarch", + "shadow-utils-4.6-12.el8.x86_64", + "shared-mime-info-1.9-3.el8.x86_64", + "sqlite-libs-3.26.0-13.el8.x86_64", + "systemd-239-44.el8.x86_64", + "systemd-libs-239-44.el8.x86_64", + "systemd-pam-239-44.el8.x86_64", + "systemd-udev-239-44.el8.x86_64", + "trousers-0.3.15-1.el8.x86_64", + "trousers-lib-0.3.15-1.el8.x86_64", + "tzdata-2021a-1.el8.noarch", + "util-linux-2.32.1-27.el8.x86_64", + "which-2.21-12.el8.x86_64", + "xkeyboard-config-2.28-1.el8.noarch", + "xz-5.2.4-3.el8.x86_64", + "xz-libs-5.2.4-3.el8.x86_64", + "zlib-1.2.11-17.el8.x86_64" + ], + "passwd": [ + "adm:x:3:4:adm:/var/adm:/sbin/nologin", + "bin:x:1:1:bin:/bin:/sbin/nologin", + "daemon:x:2:2:daemon:/sbin:/sbin/nologin", + "dbus:x:81:81:System message bus:/:/sbin/nologin", + "ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin", + "games:x:12:100:games:/usr/games:/sbin/nologin", + "halt:x:7:0:halt:/sbin:/sbin/halt", + "lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin", + "mail:x:8:12:mail:/var/spool/mail:/sbin/nologin", + "nobody:x:65534:65534:Kernel Overflow User:/:/sbin/nologin", + "operator:x:11:0:operator:/root:/sbin/nologin", + "redhat:x:1000:1000::/home/redhat:/bin/bash", + "root:x:0:0:root:/root:/bin/bash", + "shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown", + "sshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:/sbin/nologin", + "sync:x:5:0:sync:/sbin:/bin/sync", + "systemd-coredump:x:999:997:systemd Core Dumper:/:/sbin/nologin", + "systemd-resolve:x:193:193:systemd Resolver:/:/sbin/nologin", + "tss:x:59:59:Account used for TPM access:/dev/null:/sbin/nologin" + ], + "rpm-verify": { + "changed": { + "/etc/machine-id": ".M.......", + "/proc": ".M.......", + "/sys": ".M.......", + "/usr/bin/newgidmap": "........P", + "/usr/bin/newuidmap": "........P", + "/usr/libexec/openssh/ssh-keysign": "......G..", + "/var/log/lastlog": ".M....G.." + }, + "missing": [] + }, + "services-disabled": [ + "console-getty.service", + "ctrl-alt-del.target", + "debug-shell.service", + "exit.target", + "fstrim.timer", + "halt.target", + "kexec.target", + "poweroff.target", + "reboot.target", + "remote-cryptsetup.target", + "runlevel0.target", + "runlevel6.target", + "serial-getty@.service", + "sshd-keygen@.service", + "sshd.socket", + "systemd-resolved.service", + "tcsd.service", + "tmp.mount" + ], + "services-enabled": [ + "autovt@.service", + "getty@.service", + "remote-fs.target", + "selinux-autorelabel-mark.service", + "sshd.service" + ], + "sysconfig": { + "kernel": { + "DEFAULTKERNEL": "kernel", + "UPDATEDEFAULT": "yes" + }, + "network": { + "NETWORKING": "yes", + "NOZEROCONF": "yes" + } + }, + "timezone": "New_York" + } +} \ No newline at end of file diff --git a/test/data/manifests/centos_8-x86_64-vhd-boot.json b/test/data/manifests/centos_8-x86_64-vhd-boot.json new file mode 100644 index 000000000..b15e346ea --- /dev/null +++ b/test/data/manifests/centos_8-x86_64-vhd-boot.json @@ -0,0 +1,11588 @@ +{ + "boot": { + "type": "azure" + }, + "compose-request": { + "distro": "centos-8", + "arch": "x86_64", + "image-type": "vhd", + "repositories": [ + { + "name": "baseos", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + }, + { + "name": "appstream", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + } + ], + "filename": "disk.vhd", + "blueprint": { + "name": "vhd-boot-test", + "description": "Image for boot test", + "packages": [], + "modules": [], + "groups": [], + "customizations": { + "user": [ + { + "name": "redhat", + "key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC61wMCjOSHwbVb4VfVyl5sn497qW4PsdQ7Ty7aD6wDNZ/QjjULkDV/yW5WjDlDQ7UqFH0Sr7vywjqDizUAqK7zM5FsUKsUXWHWwg/ehKg8j9xKcMv11AkFoUoujtfAujnKODkk58XSA9whPr7qcw3vPrmog680pnMSzf9LC7J6kXfs6lkoKfBh9VnlxusCrw2yg0qI1fHAZBLPx7mW6+me71QZsS6sVz8v8KXyrXsKTdnF50FjzHcK9HXDBtSJS5wA3fkcRYymJe0o6WMWNdgSRVpoSiWaHHmFgdMUJaYoCfhXzyl7LtNb3Q+Sveg+tJK7JaRXBLMUllOlJ6ll5Hod root@localhost" + } + ] + } + } + }, + "manifest": { + "sources": { + "org.osbuild.files": { + "urls": { + "sha256:003ee19ec5b88de212c3246bdfdb3e97a9910a25a219fd7cf5030b7bc666fea9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-requests-2.20.0-2.1.el8_1.noarch.rpm" + }, + "sha256:0064a3aeff41fb7345c061956c35e4b9d0b8802954e717491fb6eb51028d22fd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lmdb-libs-0.9.24-1.el8.x86_64.rpm" + }, + "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libs-0.182-3.el8.x86_64.rpm" + }, + "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libyaml-0.1.7-5.el8.x86_64.rpm" + }, + "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnghttp2-1.33.0-3.el8_2.1.x86_64.rpm" + }, + "sha256:017e78c5e23f98d6ee299255fc7be5381dba63d169e3f5dcb1de9d21b5d30ba5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-syspurpose-1.28.10-1.el8.x86_64.rpm" + }, + "sha256:01b808f1ea9299c37c80164d05ef1a5c45e05d53bcbd451b4d52e69a47959bc2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl6000g2a-firmware-18.168.6.1-102.el8.1.noarch.rpm" + }, + "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsigsegv-2.11-5.el8.x86_64.rpm" + }, + "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-5.2.4-3.el8.x86_64.rpm" + }, + "sha256:03b50a4ea5cf5655c67e2358fabb6e563eec4e7929e7fc6c4e92c92694f60fa0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mozjs60-60.9.0-4.el8.x86_64.rpm" + }, + "sha256:0560d3b3e915221aad94ddf83169bd680b1f0da9aa8ec8e9360bcb8fe071483e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mdadm-4.1-15.el8.x86_64.rpm" + }, + "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-5.33-16.el8.x86_64.rpm" + }, + "sha256:066f254f9ac7712b44214816de907a87eb8dfd0d2ea9570a7513db9a6617ba26": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dbus-1.2.4-15.el8.x86_64.rpm" + }, + "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-2.0.4-10.el8.x86_64.rpm" + }, + "sha256:078fa234177ae5ae2736c878aa2a2f8ecccf4c7772ab4ad19a2d6ba4f34e8631": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl1000-firmware-39.31.5.1-102.el8.1.noarch.rpm" + }, + "sha256:07ed1209e898552e6aeac0e6d148271d562c576f7d903cb7a99a697643068f58": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-cffi-1.11.5-5.el8.x86_64.rpm" + }, + "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.182-3.el8.noarch.rpm" + }, + "sha256:084c55bef75a2ce2ab67aa4eeb6726ca59ea6d7c2b23bc6e4084f11aac7e17f8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-client-4.3.6-44.0.1.el8.x86_64.rpm" + }, + "sha256:08b76b0af07db4d3b27776a96bb7d0dc0f02b7219569676ac79036190d731d5b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libedit-3.1-23.20170329cvs.el8.x86_64.rpm" + }, + "sha256:09128c1b70cb8ea1a9bfbc6f3314dd5a8ba0c1a1886a82cd0fbe6845d48215dc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-0.115-11.el8.x86_64.rpm" + }, + "sha256:0aaaaa29cc1bb4d358142db6eb7d12df9252a8166bf61956203878eed210785c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libteam-1.31-2.el8.x86_64.rpm" + }, + "sha256:0b763d946ec7da165107258469e7655707caa6fde0fff49e9e89d747e13eacc1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nftables-0.9.3-17.el8.x86_64.rpm" + }, + "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/expat-2.2.5-4.el8.x86_64.rpm" + }, + "sha256:0c6624b9391a76c0f9e54c387641bd4ed079c3bfc30e8f890afc4203955b2acb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-1.8.4-17.el8.x86_64.rpm" + }, + "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-scripts-20200713-1.git51d1222.el8.noarch.rpm" + }, + "sha256:0caa72888379f82fae1bc8f448bcf0dbaead20e92f2ef4c714afadf8979c3181": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/biosdevname-0.7.3-2.el8.x86_64.rpm" + }, + "sha256:0e9a8a0f823bf0ef948862f0ccb62353460bd07931e756c98f23908c1c526578": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-decorator-4.2.1-2.el8.noarch.rpm" + }, + "sha256:0edde19e0c027c8cff31b82e1f4b0b198c00bf924047fcf4dd610a7d4965ab52": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pytz-2017.2-9.el8.noarch.rpm" + }, + "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-25-17.el8.x86_64.rpm" + }, + "sha256:0f817ea59939bdd0311c8da8369f5c037e340443198ccef659696f67bd2ddcd1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl3160-firmware-25.30.13.0-102.el8.1.noarch.rpm" + }, + "sha256:0feac495306bbe6e3149a352025bea8d23cda512859a230cbd3f510cf48caaf7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonschema-2.6.0-4.el8.noarch.rpm" + }, + "sha256:105beb1a237e66802e64e620f79b357dfc8f3bb8952ac2f293548f1d68ca40b1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libfastjson-0.99.8-2.el8.x86_64.rpm" + }, + "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cpio-2.12-10.el8.x86_64.rpm" + }, + "sha256:1230ddb5d92fe538a0526e3a9f05563a111ae4ff1978fc8e18de889974b5b46c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_autofs-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:142c67cdc69366820a7fc7567e40567b545b52f279d1ff992e4787d3c1ea4956": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-fs-2.24-5.el8.x86_64.rpm" + }, + "sha256:142d4fe6236cdeac3f967517085d99649215d75026fbe00746e0c5214d7d20df": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-policycoreutils-2.9-12.el8.noarch.rpm" + }, + "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-6.1-7.20180224.el8.x86_64.rpm" + }, + "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libblkid-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:15dc15a5be210707852f051f4d09949c063a7283edc7d4ca3d4289eedcc0b509": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gobject-base-3.28.3-2.el8.x86_64.rpm" + }, + "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-libs-25-17.el8.x86_64.rpm" + }, + "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/npth-1.5-4.el8.x86_64.rpm" + }, + "sha256:16b34582f757aebb9bc7b0a0475458cbb186238b5b528ef8fdb099cb739ba383": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-squash-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:16bb90f4105692da54369c59e5d4aea2e2e6ef7ab53a485b984f780c3c34d916": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pyasn1-0.3.7-6.el8.noarch.rpm" + }, + "sha256:173a812d859c70f8db7b014d507c5cacb76c62ab5480c44be217f880465f42c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-server-8.0p1-5.el8.x86_64.rpm" + }, + "sha256:176ffcb2cf0fdcbdd2d8119cbd98eef60a30fdb0fb065a9382d2c95e90c79652": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-chardet-3.0.4-7.el8.noarch.rpm" + }, + "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-c-0.13.1-0.4.el8.x86_64.rpm" + }, + "sha256:1824bc3233b76fabb2305d11bd9bc905cb8e8d7f44006f253164b64808be4b39": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libudisks2-2.9.0-6.el8.x86_64.rpm" + }, + "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-2.02-93.el8.x86_64.rpm" + }, + "sha256:185f36b3af9367e6142233af358df22f23ee623697bc6a45c47091013707872e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpath_utils-0.2.1-39.el8.x86_64.rpm" + }, + "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grubby-8.40-41.el8.x86_64.rpm" + }, + "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-5.3.28-40.el8.x86_64.rpm" + }, + "sha256:19ca7ab9cb2e39ec452ed1424f828ec464266094e31903301680d5a5d0e2ac2c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libmaxminddb-1.2.0-10.el8.x86_64.rpm" + }, + "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.6-26.el8.x86_64.rpm" + }, + "sha256:1b5187e9b694e439a059be58d8de5317f04278371d1195bf000b001ba8699197": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libldb-2.2.0-1.el8.x86_64.rpm" + }, + "sha256:1b53c868277dec628058b31b1a8a8a2ccd8efe832ce9694805b5f82564136eb3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-prettytable-0.7.2-14.el8.noarch.rpm" + }, + "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/freetype-2.9.1-5.el8.x86_64.rpm" + }, + "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kpartx-0.8.4-8.el8.x86_64.rpm" + }, + "sha256:1bd969e0521820374122f5132e5998d9bd2ab185be66565a7266096297419c8e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-configobj-5.0.6-11.el8.noarch.rpm" + }, + "sha256:1c4b186665558747023a60d0d662d3780a1bc49e578062f4b70100c71ab2220c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mokutil-0.3.0-11.el8.x86_64.rpm" + }, + "sha256:1d130b0daf86899c3987d59567303ce7ae44c3273f2d8d0f0625bef7e6bad16d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-base-6.1-7.20180224.el8.noarch.rpm" + }, + "sha256:20874a9d40b12125c9e5b97fe4ccda3f94acbc03da1dec7299123901f5b56631": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-oauthlib-2.1.0-1.el8.noarch.rpm" + }, + "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libunistring-0.9.9-3.el8.x86_64.rpm" + }, + "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-libs-1.1.1g-12.el8_3.x86_64.rpm" + }, + "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-3.5.0-1.el8.x86_64.rpm" + }, + "sha256:224100af3ecfc80c416796ec02c7c4dd113a38d42349d763485f3b42f260493f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnetfilter_conntrack-1.0.6-5.el8.x86_64.rpm" + }, + "sha256:226bb890cc85bfc60d874a9cb13cb7f7f1e90d90308c7726e25e14cee5487e66": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-crypto-2.24-5.el8.x86_64.rpm" + }, + "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/acl-2.2.53-1.el8.x86_64.rpm" + }, + "sha256:233e5f78027b684e5aaac1395cc574aea3039059bf86eb4494422bc74216a396": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-slip-0.6.4-11.el8.noarch.rpm" + }, + "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:2c63399bee449fb6e921671a9bbf3356fda73f890b578820f7d926202e98a479": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libaio-0.3.112-1.el8.x86_64.rpm" + }, + "sha256:2c6dd4f21d9c4bde29f693d32e44f0d1c5dc73d78d013767df531d69bbfc6ed8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_nss_idmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:2d4cf3bd8b8046adfa869fbb5b472294469457f6445db36abcc227959be9adeb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bind-export-libs-9.11.26-2.el8.x86_64.rpm" + }, + "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/filesystem-3.8-4.el8.x86_64.rpm" + }, + "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstdc++-8.4.1-1.el8.x86_64.rpm" + }, + "sha256:2e0b39dbf3b7e68a06f321a04797d4e521b9b484ffc8d6d53f7662613e077065": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-softokn-3.53.1-17.el8_3.x86_64.rpm" + }, + "sha256:2e8d4ee76fa8678b0e4d6c0297b16f96e0116201bf96b36e8924b1b080abcddd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-cli-3.5.0-1.el8.x86_64.rpm" + }, + "sha256:2ebe28be2e0a413af31a0f49b6a2774670067cdbe48e723040b19922ae205d6b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-cryptography-3.2.1-3.el8.x86_64.rpm" + }, + "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-pkcs11-0.4.10-2.el8.x86_64.rpm" + }, + "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-libs-239-44.el8.x86_64.rpm" + }, + "sha256:30fab73ee155f03dbbd99c1e30fe59dfba4ae8fdb2e7213451ccc36d6918bfcc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmnl-1.0.4-6.el8.x86_64.rpm" + }, + "sha256:3162a4a9159994002c3c6f5fe6a12160020e8f3484f1406ff5092311ca639548": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-langpack-en-2.28-147.el8.x86_64.rpm" + }, + "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sed-4.5-2.el8.x86_64.rpm" + }, + "sha256:34321e09964f724b712ed709115f794b1953f4a4d472d655bec0993d27c51a22": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nspr-4.25.0-2.el8_2.x86_64.rpm" + }, + "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gpg-1.13.1-7.el8.x86_64.rpm" + }, + "sha256:370b74a811249b8f0bdfcd34137507f058a85196775e9d0d2bb244c100d194ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_sudo-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:377ad20c1681518bff1f40884589bddc4a692506384c7676f072ddf86ae429f9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_idmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:3793552ff28a7026a6299d8d5d8d50a467f27654524c8e438e2058040d7e6d6c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl6050-firmware-41.28.5.1-102.el8.1.noarch.rpm" + }, + "sha256:37c05719442a1835c198884bbae6113dbcce36b5c809d2d9c9dacac72dce864d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/WALinuxAgent-udev-2.2.49.2-3.el8.noarch.rpm" + }, + "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pigz-2.4-4.el8.x86_64.rpm" + }, + "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdnf-0.55.0-2.el8.x86_64.rpm" + }, + "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libffi-3.1-22.el8.x86_64.rpm" + }, + "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-all-langpacks-2.28-147.el8.x86_64.rpm" + }, + "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-libs-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:39e27e147189e0e431527acfca51d9436149fe7c0fee1399289ea9a4862948cc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl6000-firmware-9.221.4.1-102.el8.1.noarch.rpm" + }, + "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-libs-1.18-1.el8.x86_64.rpm" + }, + "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libfdisk-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:3acd2c8b6ea534811308b3138859b5fa150b89604bb60f16b0650747039d696a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/irqbalance-1.4.0-6.el8.x86_64.rpm" + }, + "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gmp-6.1.2-10.el8.x86_64.rpm" + }, + "sha256:3c6650fd6e32fdc24b8cf1f7a85ae8232661b47bda7019e49fd0eb474683ff23": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hdparm-9.54-3.el8.x86_64.rpm" + }, + "sha256:3cd092e6e03efb4bb49b91dedd52b43f891092d04a2ff040b9f2197ec2082511": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/logrotate-3.14.0-4.el8.x86_64.rpm" + }, + "sha256:3cf4fcd2fe43e6477d5f1c05167c669c247dcbeea1ab37bf3b7d42dcab482565": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-2.24-5.el8.x86_64.rpm" + }, + "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ima-evm-utils-1.3.2-11.el8.x86_64.rpm" + }, + "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-4.4.2-5.el8.noarch.rpm" + }, + "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chkconfig-1.13-2.el8.x86_64.rpm" + }, + "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmartcols-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:3efd6a2548813167fe37718546bc768a5aa8ba59aa80edcecd8ba408bec329b0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/vim-minimal-8.0.1763-15.el8.x86_64.rpm" + }, + "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shared-mime-info-1.9-3.el8.x86_64.rpm" + }, + "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grep-3.1-6.el8.x86_64.rpm" + }, + "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/popt-1.18-1.el8.x86_64.rpm" + }, + "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dosfstools-4.1-6.el8.x86_64.rpm" + }, + "sha256:406aea2bb2a5f83cabee5a50bad08a3516776c3cd42db8b159f926624f61aa42": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libqmi-1.24.0-1.el8.x86_64.rpm" + }, + "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-release-8.4-1.el8.noarch.rpm" + }, + "sha256:41d9c9f8e17c83f73e51e90f02e08927bb9c836d033815c6cdddc6da44e321f0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-libnm-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:4280042747c9027c3252d360fa33d63490aa518858849115b20162a097a37146": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kexec-tools-2.0.20-45.el8.x86_64.rpm" + }, + "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-2.2.20-2.el8.x86_64.rpm" + }, + "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-1.2.0-2.el8.x86_64.rpm" + }, + "sha256:4302361b12eefd5574f57bf0c49c0e5bdc738eddda33634af8b35adfb53a52a1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/yum-4.4.2-5.el8.noarch.rpm" + }, + "sha256:436e93b4c072f8b6f90f41a037d017406be10c18efafc8c634f6da59bbac1105": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-libs-4.3.6-44.0.1.el8.x86_64.rpm" + }, + "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-common-2.28-147.el8.x86_64.rpm" + }, + "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-libs-6.1-7.20180224.el8.x86_64.rpm" + }, + "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tzdata-2021a-1.el8.noarch.rpm" + }, + "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcrypt-1.8.5-4.el8.x86_64.rpm" + }, + "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nettle-3.4.1-2.el8.x86_64.rpm" + }, + "sha256:44c659fb58e1ee64f5d77b35459dc43a0fded79c8a6e2278a2c9c71461792ff1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/plymouth-core-libs-0.9.4-9.20200615git1e36e30.el8.x86_64.rpm" + }, + "sha256:451d0cb6e2284578e3279b4cbb5ec98e9d98a687556c6b424adf8f1282d4ef58": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libsemanage-2.9-6.el8.x86_64.rpm" + }, + "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-libs-5.33-16.el8.x86_64.rpm" + }, + "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/unbound-libs-1.7.3-15.el8.x86_64.rpm" + }, + "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/basesystem-11-5.el8.noarch.rpm" + }, + "sha256:48bfe66d6f07baf1974355e8a3ebbc44f2d9812b823ddfff1c15f35635a8dc4e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efivar-libs-37-4.el8.x86_64.rpm" + }, + "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libacl-2.2.53-1.el8.x86_64.rpm" + }, + "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-3.14.3-62.el8.noarch.rpm" + }, + "sha256:4a28d9fa9785d7e8515deaf5e1a381a553c37b02a81a20ddd4fa202b33413ac9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-network-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:4c02e3e1808f0189269b242242468a364007a8f12c6e38afc24b599b2848b0fa": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/virt-what-1.18-6.el8.x86_64.rpm" + }, + "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-libs-3.7.0-1.el8.x86_64.rpm" + }, + "sha256:4c5c7f3773c634c054b0a5fc1b40d0a8448b44bb5aff410bfa88facf9e2059ff": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/parted-3.2-38.el8.x86_64.rpm" + }, + "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-3.7.0-1.el8.x86_64.rpm" + }, + "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtirpc-1.1.4-4.el8.x86_64.rpm" + }, + "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-config-0.9.4-2.el8.noarch.rpm" + }, + "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-rpm-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-utils-2.9-5.el8.x86_64.rpm" + }, + "sha256:508e9470ed648c28c1ef5a4a74072b188daa795f2369d10929f1ddbb5d3b5a3f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ModemManager-glib-1.10.8-2.el8.x86_64.rpm" + }, + "sha256:5092704c041bb246eaafd478bedface3f99ce8fa233ada5cf96807f67e980e42": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmbios-2.4.1-2.el8.x86_64.rpm" + }, + "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgomp-8.4.1-1.el8.x86_64.rpm" + }, + "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/curl-7.61.1-18.el8.x86_64.rpm" + }, + "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-pip-9.0.3-19.el8.noarch.rpm" + }, + "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-0.3.15-1.el8.x86_64.rpm" + }, + "sha256:525393e4d658e395c6280bd2ff4afe54999796c4722986325297ba4bfade3ea5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pyyaml-3.12-12.el8.x86_64.rpm" + }, + "sha256:53ae3ecd59ec61852cabbd039c748ed63ceb6a88da98587d4c33323ba4095154": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsysfs-2.1.0-24.el8.x86_64.rpm" + }, + "sha256:5452b96e4b57c275dd41e48d55af1ca4f77ccfb3ae403796e599a039d7382b91": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libbasicobjects-0.1.1-39.el8.x86_64.rpm" + }, + "sha256:563b3741d26b6af963fdb7b0634e0791445a707d0b6093ac71c3224299241639": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-slip-dbus-0.6.4-11.el8.noarch.rpm" + }, + "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libarchive-3.3.3-1.el8.x86_64.rpm" + }, + "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64.rpm" + }, + "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libdnf-0.55.0-2.el8.x86_64.rpm" + }, + "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.3.3-2.el8.x86_64.rpm" + }, + "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libibverbs-32.0-4.el8.x86_64.rpm" + }, + "sha256:59683b6fff42b40d3a3abbdeb928bb18b4cd84700aaeb9b3c76d37044ae94e01": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-ebtables-1.8.4-17.el8.x86_64.rpm" + }, + "sha256:59ba5bf69953a5a2e902b0f08b7187b66d84968852d46a3579a059477547d1a0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libselinux-2.9-5.el8.x86_64.rpm" + }, + "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-20200713-1.git51d1222.el8.noarch.rpm" + }, + "sha256:5b7763510f4badd05a1647e1fadf9dc49044b1cf4d754262d0d6d5ee9a8f3b12": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxmlb-0.1.15-1.el8.x86_64.rpm" + }, + "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxml2-2.9.7-9.el8.x86_64.rpm" + }, + "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-iniparse-0.4-31.el8.noarch.rpm" + }, + "sha256:5c0cf0adf7a3ad24ddde58f298ebf4ce741bccdfc8eff0103644115c837f80d6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/volume_key-libs-0.3.11-5.el8.x86_64.rpm" + }, + "sha256:5c68635cb03533a38d4a42f6547c21a1d5f9952351bb01f3cf865d2621a6e634": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lzo-2.08-14.el8.x86_64.rpm" + }, + "sha256:5c686be3533457b6ac047ac804aa54f74ee3a455047d3866dcef7a4da9d95fc6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl135-firmware-18.168.6.1-102.el8.1.noarch.rpm" + }, + "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hwdata-0.314-8.7.el8.noarch.rpm" + }, + "sha256:5e24dd39ae59ef7b7a386f28509cc80d8fabb23f0932e52ea365cf064ff76c59": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/numactl-libs-2.0.12-11.el8.x86_64.rpm" + }, + "sha256:5eb1eaf3f1a0df8477ed4d07cf309b55725a147419ad63e42d89294f7380cb31": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/WALinuxAgent-2.2.49.2-3.el8.noarch.rpm" + }, + "sha256:5f3d3d3b27b7df75738d1ee31112c60d39c54b8d7f92b6900606187f6cffce1d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chrony-3.5-1.el8.x86_64.rpm" + }, + "sha256:5f45a2ff1a9c9f3d4fcae463c1ca70b1a16caccc59816ce391f064c9d8b9d8ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:5f4f256128dba88a13599d6458908c24c0e9c18d8979ae44bf5734da8e7cab70": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jinja2-2.10.1-2.el8_0.noarch.rpm" + }, + "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxcrypt-4.1.1-4.el8.x86_64.rpm" + }, + "sha256:60b0cbc5e435be346bb06f45f3336f8936d7362022d8bceda80ff16bc3fb7dd2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonpointer-1.10-11.el8.noarch.rpm" + }, + "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/info-6.5-6.el8.x86_64.rpm" + }, + "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-libs-5.2.4-3.el8.x86_64.rpm" + }, + "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gpgme-1.13.1-7.el8.x86_64.rpm" + }, + "sha256:6327624b7b0d726a3c95f2245619efb1df8e70023fadcc8158afed39f57859e7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdhash-0.5.0-39.el8.x86_64.rpm" + }, + "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpsl-0.20.2-6.el8.x86_64.rpm" + }, + "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsepol-2.9-2.el8.x86_64.rpm" + }, + "sha256:638eb361523ce75963c8234fdeb6df8084a62e09a7ff5b00125b507955a28b28": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/firewalld-filesystem-0.8.2-6.el8.noarch.rpm" + }, + "sha256:63a6b7765828081cc88b36d10c68621acbebf02a7c2e7d7f1a1217c8742ea6ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-1.5.2-4.el8.x86_64.rpm" + }, + "sha256:657db08f58b6776f48fda17d2b734a26918b431253f9e4eba9fd5a46d9f89aef": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-tui-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pip-wheel-9.0.3-19.el8.noarch.rpm" + }, + "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.175-3.el8.x86_64.rpm" + }, + "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20180723-1.el8.noarch.rpm" + }, + "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcom_err-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:6710a1b2f28e5ffd0fff3e74a76d84d12a602be79703e53e1a55166f2f7d141c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fwupd-1.5.5-1.el8.x86_64.rpm" + }, + "sha256:67419432fe7d373f8e5ddaa7b0dd1c25389608bf2f4ee76dbabcc2d96eb8c9d0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-country-20180605-1.el8.noarch.rpm" + }, + "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-smime-2.2.20-2.el8.x86_64.rpm" + }, + "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-0.23.22-1.el8.x86_64.rpm" + }, + "sha256:6aa1e29a4d805fc36c3196788fe78cb4552e2ebec8b3d0f8d32974e6a97025f2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-perf-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:6b740563ba5858573ff3c2d2a827aeaf6e7166178e36066755d2cde4cf8a016f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libref_array-0.1.5-39.el8.x86_64.rpm" + }, + "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsemanage-2.9-6.el8.x86_64.rpm" + }, + "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sqlite-libs-3.26.0-13.el8.x86_64.rpm" + }, + "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-libs-2.9.7-12.el8.x86_64.rpm" + }, + "sha256:6cd7444c22d56201f61fed5fd741b44cfaae18d95b811d25c5f0ffe2f8e55a8f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-kcm-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gzip-1.9-12.el8.x86_64.rpm" + }, + "sha256:6f699a1e24a6bb76904ef1a588e3b3ef116cad07a5cbad86c6cdb522c00670dd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipset-libs-7.1-1.el8.x86_64.rpm" + }, + "sha256:708a8fd75f7c6987d66e2d62de664b5a84c6f75fd4e5230e244681897b15a25d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcollection-0.7.0-39.el8.x86_64.rpm" + }, + "sha256:70b5e4e580da72969ad3bb144c15293910b7d679e195c118cee60d8320f01851": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuser-0.62-23.el8.x86_64.rpm" + }, + "sha256:7115a12fad224b469419e19ee5c0d38322f467fe7a1c441c1b0239b197baac2a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-nfs-idmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tpm2-tss-2.3.2-3.el8.x86_64.rpm" + }, + "sha256:71fbed9d1b1f6965b42a5c87c98732bed84a8a2efb43c2218b4d1c59e9eaf190": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-sysinit-3.53.1-17.el8_3.x86_64.rpm" + }, + "sha256:71fcbbec3aa152bc1427cb4d597375b008438f6259b20cfcb68fff21eef80f91": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-anacron-1.5.2-4.el8.x86_64.rpm" + }, + "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libelf-0.182-3.el8.x86_64.rpm" + }, + "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libevent-2.1.8-5.el8.x86_64.rpm" + }, + "sha256:74b842ba3352d7c4ada7e991aeadf8749f058a4d00ccc6f79f1c82a281497cb7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iputils-20180629-6.el8.x86_64.rpm" + }, + "sha256:760141c74870a93505dbba2174034287b6a97b9bb2b12c5ca2b7af056773b45b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-config-generic-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-1.18-1.el8.x86_64.rpm" + }, + "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-targeted-3.14.3-62.el8.noarch.rpm" + }, + "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-239-44.el8.x86_64.rpm" + }, + "sha256:774d214a379c0b729d7e989f9d5094fdfda7df68c1e792ba9200542032f04c91": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-libs-1.44-5.el8.x86_64.rpm" + }, + "sha256:776a182ecaab9f86c7e869db2eb2deea1f291caee701cddbd752da8cd3c57458": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/prefixdevname-0.1.0-6.el8.x86_64.rpm" + }, + "sha256:7800dfd0d4769a898d11db330fdb5b19614533628a45fe91cce406d6cd1f0c71": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cloud-utils-growpart-0.31-1.el8.noarch.rpm" + }, + "sha256:78c43d8a15ca018de1803e4baac5819e1baab1963fd31f1e44e54e8a573acbfc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-idna-2.5-5.el8.noarch.rpm" + }, + "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodulemd-2.9.4-2.el8.x86_64.rpm" + }, + "sha256:79277d872ae6035009a1a40e914ec09bca21aefcac9d73dee65880c86387f3c9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-efi-x64-2.02-93.el8.x86_64.rpm" + }, + "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openldap-2.4.46-16.el8.x86_64.rpm" + }, + "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-data-4.4.2-5.el8.noarch.rpm" + }, + "sha256:7a7963e2052bfb45b8569f64619dc5cb92fe8aeb78c754b7cf948b9784646785": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hostname-3.20-6.el8.x86_64.rpm" + }, + "sha256:7bc2e2a25b04b52a4ec5de2858e75eb07f16495d4de5f7ce926777130302cfe3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libestr-0.1.10-1.el8.x86_64.rpm" + }, + "sha256:7bfc1981e5e1fd706c23ba10090dd05fb0828df11aa98a3dc89ee8b1d2663f7a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/firewalld-0.8.2-6.el8.noarch.rpm" + }, + "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libzstd-1.4.4-1.el8.x86_64.rpm" + }, + "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-libs-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libidn2-2.2.0-1.el8.x86_64.rpm" + }, + "sha256:7e2804a4494d4179ed50c0c99da1e30c3a6abf8db889c1412b458943cff0e3e5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gobject-introspection-1.56.1-1.el8.x86_64.rpm" + }, + "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libusbx-1.0.23-4.el8.x86_64.rpm" + }, + "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:7ec48db9e1e9896f29a16cbea53cdeecdd7dd2bc278c06721ebca2e71e9dcd6d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-common-4.3.6-44.0.1.el8.noarch.rpm" + }, + "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libs-3.6.8-36.el8.x86_64.rpm" + }, + "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpcap-1.9.1-5.el8.x86_64.rpm" + }, + "sha256:7f506879c64e0bb4d98782d025f46fb9a07517487ae4cbebbb3985a98f4e2154": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pysocks-1.6.8-3.el8.noarch.rpm" + }, + "sha256:7fa8fbc576f7d54c388fa39fc3ed86bacb7964cac4544c48b3ffabcdcdc27b61": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/initscripts-10.00.12-1.el8.x86_64.rpm" + }, + "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-hmaccalc-1.2.0-2.el8.x86_64.rpm" + }, + "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/findutils-4.6.0-20.el8.x86_64.rpm" + }, + "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcurl-7.61.1-18.el8.x86_64.rpm" + }, + "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-0.19.8.1-17.el8.x86_64.rpm" + }, + "sha256:82ce159a9e4e4b6b4fdce9ad954aa507f67108430bd261a4dcd826e44d0152a4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pyserial-3.1.1-8.el8.noarch.rpm" + }, + "sha256:82e27237686171b812aee7903c11ec4f8dbdb6544e419758fb0fbd61731044b0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipset-7.1-1.el8.x86_64.rpm" + }, + "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/util-linux-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libcomps-0.1.11-5.el8.x86_64.rpm" + }, + "sha256:839c62cd7fc7e152decded6f28c80b5f7b8f34a5e319057867b38b26512cee67": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/snappy-1.1.8-3.el8.x86_64.rpm" + }, + "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-gpg-keys-8-2.el8.noarch.rpm" + }, + "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgpg-error-1.31-1.el8.x86_64.rpm" + }, + "sha256:85eb614fc608f3b3f4bbd08d4a3b0ff6af188677ea4e009be021680c521cedae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonpatch-1.21-2.el8.noarch.rpm" + }, + "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcroco-0.6.12-4.el8_2.1.x86_64.rpm" + }, + "sha256:8852282172440cd618c695356449cbc035be4091b2a0833c785c8e42cc1df0e6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnfsidmap-2.3.3-41.el8.x86_64.rpm" + }, + "sha256:8891a9a4707611c13a5693b195201dd940254ffdb03cf5742952329282bb8cb7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pycparser-2.14-14.el8.noarch.rpm" + }, + "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-2.9-5.el8.x86_64.rpm" + }, + "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-udev-239-44.el8.x86_64.rpm" + }, + "sha256:8d3bdefac6c0f39e66e092d62b37efa3076976ae66def1f9dd1f217022406efa": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-swap-2.24-5.el8.x86_64.rpm" + }, + "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:8d6742dce47f8ed65e222864872e919f30c678f5df1e99c134fba8a0fc7f454d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-libs-0.115-11.el8.x86_64.rpm" + }, + "sha256:8e4f8fed6f2fdf05e85fc84023778dbf23e09f1dc2f6a0940860886d3f59831b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/plymouth-0.9.4-9.20200615git1e36e30.el8.x86_64.rpm" + }, + "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libss-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-2.28-147.el8.x86_64.rpm" + }, + "sha256:918518368513d162d772dfc5d16536ad2799276bcba2f47514a1c7098de2b43f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtalloc-2.3.1-2.el8.x86_64.rpm" + }, + "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/os-prober-1.74-6.el8.x86_64.rpm" + }, + "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-unbound-1.7.3-15.el8.x86_64.rpm" + }, + "sha256:941a9068b8fa524ecac58d37f941b95fbdcd9e38bd87c7f9d1330c5925a52a20": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-plugins-core-4.0.18-3.el8.noarch.rpm" + }, + "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-setuptools-39.2.0-6.el8.noarch.rpm" + }, + "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-1.02.175-3.el8.x86_64.rpm" + }, + "sha256:947fee92d0c147d832bbb3ab53e0b96817d03c38260429a4ff01856324b160da": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-util-3.53.1-17.el8_3.x86_64.rpm" + }, + "sha256:9664aba8dfd6bd6fda669fcf8f6ff04914305a6373b09d8b675322c7337b9c36": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/teamd-1.31-2.el8.x86_64.rpm" + }, + "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre-8.42-4.el8.x86_64.rpm" + }, + "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libseccomp-2.4.3-1.el8.x86_64.rpm" + }, + "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuuid-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lua-libs-5.3.4-11.el8.x86_64.rpm" + }, + "sha256:98a6386df94fc9595365c3ecbc630708420fa68d1774614a723dec4a55e84b9c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-glib-1.4.4-1.el8.x86_64.rpm" + }, + "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-common-1.12.8-12.el8.noarch.rpm" + }, + "sha256:98f622a37cb22857fdce63d8c97d9711c74cdbd3451e588e2b519532db55a5a2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/udisks2-2.9.0-6.el8.x86_64.rpm" + }, + "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pinentry-1.1.0-2.el8.x86_64.rpm" + }, + "sha256:9c7a5a6f73c8e32559226c54d229cb25304a81a853af22d9f829b9bb09b21f53": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-markupsafe-0.23-19.el8.x86_64.rpm" + }, + "sha256:9c849b1d4fd605ae749fd9d090715b6034520af871c23729cd4003f22e0990de": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/passwd-0.80-3.el8.x86_64.rpm" + }, + "sha256:9d160cdfba107ddc0613e169311bf57077c04e71a052a57704f3bdb64729d565": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/c-ares-1.13.0-5.el8.x86_64.rpm" + }, + "sha256:9dbf3ceb7de5a727f1a36edd5add73dcd96c83f24afc81d78e254b518551da96": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-babel-2.5.1-5.el8.noarch.rpm" + }, + "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/setup-2.12.2-6.el8.noarch.rpm" + }, + "sha256:9e78ec1230b9ec69ef8e3ad0484cbe3b5c36cfc214d90f890a49093b22df2948": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bubblewrap-0.4.0-1.el8.x86_64.rpm" + }, + "sha256:9eb9c1a67c5be04487cc133bdb8498eaf260e4d930a0143d2e1aa772e3d6cf64": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpipeline-1.5.0-2.el8.x86_64.rpm" + }, + "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-common-2.02-93.el8.noarch.rpm" + }, + "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libattr-2.4.48-3.el8.x86_64.rpm" + }, + "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-six-1.11.0-8.el8.noarch.rpm" + }, + "sha256:a06e1d34df03aaf429d290d5c281356fefe0ad510c229189405b88b3c0f40374": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/jansson-2.11-3.el8.x86_64.rpm" + }, + "sha256:a0b6a8d5530f5003f5c8d56211246cd1130a5b4dc1396dc50da70ce0e128b02c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/man-db-2.7.6.1-17.el8.x86_64.rpm" + }, + "sha256:a0c8f83cef355dd98d7750e3d8eb3e9f3e9f8f5e9a3ee441cb4bc4014c647e31": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/squashfs-tools-4.3-19.el8.x86_64.rpm" + }, + "sha256:a1d1bac6c4710e0a1a6e8a507b06a630dda6687f12642be0847768c14ce7271e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-1.44-5.el8.x86_64.rpm" + }, + "sha256:a217b0fbe9757a0225b66d16c1668cdf5cb2aa69c68b89e79783abd507f2e7bf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-libs-1.2.2-1.el8.x86_64.rpm" + }, + "sha256:a2418e8e12144d4e84965298e7bbefedc876c0d0d93771afb9b5c6c2eb139dc0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pip-9.0.3-19.el8.noarch.rpm" + }, + "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xkeyboard-config-2.28-1.el8.noarch.rpm" + }, + "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcomps-0.1.11-5.el8.x86_64.rpm" + }, + "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-legacy-2.0.4-10.el8.noarch.rpm" + }, + "sha256:a456039834ccc5432949120f1d80b18329b552cf44d1b59ea1b60d2192e7bc5c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iproute-5.9.0-2.el8.x86_64.rpm" + }, + "sha256:a5228fc876cffc7dc79769ada5653cb9bfb80d469fb3c9f0acc14a1a0d15782d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtdb-1.4.3-1.el8.x86_64.rpm" + }, + "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-minimal-2.02-93.el8.x86_64.rpm" + }, + "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/zlib-1.2.11-17.el8.x86_64.rpm" + }, + "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xfsprogs-5.0.0-8.el8.x86_64.rpm" + }, + "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-repos-8-2.el8.noarch.rpm" + }, + "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-common-8.30-8.el8.x86_64.rpm" + }, + "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:a9ec13abf63c69913acc1ac7070ab315c8b5a58c6006c3dfc5b27662f7f22260": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-clients-8.0p1-5.el8.x86_64.rpm" + }, + "sha256:aa0007192287faeaecc72d9fa48efdb3108c764d450dc8fea65474476da32c45": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pyudev-0.21.0-7.el8.noarch.rpm" + }, + "sha256:aa1835fd302a37b84ac256db5dd0de09bd9883a5a07775aedb491faf46b18ee0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-urllib3-1.24.2-5.el8.noarch.rpm" + }, + "sha256:aa938dc6f13d0d57ca811b8c299b1017723fa419997b87754f74db770430c2d9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-3.6.8-36.el8.x86_64.rpm" + }, + "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnutls-3.6.14-7.el8_3.x86_64.rpm" + }, + "sha256:ab1be3dcea74c7a7fac49f9a1cad4113fded2d3edabb61b29ed8489a737033fe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-libs-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:ab7bc1a828168006b88934bea949ab2b29b837b0a431f7da1a12147f64f6ddb5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgusb-0.3.0-1.el8.x86_64.rpm" + }, + "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcc-8.4.1-1.el8.x86_64.rpm" + }, + "sha256:addf80c52d794aed47874eb9d5ddbbaa90cb248fda1634d793054a41da0d92d7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-audit-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm" + }, + "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-libs-0.19.8.1-17.el8.x86_64.rpm" + }, + "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-libs-1.5.10-6.el8.x86_64.rpm" + }, + "sha256:b00855013100d3796e9ed6d82b1ab2d4dc7f4a3a3fa2e186f6de8523577974a0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/groff-base-1.22.3-18.el8.x86_64.rpm" + }, + "sha256:b0149d85f0172e98866ff2483660af2cf6c6fa0c8f9cab2c51cc2af479c9e319": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm" + }, + "sha256:b06fa62d0a585a7bc3b9d3341923736b3ee4b6cc6d7ca83bebcb97225ca86ac9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libini_config-1.3.1-39.el8.x86_64.rpm" + }, + "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shadow-utils-4.6-12.el8.x86_64.rpm" + }, + "sha256:b1871d8ac1abaf5e809448c5f37e32487f177aee3080d9033efb4b160f755aba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-client-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-39.2.0-6.el8.noarch.rpm" + }, + "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-tools-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:b2cd2dc5cf9c1c118053e7e650c6d910b1d37e810a38d90de27d80a04b702e39": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dmidecode-3.2-8.el8.x86_64.rpm" + }, + "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pam-1.3.1-14.el8.x86_64.rpm" + }, + "sha256:b3bc3f1c9e8028a177599f1ed9cb6c31d2d6e75111e34623d25e736d3ddcf8fd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tuned-2.15.0-1.el8.noarch.rpm" + }, + "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libassuan-2.5.1-3.el8.x86_64.rpm" + }, + "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsolv-0.7.16-2.el8.x86_64.rpm" + }, + "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/librepo-1.12.0-3.el8.x86_64.rpm" + }, + "sha256:b6e327a5fca1efc26c920c42d104dbdafd9e4676681bbd1f28dab81c51677db8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl2030-firmware-18.168.6.1-102.el8.1.noarch.rpm" + }, + "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-hawkey-0.55.0-2.el8.x86_64.rpm" + }, + "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib2-2.56.4-9.el8.x86_64.rpm" + }, + "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-1.1.1g-12.el8_3.x86_64.rpm" + }, + "sha256:b8e4cfecbbe7d2d6d9f3003432e826398f6bea21d5aba11a17ee74358cb84a6e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtevent-0.10.2-2.el8.x86_64.rpm" + }, + "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libreport-filesystem-2.9.5-15.el8.x86_64.rpm" + }, + "sha256:bafc2680bd298f0fac70854224ef03b7098d4c46ee35e270f6fd58d2e812ff1b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-schedutils-0.6-6.el8.x86_64.rpm" + }, + "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lz4-libs-1.8.3-2.el8.x86_64.rpm" + }, + "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gawk-4.2.1-2.el8.x86_64.rpm" + }, + "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-ng-0.7.9-5.el8.x86_64.rpm" + }, + "sha256:bce152ddd2f05f892e5ce483a7c12606ba7d2c42108402fc9609ada04048e6df": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/microcode_ctl-20201112-2.el8.x86_64.rpm" + }, + "sha256:bcf25aae89f7368b16346bc1ec92850175bcc2312bf7a5e74bc3c512bcd345b0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crontabs-1.11-17.20190603git.el8.noarch.rpm" + }, + "sha256:be0181770c94141852b6bb618baf56e7b8df9f70524b0c2e0e391e550285231f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-utils-2.24-5.el8.x86_64.rpm" + }, + "sha256:be628d396303d6547b9d7239897fbf4fad7447375cb5e898b394a458f420b550": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/slang-2.3.2-3.el8.x86_64.rpm" + }, + "sha256:bfbd05db004755c45f7ec31be67b02d9c7fa0c9b1bb060bb2ffe85b3f2b5d811": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/plymouth-scripts-0.9.4-9.20200615git1e36e30.el8.x86_64.rpm" + }, + "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hardlink-1.3-6.el8.x86_64.rpm" + }, + "sha256:c11eba3a7ae0ee7ceaea4bbf78edf9a1c3c5d9629b3f40167f5fb8004b2c19a0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-3.53.1-17.el8_3.x86_64.rpm" + }, + "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-2.9-12.el8.x86_64.rpm" + }, + "sha256:c1bb77ed45ae47dc068445c6dfa4b70b273a3daf8cd82b9fa7a50e3d59abe3c1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnftnl-1.1.5-4.el8.x86_64.rpm" + }, + "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-build-libs-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/krb5-libs-1.18.2-8.el8.x86_64.rpm" + }, + "sha256:c357a350aa169402db3c898c7edcfee333e1d11a44f62bbeaba3fd3d2f31644d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libndp-1.7-3.el8.x86_64.rpm" + }, + "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmetalink-0.1.3-7.el8.x86_64.rpm" + }, + "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-5.el8.x86_64.rpm" + }, + "sha256:c44dbbff4fe503f5f49b71ab17db7848c6c67fe19d9a4cc6cef59cc6dd15f1a6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:c4a5df7ec884bdcc929e73e066c7def89cfb8cf53306ffcf9f33a5c9e4ae84c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-plugins-core-4.0.18-3.el8.noarch.rpm" + }, + "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/diffutils-3.6-6.el8.x86_64.rpm" + }, + "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-1.el8.x86_64.rpm" + }, + "sha256:c56cde3b8bc11965fa73b9baf59ab5fa7f6a45a950d5b6b369cf4679c17295ca": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/net-tools-2.0-0.52.20160912git.el8.x86_64.rpm" + }, + "sha256:c5b5967a094ced90899052a82e2c245529b75ba3f46e0ce1a89cfc95edb935ea": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dateutil-2.6.1-6.el8.noarch.rpm" + }, + "sha256:c6f27b6e01d80e756408e3c1451e4af00e7d02da0aa24402644c0785118753fe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-39.2.0-6.el8.noarch.rpm" + }, + "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libutempter-1.1.6-14.el8.x86_64.rpm" + }, + "sha256:c8fc05dd997477fc80e2f3195e719ca2e569fc8997f05a64a13c52c8358e8239": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lsscsi-0.32-2.el8.x86_64.rpm" + }, + "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-modules-2.02-93.el8.noarch.rpm" + }, + "sha256:c99db07c2548246f6b2ec98c1d2b536e40b2f4dbba39f3430044868a27985732": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/langpacks-en-1.0-12.el8.noarch.rpm" + }, + "sha256:c9df7c58da59500e1717e435c565e221daa344212db8e83eb33b6a9c8e9a67bb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/newt-0.52.20-11.el8.x86_64.rpm" + }, + "sha256:ca82090f18d47e454cc512e832bf3ec771edf65299e3c1d56d5df9fab0428869": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/rsyslog-8.1911.0-7.el8.x86_64.rpm" + }, + "sha256:cad76a2802c5f355b527df3cabde70bd58b31ec4b7de3b1ac15a429cda5b9b03": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/linux-firmware-20201218-102.git05789708.el8.noarch.rpm" + }, + "sha256:cad86777bcb265db0da766952ff63e8d33f0fd4f3b90b22d0a1da587a785db44": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-city-20180605-1.el8.noarch.rpm" + }, + "sha256:cb5072917ce75dbde8fe474fa872db85da5dbac59cc1eb4a9125e7b6280f254e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-1.2.2-1.el8.x86_64.rpm" + }, + "sha256:cb6b773c2ac78142736abd8a8f9eaac122f4647aefd3f003a615baf79abbefbb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgudev-232-4.el8.x86_64.rpm" + }, + "sha256:cbcade4487fbf372b487b9f82ed85e04ff037551c96c4b461abc3716338ff9c4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sudo-1.8.29-7.el8.x86_64.rpm" + }, + "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpng-1.6.34-5.el8.x86_64.rpm" + }, + "sha256:cdd8e0a970aaaa23637f553692d755a0f57282c4494d31094638b6d4633ec523": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl105-firmware-18.168.6.1-102.el8.1.noarch.rpm" + }, + "sha256:cec98aa5fbefcb99715921b493b4f92d34c4eeb823e9c8741aa75e280def89f1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnfnetlink-1.0.1-13.el8.x86_64.rpm" + }, + "sha256:ced1d02dd424b1d087347d452420e17ba83af2b926041c794471798dfa5f5868": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-mdraid-2.24-5.el8.x86_64.rpm" + }, + "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-2.26-4.el8.x86_64.rpm" + }, + "sha256:cff4bc30873c62698e4bc2f519bb0aa6814534d7ce99f1ba757dd345b881505f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-softokn-freebl-3.53.1-17.el8_3.x86_64.rpm" + }, + "sha256:d01c5733267171fc234d7ab5387c17cb61e9fdec8f9eb792ea63c8ffb5bafb6c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl2000-firmware-18.168.6.1-102.el8.1.noarch.rpm" + }, + "sha256:d1cc79976965be3fe769cb8c23a281064816eaa195caf6057b8d1da0e9ff7ae5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libbytesize-1.4-3.el8.x86_64.rpm" + }, + "sha256:d1e8c7a00924d1a6dee44ade189025853a501d4f77c73f3bfc006aa907d97daf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-ply-3.9-9.el8.noarch.rpm" + }, + "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-trust-0.23.22-1.el8.x86_64.rpm" + }, + "sha256:d29207af6ff12bec1a5b9712550f2faf7efbff75c597cc2e84b6c9d0dfe2de68": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-loop-2.24-5.el8.x86_64.rpm" + }, + "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-2.02-93.el8.x86_64.rpm" + }, + "sha256:d5c283da0d2666742635754626263f6f78e273cd46d83d2d66ed43730a731685": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/checkpolicy-2.9-1.el8.x86_64.rpm" + }, + "sha256:d655ee126614010e72bac89b7ecaf38b515647181a22940cb774647442d28beb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efi-filesystem-3-3.el8.noarch.rpm" + }, + "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-0.9.4-2.el8.x86_64.rpm" + }, + "sha256:d7ae9cdbdd754c544d766c8e9748f24f580cd3a4c7c6c4d6203060e966299723": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl5000-firmware-8.83.5.1_1-102.el8.1.noarch.rpm" + }, + "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmount-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:d967d6bbb33bf7a295a64807f81875c84e82a8ecc59b6c72fe955141b1660d39": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rootfiles-8.1-22.el8.noarch.rpm" + }, + "sha256:d9acc32cf03ac203066bfa8d6d3f71eaedbad719f3ffc5056a387b548ae958e8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iprutils-2.4.19-1.el8.x86_64.rpm" + }, + "sha256:d9d8c21ad40e59b78008f1a569039462e5654a9d4bb08d84cf032e34cf7bde62": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcab1-1.1-1.el8.x86_64.rpm" + }, + "sha256:d9fcdf78bae8bf3f3e7d469686a07fdb337567a7f6159397eee990730eb8cd11": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-firewall-0.8.2-6.el8.noarch.rpm" + }, + "sha256:da77940ecadc9edb5d14aad51e4bf06664e5763fe6e46b20364732ec3aa2e08a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:dae52ddd215b506d1805b66873194df5043fd758d42960dee68f029eab329b42": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdaemon-0.14-15.el8.x86_64.rpm" + }, + "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-2.9.6-15.el8.x86_64.rpm" + }, + "sha256:dbded0760a358f62ec416ce37ffd764c725f8e898479b17173e632debc1a06ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl5150-firmware-8.24.2.2-102.el8.1.noarch.rpm" + }, + "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-libs-1.8.4-17.el8.x86_64.rpm" + }, + "sha256:dc4f0cc77cf4c89469cf0f9c88b52f2c8c2c35f4e6d714bbdae2083440483311": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cloud-init-20.3-10.el8.noarch.rpm" + }, + "sha256:dc835194ecfa6ebda81e0a764c953eff3422a61863e9a3e0dc74ea4cae7a4d94": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-linux-procfs-0.6.3-1.el8.noarch.rpm" + }, + "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ca-certificates-2020.2.41-80.0.el8_2.noarch.rpm" + }, + "sha256:dea18976861575d40ffca814dee08a225376c7828a5afc9e5d0a383edd3d8907": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipcalc-0.2.4-4.el8.x86_64.rpm" + }, + "sha256:df417aae69f2ba5bd4324a14dcfd30dfbfefba440085bbf916c5ef19286cba20": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python36-3.6.8-2.module_el8.4.0+666+456f5f48.x86_64.rpm" + }, + "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bash-4.4.19-14.el8.x86_64.rpm" + }, + "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-utils-5.3.28-40.el8.x86_64.rpm" + }, + "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.182-3.el8.x86_64.rpm" + }, + "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxkbcommon-0.9.1-1.el8.x86_64.rpm" + }, + "sha256:e0564d34fde9cf1a42e0fd4ba81ea7ce71bcca8823186f0221e56994bef275c6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl100-firmware-39.31.5.1-102.el8.1.noarch.rpm" + }, + "sha256:e1133a81512bfba8d4bf06bc12aafee7fe13d6319fc8690b81e6f46d978930eb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libatasmart-0.19-14.el8.x86_64.rpm" + }, + "sha256:e1a85d0f6b23482247c81c449d87749cdc8e6b7df737b39aba170634b644da0f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-nftables-0.9.3-17.el8.x86_64.rpm" + }, + "sha256:e2549a249d537f80f6595816a1094532c3feb0a730585d102c580583cc1dfde4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmbim-1.20.2-1.el8.x86_64.rpm" + }, + "sha256:e308e1ebc85889742a002fd9892d71894fd6fae473320fbc7b1ffb94248602cd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-part-2.24-5.el8.x86_64.rpm" + }, + "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/brotli-1.0.6-3.el8.x86_64.rpm" + }, + "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libksba-1.3.5-7.el8.x86_64.rpm" + }, + "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm" + }, + "sha256:e7ee4b6d6456cb7da0332f5a6fb8a7c47df977bcf616f12f0455413765367e89": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-pkla-compat-0.1-12.el8.x86_64.rpm" + }, + "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mpfr-3.1.6-1.el8.x86_64.rpm" + }, + "sha256:e8594d934926d149266098dbb6686b604caa4d8255895ebd732d55ca4e7f0248": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl7260-firmware-25.30.13.0-102.el8.1.noarch.rpm" + }, + "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtasn1-4.13-3.el8.x86_64.rpm" + }, + "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-4.4.2-5.el8.noarch.rpm" + }, + "sha256:ebeb05a4a9cdd5d060859eabac1349029c0120615c98fc939e26664c030655c1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-jwt-1.6.1-2.el8.noarch.rpm" + }, + "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tar-1.30-5.el8.x86_64.rpm" + }, + "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/which-2.21-12.el8.x86_64.rpm" + }, + "sha256:ef2734017b25f7e9e1abf67315a7d1c97216642b5dfb979c19b1a3f74cff1e54": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_certmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-misc-2.0.4-10.el8.noarch.rpm" + }, + "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/memstrack-0.1.11-1.el8.x86_64.rpm" + }, + "sha256:f0346c485da9a7e8c8d93624f335cbb25790a7f37c6c03e43232517bb73bbacb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shim-x64-15-15.el8_2.x86_64.rpm" + }, + "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rdma-core-32.0-4.el8.x86_64.rpm" + }, + "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-extra-2.02-93.el8.x86_64.rpm" + }, + "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-15.el8.x86_64.rpm" + }, + "sha256:f56992135d789147285215cb062960fedcdf4b3296c62658fa430caa2c20165c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setools-4.3.0-2.el8.x86_64.rpm" + }, + "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/procps-ng-3.3.15-6.el8.x86_64.rpm" + }, + "sha256:f60f24ba76f7f9d9f42421153d296a279fb616165a27cf2c71657a901a425bb1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-team-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:f6f7907ccf8faa83a93e6d48801970aa45181a3a3c05ad7102b540a07534e318": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/qemu-img-4.2.0-35.module_el8.4.0+547+a85d02ba.x86_64.rpm" + }, + "sha256:f7e6debd0279cb07f0c805d90b707c187bb55b9ee34643898eec800b79fa6b1b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ethtool-5.8-5.el8.x86_64.rpm" + }, + "sha256:f86fec6c6a844fbbfbf7c806d79dd7e72e4eef9c804472547a6d3ecf34cddca6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-glib-0.110-2.el8.x86_64.rpm" + }, + "sha256:f8bdaf5211c6fc72c8f60c7ddd59b8ca124ab26d2670ee6490a7fabb5177d919": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-8.0p1-5.el8.x86_64.rpm" + }, + "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsecret-0.18.6-1.el8.x86_64.rpm" + }, + "sha256:f94172554b8ceeab97b560d0b05c2e2df4b2e737471adce6eca82fd3209be254": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/less-530-1.el8.x86_64.rpm" + }, + "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-0.3.0-5.el8.x86_64.rpm" + }, + "sha256:fa0b90c4da7f7ca8bf40055be5641a2c57708931fec5f760a2f8944325669fe9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdisk-1.0.3-6.el8.x86_64.rpm" + }, + "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre2-10.32-2.el8.x86_64.rpm" + }, + "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-daemon-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:fda078d8edd4e0902246dd3121efb6c57cb8231dbb975380f9249c64163f0d88": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lshw-B.02.19.2-5.el8.x86_64.rpm" + }, + "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-8.30-8.el8.x86_64.rpm" + }, + "sha256:fe944d9dd89d550d2aa44d33cfeb11c803b074bfcda0dbbad486c392bf1cc9d0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-common-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/readline-7.0-10.el8.x86_64.rpm" + }, + "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-pam-239-44.el8.x86_64.rpm" + }, + "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-lib-0.3.15-1.el8.x86_64.rpm" + } + } + } + }, + "pipeline": { + "build": { + "pipeline": { + "stages": [ + { + "name": "org.osbuild.rpm", + "options": { + "gpgkeys": [ + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n" + ], + "packages": [ + { + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "checksum": "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af", + "check_gpg": true + }, + { + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "checksum": "sha256:2c63399bee449fb6e921671a9bbf3356fda73f890b578820f7d926202e98a479", + "check_gpg": true + }, + { + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "checksum": "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178", + "check_gpg": true + }, + { + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "checksum": "sha256:c6f27b6e01d80e756408e3c1451e4af00e7d02da0aa24402644c0785118753fe", + "check_gpg": true + }, + { + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "checksum": "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393", + "check_gpg": true + }, + { + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "checksum": "sha256:a2418e8e12144d4e84965298e7bbefedc876c0d0d93771afb9b5c6c2eb139dc0", + "check_gpg": true + }, + { + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "checksum": "sha256:df417aae69f2ba5bd4324a14dcfd30dfbfefba440085bbf916c5ef19286cba20", + "check_gpg": true + }, + { + "checksum": "sha256:f6f7907ccf8faa83a93e6d48801970aa45181a3a3c05ad7102b540a07534e318", + "check_gpg": true + }, + { + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ] + } + }, + { + "name": "org.osbuild.selinux", + "options": { + "file_contexts": "etc/selinux/targeted/contexts/files/file_contexts" + } + } + ] + }, + "runner": "org.osbuild.centos8" + }, + "stages": [ + { + "name": "org.osbuild.rpm", + "options": { + "gpgkeys": [ + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n" + ], + "packages": [ + { + "checksum": "sha256:508e9470ed648c28c1ef5a4a74072b188daa795f2369d10929f1ddbb5d3b5a3f", + "check_gpg": true + }, + { + "checksum": "sha256:1d130b0daf86899c3987d59567303ce7ae44c3273f2d8d0f0625bef7e6bad16d", + "check_gpg": true + }, + { + "checksum": "sha256:41d9c9f8e17c83f73e51e90f02e08927bb9c836d033815c6cdddc6da44e321f0", + "check_gpg": true + }, + { + "checksum": "sha256:f60f24ba76f7f9d9f42421153d296a279fb616165a27cf2c71657a901a425bb1", + "check_gpg": true + }, + { + "checksum": "sha256:657db08f58b6776f48fda17d2b734a26918b431253f9e4eba9fd5a46d9f89aef", + "check_gpg": true + }, + { + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "checksum": "sha256:b0149d85f0172e98866ff2483660af2cf6c6fa0c8f9cab2c51cc2af479c9e319", + "check_gpg": true + }, + { + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "checksum": "sha256:cb5072917ce75dbde8fe474fa872db85da5dbac59cc1eb4a9125e7b6280f254e", + "check_gpg": true + }, + { + "checksum": "sha256:a217b0fbe9757a0225b66d16c1668cdf5cb2aa69c68b89e79783abd507f2e7bf", + "check_gpg": true + }, + { + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "checksum": "sha256:2d4cf3bd8b8046adfa869fbb5b472294469457f6445db36abcc227959be9adeb", + "check_gpg": true + }, + { + "checksum": "sha256:0caa72888379f82fae1bc8f448bcf0dbaead20e92f2ef4c714afadf8979c3181", + "check_gpg": true + }, + { + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "checksum": "sha256:9e78ec1230b9ec69ef8e3ad0484cbe3b5c36cfc214d90f890a49093b22df2948", + "check_gpg": true + }, + { + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "checksum": "sha256:9d160cdfba107ddc0613e169311bf57077c04e71a052a57704f3bdb64729d565", + "check_gpg": true + }, + { + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "checksum": "sha256:d5c283da0d2666742635754626263f6f78e273cd46d83d2d66ed43730a731685", + "check_gpg": true + }, + { + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "checksum": "sha256:5f3d3d3b27b7df75738d1ee31112c60d39c54b8d7f92b6900606187f6cffce1d", + "check_gpg": true + }, + { + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "checksum": "sha256:63a6b7765828081cc88b36d10c68621acbebf02a7c2e7d7f1a1217c8742ea6ae", + "check_gpg": true + }, + { + "checksum": "sha256:71fcbbec3aa152bc1427cb4d597375b008438f6259b20cfcb68fff21eef80f91", + "check_gpg": true + }, + { + "checksum": "sha256:bcf25aae89f7368b16346bc1ec92850175bcc2312bf7a5e74bc3c512bcd345b0", + "check_gpg": true + }, + { + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "checksum": "sha256:f86fec6c6a844fbbfbf7c806d79dd7e72e4eef9c804472547a6d3ecf34cddca6", + "check_gpg": true + }, + { + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "checksum": "sha256:084c55bef75a2ce2ab67aa4eeb6726ca59ea6d7c2b23bc6e4084f11aac7e17f8", + "check_gpg": true + }, + { + "checksum": "sha256:7ec48db9e1e9896f29a16cbea53cdeecdd7dd2bc278c06721ebca2e71e9dcd6d", + "check_gpg": true + }, + { + "checksum": "sha256:436e93b4c072f8b6f90f41a037d017406be10c18efafc8c634f6da59bbac1105", + "check_gpg": true + }, + { + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "checksum": "sha256:b2cd2dc5cf9c1c118053e7e650c6d910b1d37e810a38d90de27d80a04b702e39", + "check_gpg": true + }, + { + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "checksum": "sha256:c4a5df7ec884bdcc929e73e066c7def89cfb8cf53306ffcf9f33a5c9e4ae84c7", + "check_gpg": true + }, + { + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "checksum": "sha256:760141c74870a93505dbba2174034287b6a97b9bb2b12c5ca2b7af056773b45b", + "check_gpg": true + }, + { + "checksum": "sha256:4a28d9fa9785d7e8515deaf5e1a381a553c37b02a81a20ddd4fa202b33413ac9", + "check_gpg": true + }, + { + "checksum": "sha256:16b34582f757aebb9bc7b0a0475458cbb186238b5b528ef8fdb099cb739ba383", + "check_gpg": true + }, + { + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "checksum": "sha256:d655ee126614010e72bac89b7ecaf38b515647181a22940cb774647442d28beb", + "check_gpg": true + }, + { + "checksum": "sha256:48bfe66d6f07baf1974355e8a3ebbc44f2d9812b823ddfff1c15f35635a8dc4e", + "check_gpg": true + }, + { + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "checksum": "sha256:f7e6debd0279cb07f0c805d90b707c187bb55b9ee34643898eec800b79fa6b1b", + "check_gpg": true + }, + { + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "checksum": "sha256:7bfc1981e5e1fd706c23ba10090dd05fb0828df11aa98a3dc89ee8b1d2663f7a", + "check_gpg": true + }, + { + "checksum": "sha256:638eb361523ce75963c8234fdeb6df8084a62e09a7ff5b00125b507955a28b28", + "check_gpg": true + }, + { + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "checksum": "sha256:6710a1b2f28e5ffd0fff3e74a76d84d12a602be79703e53e1a55166f2f7d141c", + "check_gpg": true + }, + { + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "checksum": "sha256:fa0b90c4da7f7ca8bf40055be5641a2c57708931fec5f760a2f8944325669fe9", + "check_gpg": true + }, + { + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "checksum": "sha256:3162a4a9159994002c3c6f5fe6a12160020e8f3484f1406ff5092311ca639548", + "check_gpg": true + }, + { + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "checksum": "sha256:7e2804a4494d4179ed50c0c99da1e30c3a6abf8db889c1412b458943cff0e3e5", + "check_gpg": true + }, + { + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "checksum": "sha256:b00855013100d3796e9ed6d82b1ab2d4dc7f4a3a3fa2e186f6de8523577974a0", + "check_gpg": true + }, + { + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "checksum": "sha256:79277d872ae6035009a1a40e914ec09bca21aefcac9d73dee65880c86387f3c9", + "check_gpg": true + }, + { + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "checksum": "sha256:3c6650fd6e32fdc24b8cf1f7a85ae8232661b47bda7019e49fd0eb474683ff23", + "check_gpg": true + }, + { + "checksum": "sha256:7a7963e2052bfb45b8569f64619dc5cb92fe8aeb78c754b7cf948b9784646785", + "check_gpg": true + }, + { + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "checksum": "sha256:7fa8fbc576f7d54c388fa39fc3ed86bacb7964cac4544c48b3ffabcdcdc27b61", + "check_gpg": true + }, + { + "checksum": "sha256:dea18976861575d40ffca814dee08a225376c7828a5afc9e5d0a383edd3d8907", + "check_gpg": true + }, + { + "checksum": "sha256:a456039834ccc5432949120f1d80b18329b552cf44d1b59ea1b60d2192e7bc5c", + "check_gpg": true + }, + { + "checksum": "sha256:d9acc32cf03ac203066bfa8d6d3f71eaedbad719f3ffc5056a387b548ae958e8", + "check_gpg": true + }, + { + "checksum": "sha256:82e27237686171b812aee7903c11ec4f8dbdb6544e419758fb0fbd61731044b0", + "check_gpg": true + }, + { + "checksum": "sha256:6f699a1e24a6bb76904ef1a588e3b3ef116cad07a5cbad86c6cdb522c00670dd", + "check_gpg": true + }, + { + "checksum": "sha256:0c6624b9391a76c0f9e54c387641bd4ed079c3bfc30e8f890afc4203955b2acb", + "check_gpg": true + }, + { + "checksum": "sha256:59683b6fff42b40d3a3abbdeb928bb18b4cd84700aaeb9b3c76d37044ae94e01", + "check_gpg": true + }, + { + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "checksum": "sha256:74b842ba3352d7c4ada7e991aeadf8749f058a4d00ccc6f79f1c82a281497cb7", + "check_gpg": true + }, + { + "checksum": "sha256:3acd2c8b6ea534811308b3138859b5fa150b89604bb60f16b0650747039d696a", + "check_gpg": true + }, + { + "checksum": "sha256:e0564d34fde9cf1a42e0fd4ba81ea7ce71bcca8823186f0221e56994bef275c6", + "check_gpg": true + }, + { + "checksum": "sha256:078fa234177ae5ae2736c878aa2a2f8ecccf4c7772ab4ad19a2d6ba4f34e8631", + "check_gpg": true + }, + { + "checksum": "sha256:cdd8e0a970aaaa23637f553692d755a0f57282c4494d31094638b6d4633ec523", + "check_gpg": true + }, + { + "checksum": "sha256:5c686be3533457b6ac047ac804aa54f74ee3a455047d3866dcef7a4da9d95fc6", + "check_gpg": true + }, + { + "checksum": "sha256:d01c5733267171fc234d7ab5387c17cb61e9fdec8f9eb792ea63c8ffb5bafb6c", + "check_gpg": true + }, + { + "checksum": "sha256:b6e327a5fca1efc26c920c42d104dbdafd9e4676681bbd1f28dab81c51677db8", + "check_gpg": true + }, + { + "checksum": "sha256:0f817ea59939bdd0311c8da8369f5c037e340443198ccef659696f67bd2ddcd1", + "check_gpg": true + }, + { + "checksum": "sha256:d7ae9cdbdd754c544d766c8e9748f24f580cd3a4c7c6c4d6203060e966299723", + "check_gpg": true + }, + { + "checksum": "sha256:dbded0760a358f62ec416ce37ffd764c725f8e898479b17173e632debc1a06ae", + "check_gpg": true + }, + { + "checksum": "sha256:39e27e147189e0e431527acfca51d9436149fe7c0fee1399289ea9a4862948cc", + "check_gpg": true + }, + { + "checksum": "sha256:01b808f1ea9299c37c80164d05ef1a5c45e05d53bcbd451b4d52e69a47959bc2", + "check_gpg": true + }, + { + "checksum": "sha256:3793552ff28a7026a6299d8d5d8d50a467f27654524c8e438e2058040d7e6d6c", + "check_gpg": true + }, + { + "checksum": "sha256:e8594d934926d149266098dbb6686b604caa4d8255895ebd732d55ca4e7f0248", + "check_gpg": true + }, + { + "checksum": "sha256:a06e1d34df03aaf429d290d5c281356fefe0ad510c229189405b88b3c0f40374", + "check_gpg": true + }, + { + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "checksum": "sha256:98a6386df94fc9595365c3ecbc630708420fa68d1774614a723dec4a55e84b9c", + "check_gpg": true + }, + { + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "checksum": "sha256:c44dbbff4fe503f5f49b71ab17db7848c6c67fe19d9a4cc6cef59cc6dd15f1a6", + "check_gpg": true + }, + { + "checksum": "sha256:aa938dc6f13d0d57ca811b8c299b1017723fa419997b87754f74db770430c2d9", + "check_gpg": true + }, + { + "checksum": "sha256:da77940ecadc9edb5d14aad51e4bf06664e5763fe6e46b20364732ec3aa2e08a", + "check_gpg": true + }, + { + "checksum": "sha256:5f45a2ff1a9c9f3d4fcae463c1ca70b1a16caccc59816ce391f064c9d8b9d8ae", + "check_gpg": true + }, + { + "checksum": "sha256:ab1be3dcea74c7a7fac49f9a1cad4113fded2d3edabb61b29ed8489a737033fe", + "check_gpg": true + }, + { + "checksum": "sha256:4280042747c9027c3252d360fa33d63490aa518858849115b20162a097a37146", + "check_gpg": true + }, + { + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "checksum": "sha256:f94172554b8ceeab97b560d0b05c2e2df4b2e737471adce6eca82fd3209be254", + "check_gpg": true + }, + { + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "checksum": "sha256:5452b96e4b57c275dd41e48d55af1ca4f77ccfb3ae403796e599a039d7382b91", + "check_gpg": true + }, + { + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "checksum": "sha256:708a8fd75f7c6987d66e2d62de664b5a84c6f75fd4e5230e244681897b15a25d", + "check_gpg": true + }, + { + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "checksum": "sha256:dae52ddd215b506d1805b66873194df5043fd758d42960dee68f029eab329b42", + "check_gpg": true + }, + { + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "checksum": "sha256:6327624b7b0d726a3c95f2245619efb1df8e70023fadcc8158afed39f57859e7", + "check_gpg": true + }, + { + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "checksum": "sha256:08b76b0af07db4d3b27776a96bb7d0dc0f02b7219569676ac79036190d731d5b", + "check_gpg": true + }, + { + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "checksum": "sha256:d9d8c21ad40e59b78008f1a569039462e5654a9d4bb08d84cf032e34cf7bde62", + "check_gpg": true + }, + { + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "checksum": "sha256:cb6b773c2ac78142736abd8a8f9eaac122f4647aefd3f003a615baf79abbefbb", + "check_gpg": true + }, + { + "checksum": "sha256:ab7bc1a828168006b88934bea949ab2b29b837b0a431f7da1a12147f64f6ddb5", + "check_gpg": true + }, + { + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "checksum": "sha256:b06fa62d0a585a7bc3b9d3341923736b3ee4b6cc6d7ca83bebcb97225ca86ac9", + "check_gpg": true + }, + { + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "checksum": "sha256:1b5187e9b694e439a059be58d8de5317f04278371d1195bf000b001ba8699197", + "check_gpg": true + }, + { + "checksum": "sha256:e2549a249d537f80f6595816a1094532c3feb0a730585d102c580583cc1dfde4", + "check_gpg": true + }, + { + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "checksum": "sha256:30fab73ee155f03dbbd99c1e30fe59dfba4ae8fdb2e7213451ccc36d6918bfcc", + "check_gpg": true + }, + { + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "checksum": "sha256:c357a350aa169402db3c898c7edcfee333e1d11a44f62bbeaba3fd3d2f31644d", + "check_gpg": true + }, + { + "checksum": "sha256:224100af3ecfc80c416796ec02c7c4dd113a38d42349d763485f3b42f260493f", + "check_gpg": true + }, + { + "checksum": "sha256:cec98aa5fbefcb99715921b493b4f92d34c4eeb823e9c8741aa75e280def89f1", + "check_gpg": true + }, + { + "checksum": "sha256:8852282172440cd618c695356449cbc035be4091b2a0833c785c8e42cc1df0e6", + "check_gpg": true + }, + { + "checksum": "sha256:c1bb77ed45ae47dc068445c6dfa4b70b273a3daf8cd82b9fa7a50e3d59abe3c1", + "check_gpg": true + }, + { + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "checksum": "sha256:2e8d4ee76fa8678b0e4d6c0297b16f96e0116201bf96b36e8924b1b080abcddd", + "check_gpg": true + }, + { + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "checksum": "sha256:185f36b3af9367e6142233af358df22f23ee623697bc6a45c47091013707872e", + "check_gpg": true + }, + { + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "checksum": "sha256:9eb9c1a67c5be04487cc133bdb8498eaf260e4d930a0143d2e1aa772e3d6cf64", + "check_gpg": true + }, + { + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "checksum": "sha256:406aea2bb2a5f83cabee5a50bad08a3516776c3cd42db8b159f926624f61aa42", + "check_gpg": true + }, + { + "checksum": "sha256:6b740563ba5858573ff3c2d2a827aeaf6e7166178e36066755d2cde4cf8a016f", + "check_gpg": true + }, + { + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "checksum": "sha256:5092704c041bb246eaafd478bedface3f99ce8fa233ada5cf96807f67e980e42", + "check_gpg": true + }, + { + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "checksum": "sha256:1230ddb5d92fe538a0526e3a9f05563a111ae4ff1978fc8e18de889974b5b46c", + "check_gpg": true + }, + { + "checksum": "sha256:ef2734017b25f7e9e1abf67315a7d1c97216642b5dfb979c19b1a3f74cff1e54", + "check_gpg": true + }, + { + "checksum": "sha256:377ad20c1681518bff1f40884589bddc4a692506384c7676f072ddf86ae429f9", + "check_gpg": true + }, + { + "checksum": "sha256:2c6dd4f21d9c4bde29f693d32e44f0d1c5dc73d78d013767df531d69bbfc6ed8", + "check_gpg": true + }, + { + "checksum": "sha256:370b74a811249b8f0bdfcd34137507f058a85196775e9d0d2bb244c100d194ae", + "check_gpg": true + }, + { + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "checksum": "sha256:53ae3ecd59ec61852cabbd039c748ed63ceb6a88da98587d4c33323ba4095154", + "check_gpg": true + }, + { + "checksum": "sha256:918518368513d162d772dfc5d16536ad2799276bcba2f47514a1c7098de2b43f", + "check_gpg": true + }, + { + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "checksum": "sha256:a5228fc876cffc7dc79769ada5653cb9bfb80d469fb3c9f0acc14a1a0d15782d", + "check_gpg": true + }, + { + "checksum": "sha256:0aaaaa29cc1bb4d358142db6eb7d12df9252a8166bf61956203878eed210785c", + "check_gpg": true + }, + { + "checksum": "sha256:b8e4cfecbbe7d2d6d9f3003432e826398f6bea21d5aba11a17ee74358cb84a6e", + "check_gpg": true + }, + { + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "checksum": "sha256:70b5e4e580da72969ad3bb144c15293910b7d679e195c118cee60d8320f01851", + "check_gpg": true + }, + { + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "checksum": "sha256:5b7763510f4badd05a1647e1fadf9dc49044b1cf4d754262d0d6d5ee9a8f3b12", + "check_gpg": true + }, + { + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "checksum": "sha256:cad76a2802c5f355b527df3cabde70bd58b31ec4b7de3b1ac15a429cda5b9b03", + "check_gpg": true + }, + { + "checksum": "sha256:0064a3aeff41fb7345c061956c35e4b9d0b8802954e717491fb6eb51028d22fd", + "check_gpg": true + }, + { + "checksum": "sha256:3cd092e6e03efb4bb49b91dedd52b43f891092d04a2ff040b9f2197ec2082511", + "check_gpg": true + }, + { + "checksum": "sha256:fda078d8edd4e0902246dd3121efb6c57cb8231dbb975380f9249c64163f0d88", + "check_gpg": true + }, + { + "checksum": "sha256:c8fc05dd997477fc80e2f3195e719ca2e569fc8997f05a64a13c52c8358e8239", + "check_gpg": true + }, + { + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "checksum": "sha256:5c68635cb03533a38d4a42f6547c21a1d5f9952351bb01f3cf865d2621a6e634", + "check_gpg": true + }, + { + "checksum": "sha256:a0b6a8d5530f5003f5c8d56211246cd1130a5b4dc1396dc50da70ce0e128b02c", + "check_gpg": true + }, + { + "checksum": "sha256:0560d3b3e915221aad94ddf83169bd680b1f0da9aa8ec8e9360bcb8fe071483e", + "check_gpg": true + }, + { + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "checksum": "sha256:bce152ddd2f05f892e5ce483a7c12606ba7d2c42108402fc9609ada04048e6df", + "check_gpg": true + }, + { + "checksum": "sha256:1c4b186665558747023a60d0d662d3780a1bc49e578062f4b70100c71ab2220c", + "check_gpg": true + }, + { + "checksum": "sha256:03b50a4ea5cf5655c67e2358fabb6e563eec4e7929e7fc6c4e92c92694f60fa0", + "check_gpg": true + }, + { + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "checksum": "sha256:c56cde3b8bc11965fa73b9baf59ab5fa7f6a45a950d5b6b369cf4679c17295ca", + "check_gpg": true + }, + { + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "checksum": "sha256:c9df7c58da59500e1717e435c565e221daa344212db8e83eb33b6a9c8e9a67bb", + "check_gpg": true + }, + { + "checksum": "sha256:0b763d946ec7da165107258469e7655707caa6fde0fff49e9e89d747e13eacc1", + "check_gpg": true + }, + { + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "checksum": "sha256:5e24dd39ae59ef7b7a386f28509cc80d8fabb23f0932e52ea365cf064ff76c59", + "check_gpg": true + }, + { + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "checksum": "sha256:f8bdaf5211c6fc72c8f60c7ddd59b8ca124ab26d2670ee6490a7fabb5177d919", + "check_gpg": true + }, + { + "checksum": "sha256:a9ec13abf63c69913acc1ac7070ab315c8b5a58c6006c3dfc5b27662f7f22260", + "check_gpg": true + }, + { + "checksum": "sha256:173a812d859c70f8db7b014d507c5cacb76c62ab5480c44be217f880465f42c7", + "check_gpg": true + }, + { + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "checksum": "sha256:4c5c7f3773c634c054b0a5fc1b40d0a8448b44bb5aff410bfa88facf9e2059ff", + "check_gpg": true + }, + { + "checksum": "sha256:9c849b1d4fd605ae749fd9d090715b6034520af871c23729cd4003f22e0990de", + "check_gpg": true + }, + { + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "checksum": "sha256:09128c1b70cb8ea1a9bfbc6f3314dd5a8ba0c1a1886a82cd0fbe6845d48215dc", + "check_gpg": true + }, + { + "checksum": "sha256:8d6742dce47f8ed65e222864872e919f30c678f5df1e99c134fba8a0fc7f454d", + "check_gpg": true + }, + { + "checksum": "sha256:e7ee4b6d6456cb7da0332f5a6fb8a7c47df977bcf616f12f0455413765367e89", + "check_gpg": true + }, + { + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "checksum": "sha256:776a182ecaab9f86c7e869db2eb2deea1f291caee701cddbd752da8cd3c57458", + "check_gpg": true + }, + { + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "checksum": "sha256:addf80c52d794aed47874eb9d5ddbbaa90cb248fda1634d793054a41da0d92d7", + "check_gpg": true + }, + { + "checksum": "sha256:07ed1209e898552e6aeac0e6d148271d562c576f7d903cb7a99a697643068f58", + "check_gpg": true + }, + { + "checksum": "sha256:176ffcb2cf0fdcbdd2d8119cbd98eef60a30fdb0fb065a9382d2c95e90c79652", + "check_gpg": true + }, + { + "checksum": "sha256:1bd969e0521820374122f5132e5998d9bd2ab185be66565a7266096297419c8e", + "check_gpg": true + }, + { + "checksum": "sha256:2ebe28be2e0a413af31a0f49b6a2774670067cdbe48e723040b19922ae205d6b", + "check_gpg": true + }, + { + "checksum": "sha256:c5b5967a094ced90899052a82e2c245529b75ba3f46e0ce1a89cfc95edb935ea", + "check_gpg": true + }, + { + "checksum": "sha256:066f254f9ac7712b44214816de907a87eb8dfd0d2ea9570a7513db9a6617ba26", + "check_gpg": true + }, + { + "checksum": "sha256:0e9a8a0f823bf0ef948862f0ccb62353460bd07931e756c98f23908c1c526578", + "check_gpg": true + }, + { + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "checksum": "sha256:941a9068b8fa524ecac58d37f941b95fbdcd9e38bd87c7f9d1330c5925a52a20", + "check_gpg": true + }, + { + "checksum": "sha256:d9fcdf78bae8bf3f3e7d469686a07fdb337567a7f6159397eee990730eb8cd11", + "check_gpg": true + }, + { + "checksum": "sha256:15dc15a5be210707852f051f4d09949c063a7283edc7d4ca3d4289eedcc0b509", + "check_gpg": true + }, + { + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "checksum": "sha256:78c43d8a15ca018de1803e4baac5819e1baab1963fd31f1e44e54e8a573acbfc", + "check_gpg": true + }, + { + "checksum": "sha256:ebeb05a4a9cdd5d060859eabac1349029c0120615c98fc939e26664c030655c1", + "check_gpg": true + }, + { + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "checksum": "sha256:59ba5bf69953a5a2e902b0f08b7187b66d84968852d46a3579a059477547d1a0", + "check_gpg": true + }, + { + "checksum": "sha256:451d0cb6e2284578e3279b4cbb5ec98e9d98a687556c6b424adf8f1282d4ef58", + "check_gpg": true + }, + { + "checksum": "sha256:dc835194ecfa6ebda81e0a764c953eff3422a61863e9a3e0dc74ea4cae7a4d94", + "check_gpg": true + }, + { + "checksum": "sha256:e1a85d0f6b23482247c81c449d87749cdc8e6b7df737b39aba170634b644da0f", + "check_gpg": true + }, + { + "checksum": "sha256:20874a9d40b12125c9e5b97fe4ccda3f94acbc03da1dec7299123901f5b56631", + "check_gpg": true + }, + { + "checksum": "sha256:6aa1e29a4d805fc36c3196788fe78cb4552e2ebec8b3d0f8d32974e6a97025f2", + "check_gpg": true + }, + { + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "checksum": "sha256:d1e8c7a00924d1a6dee44ade189025853a501d4f77c73f3bfc006aa907d97daf", + "check_gpg": true + }, + { + "checksum": "sha256:142d4fe6236cdeac3f967517085d99649215d75026fbe00746e0c5214d7d20df", + "check_gpg": true + }, + { + "checksum": "sha256:8891a9a4707611c13a5693b195201dd940254ffdb03cf5742952329282bb8cb7", + "check_gpg": true + }, + { + "checksum": "sha256:7f506879c64e0bb4d98782d025f46fb9a07517487ae4cbebbb3985a98f4e2154", + "check_gpg": true + }, + { + "checksum": "sha256:aa0007192287faeaecc72d9fa48efdb3108c764d450dc8fea65474476da32c45", + "check_gpg": true + }, + { + "checksum": "sha256:525393e4d658e395c6280bd2ff4afe54999796c4722986325297ba4bfade3ea5", + "check_gpg": true + }, + { + "checksum": "sha256:003ee19ec5b88de212c3246bdfdb3e97a9910a25a219fd7cf5030b7bc666fea9", + "check_gpg": true + }, + { + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "checksum": "sha256:bafc2680bd298f0fac70854224ef03b7098d4c46ee35e270f6fd58d2e812ff1b", + "check_gpg": true + }, + { + "checksum": "sha256:f56992135d789147285215cb062960fedcdf4b3296c62658fa430caa2c20165c", + "check_gpg": true + }, + { + "checksum": "sha256:c6f27b6e01d80e756408e3c1451e4af00e7d02da0aa24402644c0785118753fe", + "check_gpg": true + }, + { + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "checksum": "sha256:233e5f78027b684e5aaac1395cc574aea3039059bf86eb4494422bc74216a396", + "check_gpg": true + }, + { + "checksum": "sha256:563b3741d26b6af963fdb7b0634e0791445a707d0b6093ac71c3224299241639", + "check_gpg": true + }, + { + "checksum": "sha256:017e78c5e23f98d6ee299255fc7be5381dba63d169e3f5dcb1de9d21b5d30ba5", + "check_gpg": true + }, + { + "checksum": "sha256:aa1835fd302a37b84ac256db5dd0de09bd9883a5a07775aedb491faf46b18ee0", + "check_gpg": true + }, + { + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "checksum": "sha256:d967d6bbb33bf7a295a64807f81875c84e82a8ecc59b6c72fe955141b1660d39", + "check_gpg": true + }, + { + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "checksum": "sha256:a1d1bac6c4710e0a1a6e8a507b06a630dda6687f12642be0847768c14ce7271e", + "check_gpg": true + }, + { + "checksum": "sha256:774d214a379c0b729d7e989f9d5094fdfda7df68c1e792ba9200542032f04c91", + "check_gpg": true + }, + { + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "checksum": "sha256:f0346c485da9a7e8c8d93624f335cbb25790a7f37c6c03e43232517bb73bbacb", + "check_gpg": true + }, + { + "checksum": "sha256:be628d396303d6547b9d7239897fbf4fad7447375cb5e898b394a458f420b550", + "check_gpg": true + }, + { + "checksum": "sha256:839c62cd7fc7e152decded6f28c80b5f7b8f34a5e319057867b38b26512cee67", + "check_gpg": true + }, + { + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "checksum": "sha256:a0c8f83cef355dd98d7750e3d8eb3e9f3e9f8f5e9a3ee441cb4bc4014c647e31", + "check_gpg": true + }, + { + "checksum": "sha256:b1871d8ac1abaf5e809448c5f37e32487f177aee3080d9033efb4b160f755aba", + "check_gpg": true + }, + { + "checksum": "sha256:fe944d9dd89d550d2aa44d33cfeb11c803b074bfcda0dbbad486c392bf1cc9d0", + "check_gpg": true + }, + { + "checksum": "sha256:6cd7444c22d56201f61fed5fd741b44cfaae18d95b811d25c5f0ffe2f8e55a8f", + "check_gpg": true + }, + { + "checksum": "sha256:7115a12fad224b469419e19ee5c0d38322f467fe7a1c441c1b0239b197baac2a", + "check_gpg": true + }, + { + "checksum": "sha256:cbcade4487fbf372b487b9f82ed85e04ff037551c96c4b461abc3716338ff9c4", + "check_gpg": true + }, + { + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "checksum": "sha256:9664aba8dfd6bd6fda669fcf8f6ff04914305a6373b09d8b675322c7337b9c36", + "check_gpg": true + }, + { + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "checksum": "sha256:b3bc3f1c9e8028a177599f1ed9cb6c31d2d6e75111e34623d25e736d3ddcf8fd", + "check_gpg": true + }, + { + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "checksum": "sha256:3efd6a2548813167fe37718546bc768a5aa8ba59aa80edcecd8ba408bec329b0", + "check_gpg": true + }, + { + "checksum": "sha256:4c02e3e1808f0189269b242242468a364007a8f12c6e38afc24b599b2848b0fa", + "check_gpg": true + }, + { + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "checksum": "sha256:4302361b12eefd5574f57bf0c49c0e5bdc738eddda33634af8b35adfb53a52a1", + "check_gpg": true + }, + { + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "checksum": "sha256:5eb1eaf3f1a0df8477ed4d07cf309b55725a147419ad63e42d89294f7380cb31", + "check_gpg": true + }, + { + "checksum": "sha256:37c05719442a1835c198884bbae6113dbcce36b5c809d2d9c9dacac72dce864d", + "check_gpg": true + }, + { + "checksum": "sha256:dc4f0cc77cf4c89469cf0f9c88b52f2c8c2c35f4e6d714bbdae2083440483311", + "check_gpg": true + }, + { + "checksum": "sha256:7800dfd0d4769a898d11db330fdb5b19614533628a45fe91cce406d6cd1f0c71", + "check_gpg": true + }, + { + "checksum": "sha256:cad86777bcb265db0da766952ff63e8d33f0fd4f3b90b22d0a1da587a785db44", + "check_gpg": true + }, + { + "checksum": "sha256:67419432fe7d373f8e5ddaa7b0dd1c25389608bf2f4ee76dbabcc2d96eb8c9d0", + "check_gpg": true + }, + { + "checksum": "sha256:c99db07c2548246f6b2ec98c1d2b536e40b2f4dbba39f3430044868a27985732", + "check_gpg": true + }, + { + "checksum": "sha256:e1133a81512bfba8d4bf06bc12aafee7fe13d6319fc8690b81e6f46d978930eb", + "check_gpg": true + }, + { + "checksum": "sha256:3cf4fcd2fe43e6477d5f1c05167c669c247dcbeea1ab37bf3b7d42dcab482565", + "check_gpg": true + }, + { + "checksum": "sha256:226bb890cc85bfc60d874a9cb13cb7f7f1e90d90308c7726e25e14cee5487e66", + "check_gpg": true + }, + { + "checksum": "sha256:142c67cdc69366820a7fc7567e40567b545b52f279d1ff992e4787d3c1ea4956", + "check_gpg": true + }, + { + "checksum": "sha256:d29207af6ff12bec1a5b9712550f2faf7efbff75c597cc2e84b6c9d0dfe2de68", + "check_gpg": true + }, + { + "checksum": "sha256:ced1d02dd424b1d087347d452420e17ba83af2b926041c794471798dfa5f5868", + "check_gpg": true + }, + { + "checksum": "sha256:e308e1ebc85889742a002fd9892d71894fd6fae473320fbc7b1ffb94248602cd", + "check_gpg": true + }, + { + "checksum": "sha256:8d3bdefac6c0f39e66e092d62b37efa3076976ae66def1f9dd1f217022406efa", + "check_gpg": true + }, + { + "checksum": "sha256:be0181770c94141852b6bb618baf56e7b8df9f70524b0c2e0e391e550285231f", + "check_gpg": true + }, + { + "checksum": "sha256:d1cc79976965be3fe769cb8c23a281064816eaa195caf6057b8d1da0e9ff7ae5", + "check_gpg": true + }, + { + "checksum": "sha256:7bc2e2a25b04b52a4ec5de2858e75eb07f16495d4de5f7ce926777130302cfe3", + "check_gpg": true + }, + { + "checksum": "sha256:105beb1a237e66802e64e620f79b357dfc8f3bb8952ac2f293548f1d68ca40b1", + "check_gpg": true + }, + { + "checksum": "sha256:19ca7ab9cb2e39ec452ed1424f828ec464266094e31903301680d5a5d0e2ac2c", + "check_gpg": true + }, + { + "checksum": "sha256:1824bc3233b76fabb2305d11bd9bc905cb8e8d7f44006f253164b64808be4b39", + "check_gpg": true + }, + { + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "checksum": "sha256:34321e09964f724b712ed709115f794b1953f4a4d472d655bec0993d27c51a22", + "check_gpg": true + }, + { + "checksum": "sha256:c11eba3a7ae0ee7ceaea4bbf78edf9a1c3c5d9629b3f40167f5fb8004b2c19a0", + "check_gpg": true + }, + { + "checksum": "sha256:2e0b39dbf3b7e68a06f321a04797d4e521b9b484ffc8d6d53f7662613e077065", + "check_gpg": true + }, + { + "checksum": "sha256:cff4bc30873c62698e4bc2f519bb0aa6814534d7ce99f1ba757dd345b881505f", + "check_gpg": true + }, + { + "checksum": "sha256:71fbed9d1b1f6965b42a5c87c98732bed84a8a2efb43c2218b4d1c59e9eaf190", + "check_gpg": true + }, + { + "checksum": "sha256:947fee92d0c147d832bbb3ab53e0b96817d03c38260429a4ff01856324b160da", + "check_gpg": true + }, + { + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "checksum": "sha256:8e4f8fed6f2fdf05e85fc84023778dbf23e09f1dc2f6a0940860886d3f59831b", + "check_gpg": true + }, + { + "checksum": "sha256:44c659fb58e1ee64f5d77b35459dc43a0fded79c8a6e2278a2c9c71461792ff1", + "check_gpg": true + }, + { + "checksum": "sha256:bfbd05db004755c45f7ec31be67b02d9c7fa0c9b1bb060bb2ffe85b3f2b5d811", + "check_gpg": true + }, + { + "checksum": "sha256:9dbf3ceb7de5a727f1a36edd5add73dcd96c83f24afc81d78e254b518551da96", + "check_gpg": true + }, + { + "checksum": "sha256:5f4f256128dba88a13599d6458908c24c0e9c18d8979ae44bf5734da8e7cab70", + "check_gpg": true + }, + { + "checksum": "sha256:85eb614fc608f3b3f4bbd08d4a3b0ff6af188677ea4e009be021680c521cedae", + "check_gpg": true + }, + { + "checksum": "sha256:60b0cbc5e435be346bb06f45f3336f8936d7362022d8bceda80ff16bc3fb7dd2", + "check_gpg": true + }, + { + "checksum": "sha256:0feac495306bbe6e3149a352025bea8d23cda512859a230cbd3f510cf48caaf7", + "check_gpg": true + }, + { + "checksum": "sha256:9c7a5a6f73c8e32559226c54d229cb25304a81a853af22d9f829b9bb09b21f53", + "check_gpg": true + }, + { + "checksum": "sha256:a2418e8e12144d4e84965298e7bbefedc876c0d0d93771afb9b5c6c2eb139dc0", + "check_gpg": true + }, + { + "checksum": "sha256:1b53c868277dec628058b31b1a8a8a2ccd8efe832ce9694805b5f82564136eb3", + "check_gpg": true + }, + { + "checksum": "sha256:16bb90f4105692da54369c59e5d4aea2e2e6ef7ab53a485b984f780c3c34d916", + "check_gpg": true + }, + { + "checksum": "sha256:82ce159a9e4e4b6b4fdce9ad954aa507f67108430bd261a4dcd826e44d0152a4", + "check_gpg": true + }, + { + "checksum": "sha256:0edde19e0c027c8cff31b82e1f4b0b198c00bf924047fcf4dd610a7d4965ab52", + "check_gpg": true + }, + { + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "checksum": "sha256:df417aae69f2ba5bd4324a14dcfd30dfbfefba440085bbf916c5ef19286cba20", + "check_gpg": true + }, + { + "checksum": "sha256:ca82090f18d47e454cc512e832bf3ec771edf65299e3c1d56d5df9fab0428869", + "check_gpg": true + }, + { + "checksum": "sha256:98f622a37cb22857fdce63d8c97d9711c74cdbd3451e588e2b519532db55a5a2", + "check_gpg": true + }, + { + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "checksum": "sha256:5c0cf0adf7a3ad24ddde58f298ebf4ce741bccdfc8eff0103644115c837f80d6", + "check_gpg": true + }, + { + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ] + } + }, + { + "name": "org.osbuild.fix-bls", + "options": {} + }, + { + "name": "org.osbuild.fstab", + "options": { + "filesystems": [ + { + "uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "vfs_type": "xfs", + "path": "/", + "options": "defaults" + }, + { + "uuid": "7B77-95E7", + "vfs_type": "vfat", + "path": "/boot/efi", + "options": "defaults,uid=0,gid=0,umask=077,shortname=winnt", + "passno": 2 + } + ] + } + }, + { + "name": "org.osbuild.grub2", + "options": { + "root_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "kernel_opts": "ro biosdevname=0 rootdelay=300 console=ttyS0 earlyprintk=ttyS0 net.ifnames=0", + "legacy": "i386-pc", + "uefi": { + "vendor": "centos" + } + } + }, + { + "name": "org.osbuild.locale", + "options": { + "language": "en_US" + } + }, + { + "name": "org.osbuild.timezone", + "options": { + "zone": "America/New_York" + } + }, + { + "name": "org.osbuild.users", + "options": { + "users": { + "redhat": { + "key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC61wMCjOSHwbVb4VfVyl5sn497qW4PsdQ7Ty7aD6wDNZ/QjjULkDV/yW5WjDlDQ7UqFH0Sr7vywjqDizUAqK7zM5FsUKsUXWHWwg/ehKg8j9xKcMv11AkFoUoujtfAujnKODkk58XSA9whPr7qcw3vPrmog680pnMSzf9LC7J6kXfs6lkoKfBh9VnlxusCrw2yg0qI1fHAZBLPx7mW6+me71QZsS6sVz8v8KXyrXsKTdnF50FjzHcK9HXDBtSJS5wA3fkcRYymJe0o6WMWNdgSRVpoSiWaHHmFgdMUJaYoCfhXzyl7LtNb3Q+Sveg+tJK7JaRXBLMUllOlJ6ll5Hod root@localhost" + } + } + } + }, + { + "name": "org.osbuild.systemd", + "options": { + "enabled_services": [ + "sshd", + "waagent" + ], + "default_target": "multi-user.target" + } + }, + { + "name": "org.osbuild.selinux", + "options": { + "file_contexts": "etc/selinux/targeted/contexts/files/file_contexts" + } + }, + { + "name": "org.osbuild.sysconfig", + "options": { + "kernel": { + "update_default": true, + "default_kernel": "kernel" + }, + "network": { + "networking": true, + "no_zero_conf": true + } + } + } + ], + "assembler": { + "name": "org.osbuild.qemu", + "options": { + "bootloader": { + "type": "grub2" + }, + "format": "vpc", + "filename": "disk.vhd", + "size": 4294967296, + "ptuuid": "D209C89E-EA5E-4FBD-B161-B461CCE297E0", + "pttype": "gpt", + "partitions": [ + { + "start": 2048, + "size": 2048, + "type": "21686148-6449-6E6F-744E-656564454649", + "bootable": true, + "uuid": "FAC7F1FB-3E8D-4137-A512-961DE09A5549" + }, + { + "start": 4096, + "size": 204800, + "type": "C12A7328-F81F-11D2-BA4B-00A0C93EC93B", + "uuid": "68B2905B-DF3E-4FB3-80FA-49D1E773AA33", + "filesystem": { + "type": "vfat", + "uuid": "7B77-95E7", + "mountpoint": "/boot/efi" + } + }, + { + "start": 208896, + "type": "0FC63DAF-8483-4772-8E79-3D69D8477DE4", + "uuid": "6264D520-3FB9-423F-8AB8-7A0A8E3D3562", + "filesystem": { + "type": "xfs", + "uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "label": "root", + "mountpoint": "/" + } + } + ] + } + } + } + }, + "rpmmd": { + "build-packages": [ + { + "name": "acl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/acl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "name": "audit-libs", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "name": "basesystem", + "epoch": 0, + "version": "11", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/basesystem-11-5.el8.noarch.rpm", + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "name": "bash", + "epoch": 0, + "version": "4.4.19", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bash-4.4.19-14.el8.x86_64.rpm", + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "name": "brotli", + "epoch": 0, + "version": "1.0.6", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/brotli-1.0.6-3.el8.x86_64.rpm", + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "name": "bzip2-libs", + "epoch": 0, + "version": "1.0.6", + "release": "26.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.6-26.el8.x86_64.rpm", + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "name": "ca-certificates", + "epoch": 0, + "version": "2020.2.41", + "release": "80.0.el8_2", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ca-certificates-2020.2.41-80.0.el8_2.noarch.rpm", + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "name": "centos-gpg-keys", + "epoch": 1, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-gpg-keys-8-2.el8.noarch.rpm", + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "name": "centos-stream-release", + "epoch": 0, + "version": "8.4", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-release-8.4-1.el8.noarch.rpm", + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "name": "centos-stream-repos", + "epoch": 0, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-repos-8-2.el8.noarch.rpm", + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "name": "chkconfig", + "epoch": 0, + "version": "1.13", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chkconfig-1.13-2.el8.x86_64.rpm", + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "name": "coreutils", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "name": "coreutils-common", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-common-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "name": "cpio", + "epoch": 0, + "version": "2.12", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cpio-2.12-10.el8.x86_64.rpm", + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "name": "cracklib", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "name": "cracklib-dicts", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "name": "crypto-policies", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "name": "crypto-policies-scripts", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-scripts-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "name": "cryptsetup-libs", + "epoch": 0, + "version": "2.3.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.3.3-2.el8.x86_64.rpm", + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "name": "curl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/curl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "name": "cyrus-sasl-lib", + "epoch": 0, + "version": "2.1.27", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-5.el8.x86_64.rpm", + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "name": "dbus", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "name": "dbus-common", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-common-1.12.8-12.el8.noarch.rpm", + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "name": "dbus-daemon", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-daemon-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "name": "dbus-libs", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-libs-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "name": "dbus-tools", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-tools-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "name": "device-mapper", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "name": "device-mapper-libs", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "name": "diffutils", + "epoch": 0, + "version": "3.6", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/diffutils-3.6-6.el8.x86_64.rpm", + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "name": "dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "name": "dnf-data", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-data-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "name": "dosfstools", + "epoch": 0, + "version": "4.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dosfstools-4.1-6.el8.x86_64.rpm", + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "name": "dracut", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "name": "e2fsprogs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "name": "e2fsprogs-libs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "name": "elfutils-debuginfod-client", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "name": "elfutils-default-yama-scope", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.182-3.el8.noarch.rpm", + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "name": "elfutils-libelf", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libelf-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "name": "elfutils-libs", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libs-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "name": "expat", + "epoch": 0, + "version": "2.2.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/expat-2.2.5-4.el8.x86_64.rpm", + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "name": "file", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "name": "file-libs", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-libs-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "name": "filesystem", + "epoch": 0, + "version": "3.8", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/filesystem-3.8-4.el8.x86_64.rpm", + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "name": "findutils", + "epoch": 1, + "version": "4.6.0", + "release": "20.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/findutils-4.6.0-20.el8.x86_64.rpm", + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "name": "freetype", + "epoch": 0, + "version": "2.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/freetype-2.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "name": "fuse-libs", + "epoch": 0, + "version": "2.9.7", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-libs-2.9.7-12.el8.x86_64.rpm", + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "name": "gawk", + "epoch": 0, + "version": "4.2.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gawk-4.2.1-2.el8.x86_64.rpm", + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "name": "gdbm", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "name": "gdbm-libs", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-libs-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "name": "gettext", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "name": "gettext-libs", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-libs-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "name": "glib2", + "epoch": 0, + "version": "2.56.4", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib2-2.56.4-9.el8.x86_64.rpm", + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "name": "glibc", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "name": "glibc-all-langpacks", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-all-langpacks-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af", + "check_gpg": true + }, + { + "name": "glibc-common", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-common-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "name": "gmp", + "epoch": 1, + "version": "6.1.2", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gmp-6.1.2-10.el8.x86_64.rpm", + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "name": "gnupg2", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "name": "gnupg2-smime", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-smime-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "name": "gnutls", + "epoch": 0, + "version": "3.6.14", + "release": "7.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnutls-3.6.14-7.el8_3.x86_64.rpm", + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "name": "gpgme", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gpgme-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "name": "grep", + "epoch": 0, + "version": "3.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grep-3.1-6.el8.x86_64.rpm", + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "name": "grub2-common", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-common-2.02-93.el8.noarch.rpm", + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "name": "grub2-pc", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "name": "grub2-pc-modules", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-modules-2.02-93.el8.noarch.rpm", + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "name": "grub2-tools", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "name": "grub2-tools-extra", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-extra-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "name": "grub2-tools-minimal", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-minimal-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "name": "grubby", + "epoch": 0, + "version": "8.40", + "release": "41.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grubby-8.40-41.el8.x86_64.rpm", + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "name": "gzip", + "epoch": 0, + "version": "1.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gzip-1.9-12.el8.x86_64.rpm", + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "name": "hardlink", + "epoch": 1, + "version": "1.3", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hardlink-1.3-6.el8.x86_64.rpm", + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "name": "hwdata", + "epoch": 0, + "version": "0.314", + "release": "8.7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hwdata-0.314-8.7.el8.noarch.rpm", + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "name": "ima-evm-utils", + "epoch": 0, + "version": "1.3.2", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ima-evm-utils-1.3.2-11.el8.x86_64.rpm", + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "name": "info", + "epoch": 0, + "version": "6.5", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/info-6.5-6.el8.x86_64.rpm", + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "name": "iptables-libs", + "epoch": 0, + "version": "1.8.4", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-libs-1.8.4-17.el8.x86_64.rpm", + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "name": "json-c", + "epoch": 0, + "version": "0.13.1", + "release": "0.4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-c-0.13.1-0.4.el8.x86_64.rpm", + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "name": "kbd", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-2.0.4-10.el8.x86_64.rpm", + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "name": "kbd-legacy", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-legacy-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "name": "kbd-misc", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-misc-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "name": "keyutils-libs", + "epoch": 0, + "version": "1.5.10", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-libs-1.5.10-6.el8.x86_64.rpm", + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "name": "kmod", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-25-17.el8.x86_64.rpm", + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "name": "kmod-libs", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-libs-25-17.el8.x86_64.rpm", + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "name": "kpartx", + "epoch": 0, + "version": "0.8.4", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kpartx-0.8.4-8.el8.x86_64.rpm", + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "name": "krb5-libs", + "epoch": 0, + "version": "1.18.2", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/krb5-libs-1.18.2-8.el8.x86_64.rpm", + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "name": "libacl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libacl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "name": "libaio", + "epoch": 0, + "version": "0.3.112", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libaio-0.3.112-1.el8.x86_64.rpm", + "checksum": "sha256:2c63399bee449fb6e921671a9bbf3356fda73f890b578820f7d926202e98a479", + "check_gpg": true + }, + { + "name": "libarchive", + "epoch": 0, + "version": "3.3.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libarchive-3.3.3-1.el8.x86_64.rpm", + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "name": "libassuan", + "epoch": 0, + "version": "2.5.1", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libassuan-2.5.1-3.el8.x86_64.rpm", + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "name": "libattr", + "epoch": 0, + "version": "2.4.48", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libattr-2.4.48-3.el8.x86_64.rpm", + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "name": "libblkid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libblkid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "name": "libcap", + "epoch": 0, + "version": "2.26", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-2.26-4.el8.x86_64.rpm", + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "name": "libcap-ng", + "epoch": 0, + "version": "0.7.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-ng-0.7.9-5.el8.x86_64.rpm", + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "name": "libcom_err", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcom_err-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "name": "libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "name": "libcroco", + "epoch": 0, + "version": "0.6.12", + "release": "4.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcroco-0.6.12-4.el8_2.1.x86_64.rpm", + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "name": "libcurl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcurl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "name": "libdb", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "name": "libdb-utils", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-utils-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "name": "libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "name": "libevent", + "epoch": 0, + "version": "2.1.8", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libevent-2.1.8-5.el8.x86_64.rpm", + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "name": "libfdisk", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libfdisk-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "name": "libffi", + "epoch": 0, + "version": "3.1", + "release": "22.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libffi-3.1-22.el8.x86_64.rpm", + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "name": "libgcc", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcc-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "name": "libgcrypt", + "epoch": 0, + "version": "1.8.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcrypt-1.8.5-4.el8.x86_64.rpm", + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "name": "libgomp", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgomp-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "name": "libgpg-error", + "epoch": 0, + "version": "1.31", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgpg-error-1.31-1.el8.x86_64.rpm", + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "name": "libibverbs", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libibverbs-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "name": "libidn2", + "epoch": 0, + "version": "2.2.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libidn2-2.2.0-1.el8.x86_64.rpm", + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "name": "libkcapi", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "name": "libkcapi-hmaccalc", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-hmaccalc-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "name": "libksba", + "epoch": 0, + "version": "1.3.5", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libksba-1.3.5-7.el8.x86_64.rpm", + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "name": "libmetalink", + "epoch": 0, + "version": "0.1.3", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmetalink-0.1.3-7.el8.x86_64.rpm", + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "name": "libmodulemd", + "epoch": 0, + "version": "2.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodulemd-2.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "name": "libmount", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmount-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "name": "libnghttp2", + "epoch": 0, + "version": "1.33.0", + "release": "3.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnghttp2-1.33.0-3.el8_2.1.x86_64.rpm", + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "name": "libnl3", + "epoch": 0, + "version": "3.5.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-3.5.0-1.el8.x86_64.rpm", + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "name": "libnsl2", + "epoch": 0, + "version": "1.2.0", + "release": "2.20180605git4a062cf.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64.rpm", + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "name": "libpcap", + "epoch": 14, + "version": "1.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpcap-1.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "name": "libpng", + "epoch": 2, + "version": "1.6.34", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpng-1.6.34-5.el8.x86_64.rpm", + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "name": "libpsl", + "epoch": 0, + "version": "0.20.2", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpsl-0.20.2-6.el8.x86_64.rpm", + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "name": "libpwquality", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "name": "librepo", + "epoch": 0, + "version": "1.12.0", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/librepo-1.12.0-3.el8.x86_64.rpm", + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "name": "libreport-filesystem", + "epoch": 0, + "version": "2.9.5", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libreport-filesystem-2.9.5-15.el8.x86_64.rpm", + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "name": "libseccomp", + "epoch": 0, + "version": "2.4.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libseccomp-2.4.3-1.el8.x86_64.rpm", + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "name": "libsecret", + "epoch": 0, + "version": "0.18.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsecret-0.18.6-1.el8.x86_64.rpm", + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "name": "libselinux", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "name": "libselinux-utils", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-utils-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "name": "libsemanage", + "epoch": 0, + "version": "2.9", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsemanage-2.9-6.el8.x86_64.rpm", + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "name": "libsepol", + "epoch": 0, + "version": "2.9", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsepol-2.9-2.el8.x86_64.rpm", + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "name": "libsigsegv", + "epoch": 0, + "version": "2.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsigsegv-2.11-5.el8.x86_64.rpm", + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "name": "libsmartcols", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmartcols-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "name": "libsolv", + "epoch": 0, + "version": "0.7.16", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsolv-0.7.16-2.el8.x86_64.rpm", + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "name": "libss", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libss-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "name": "libssh", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-0.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "name": "libssh-config", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-config-0.9.4-2.el8.noarch.rpm", + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "name": "libstdc++", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstdc++-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "name": "libtasn1", + "epoch": 0, + "version": "4.13", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtasn1-4.13-3.el8.x86_64.rpm", + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "name": "libtirpc", + "epoch": 0, + "version": "1.1.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtirpc-1.1.4-4.el8.x86_64.rpm", + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "name": "libunistring", + "epoch": 0, + "version": "0.9.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libunistring-0.9.9-3.el8.x86_64.rpm", + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "name": "libusbx", + "epoch": 0, + "version": "1.0.23", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libusbx-1.0.23-4.el8.x86_64.rpm", + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "name": "libutempter", + "epoch": 0, + "version": "1.1.6", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libutempter-1.1.6-14.el8.x86_64.rpm", + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "name": "libuuid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuuid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "name": "libverto", + "epoch": 0, + "version": "0.3.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-0.3.0-5.el8.x86_64.rpm", + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "name": "libxcrypt", + "epoch": 0, + "version": "4.1.1", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxcrypt-4.1.1-4.el8.x86_64.rpm", + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "name": "libxml2", + "epoch": 0, + "version": "2.9.7", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxml2-2.9.7-9.el8.x86_64.rpm", + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "name": "libyaml", + "epoch": 0, + "version": "0.1.7", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libyaml-0.1.7-5.el8.x86_64.rpm", + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "name": "libzstd", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libzstd-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "name": "lua-libs", + "epoch": 0, + "version": "5.3.4", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lua-libs-5.3.4-11.el8.x86_64.rpm", + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "name": "lz4-libs", + "epoch": 0, + "version": "1.8.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lz4-libs-1.8.3-2.el8.x86_64.rpm", + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "name": "memstrack", + "epoch": 0, + "version": "0.1.11", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/memstrack-0.1.11-1.el8.x86_64.rpm", + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "name": "mpfr", + "epoch": 0, + "version": "3.1.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mpfr-3.1.6-1.el8.x86_64.rpm", + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "name": "ncurses", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "name": "ncurses-base", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-base-6.1-7.20180224.el8.noarch.rpm", + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "name": "ncurses-libs", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-libs-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "name": "nettle", + "epoch": 0, + "version": "3.4.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nettle-3.4.1-2.el8.x86_64.rpm", + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "name": "npth", + "epoch": 0, + "version": "1.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/npth-1.5-4.el8.x86_64.rpm", + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "name": "openldap", + "epoch": 0, + "version": "2.4.46", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openldap-2.4.46-16.el8.x86_64.rpm", + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "name": "openssl", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "name": "openssl-libs", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-libs-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "name": "openssl-pkcs11", + "epoch": 0, + "version": "0.4.10", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-pkcs11-0.4.10-2.el8.x86_64.rpm", + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "name": "os-prober", + "epoch": 0, + "version": "1.74", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/os-prober-1.74-6.el8.x86_64.rpm", + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "name": "p11-kit", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "name": "p11-kit-trust", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-trust-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "name": "pam", + "epoch": 0, + "version": "1.3.1", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pam-1.3.1-14.el8.x86_64.rpm", + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "name": "pciutils", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "name": "pciutils-libs", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-libs-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "name": "pcre", + "epoch": 0, + "version": "8.42", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre-8.42-4.el8.x86_64.rpm", + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "name": "pcre2", + "epoch": 0, + "version": "10.32", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre2-10.32-2.el8.x86_64.rpm", + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "name": "pigz", + "epoch": 0, + "version": "2.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pigz-2.4-4.el8.x86_64.rpm", + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "name": "platform-python", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "name": "platform-python-pip", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-pip-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "name": "platform-python-setuptools", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-setuptools-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "name": "policycoreutils", + "epoch": 0, + "version": "2.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-2.9-12.el8.x86_64.rpm", + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "name": "popt", + "epoch": 0, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/popt-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "name": "procps-ng", + "epoch": 0, + "version": "3.3.15", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/procps-ng-3.3.15-6.el8.x86_64.rpm", + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "name": "publicsuffix-list-dafsa", + "epoch": 0, + "version": "20180723", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20180723-1.el8.noarch.rpm", + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "name": "python3-dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "name": "python3-gpg", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gpg-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "name": "python3-hawkey", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-hawkey-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "name": "python3-iniparse", + "epoch": 0, + "version": "0.4", + "release": "31.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-iniparse-0.4-31.el8.noarch.rpm", + "checksum": "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178", + "check_gpg": true + }, + { + "name": "python3-libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "name": "python3-libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "name": "python3-libs", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libs-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "name": "python3-pip-wheel", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pip-wheel-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "name": "python3-rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "name": "python3-setuptools", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:c6f27b6e01d80e756408e3c1451e4af00e7d02da0aa24402644c0785118753fe", + "check_gpg": true + }, + { + "name": "python3-setuptools-wheel", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "name": "python3-six", + "epoch": 0, + "version": "1.11.0", + "release": "8.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-six-1.11.0-8.el8.noarch.rpm", + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "name": "rdma-core", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rdma-core-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "name": "readline", + "epoch": 0, + "version": "7.0", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/readline-7.0-10.el8.x86_64.rpm", + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "name": "rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "name": "rpm-build-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-build-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "name": "rpm-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "name": "rpm-plugin-selinux", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "name": "rpm-plugin-systemd-inhibit", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "name": "sed", + "epoch": 0, + "version": "4.5", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sed-4.5-2.el8.x86_64.rpm", + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "name": "selinux-policy", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "name": "selinux-policy-targeted", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-targeted-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "name": "setup", + "epoch": 0, + "version": "2.12.2", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/setup-2.12.2-6.el8.noarch.rpm", + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "name": "shadow-utils", + "epoch": 2, + "version": "4.6", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shadow-utils-4.6-12.el8.x86_64.rpm", + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "name": "shared-mime-info", + "epoch": 0, + "version": "1.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shared-mime-info-1.9-3.el8.x86_64.rpm", + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "name": "sqlite-libs", + "epoch": 0, + "version": "3.26.0", + "release": "13.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sqlite-libs-3.26.0-13.el8.x86_64.rpm", + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "name": "systemd", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-239-44.el8.x86_64.rpm", + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "name": "systemd-libs", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-libs-239-44.el8.x86_64.rpm", + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "name": "systemd-pam", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-pam-239-44.el8.x86_64.rpm", + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "name": "systemd-udev", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-udev-239-44.el8.x86_64.rpm", + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "name": "tar", + "epoch": 2, + "version": "1.30", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tar-1.30-5.el8.x86_64.rpm", + "checksum": "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393", + "check_gpg": true + }, + { + "name": "tpm2-tss", + "epoch": 0, + "version": "2.3.2", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tpm2-tss-2.3.2-3.el8.x86_64.rpm", + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "name": "trousers", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "name": "trousers-lib", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-lib-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "name": "tzdata", + "epoch": 0, + "version": "2021a", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tzdata-2021a-1.el8.noarch.rpm", + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "name": "util-linux", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/util-linux-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "name": "which", + "epoch": 0, + "version": "2.21", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/which-2.21-12.el8.x86_64.rpm", + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "name": "xfsprogs", + "epoch": 0, + "version": "5.0.0", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xfsprogs-5.0.0-8.el8.x86_64.rpm", + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "name": "xz", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "name": "xz-libs", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-libs-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "name": "zlib", + "epoch": 0, + "version": "1.2.11", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/zlib-1.2.11-17.el8.x86_64.rpm", + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "name": "libxkbcommon", + "epoch": 0, + "version": "0.9.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxkbcommon-0.9.1-1.el8.x86_64.rpm", + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "name": "pinentry", + "epoch": 0, + "version": "1.1.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pinentry-1.1.0-2.el8.x86_64.rpm", + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "name": "python3-pip", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pip-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:a2418e8e12144d4e84965298e7bbefedc876c0d0d93771afb9b5c6c2eb139dc0", + "check_gpg": true + }, + { + "name": "python3-unbound", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-unbound-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "name": "python36", + "epoch": 0, + "version": "3.6.8", + "release": "2.module_el8.4.0+666+456f5f48", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python36-3.6.8-2.module_el8.4.0+666+456f5f48.x86_64.rpm", + "checksum": "sha256:df417aae69f2ba5bd4324a14dcfd30dfbfefba440085bbf916c5ef19286cba20", + "check_gpg": true + }, + { + "name": "qemu-img", + "epoch": 15, + "version": "4.2.0", + "release": "35.module_el8.4.0+547+a85d02ba", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/qemu-img-4.2.0-35.module_el8.4.0+547+a85d02ba.x86_64.rpm", + "checksum": "sha256:f6f7907ccf8faa83a93e6d48801970aa45181a3a3c05ad7102b540a07534e318", + "check_gpg": true + }, + { + "name": "unbound-libs", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/unbound-libs-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "name": "xkeyboard-config", + "epoch": 0, + "version": "2.28", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xkeyboard-config-2.28-1.el8.noarch.rpm", + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ], + "packages": [ + { + "name": "ModemManager-glib", + "epoch": 0, + "version": "1.10.8", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ModemManager-glib-1.10.8-2.el8.x86_64.rpm", + "checksum": "sha256:508e9470ed648c28c1ef5a4a74072b188daa795f2369d10929f1ddbb5d3b5a3f", + "check_gpg": true + }, + { + "name": "NetworkManager", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:1d130b0daf86899c3987d59567303ce7ae44c3273f2d8d0f0625bef7e6bad16d", + "check_gpg": true + }, + { + "name": "NetworkManager-libnm", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-libnm-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:41d9c9f8e17c83f73e51e90f02e08927bb9c836d033815c6cdddc6da44e321f0", + "check_gpg": true + }, + { + "name": "NetworkManager-team", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-team-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:f60f24ba76f7f9d9f42421153d296a279fb616165a27cf2c71657a901a425bb1", + "check_gpg": true + }, + { + "name": "NetworkManager-tui", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-tui-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:657db08f58b6776f48fda17d2b734a26918b431253f9e4eba9fd5a46d9f89aef", + "check_gpg": true + }, + { + "name": "acl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/acl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "name": "audit", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:b0149d85f0172e98866ff2483660af2cf6c6fa0c8f9cab2c51cc2af479c9e319", + "check_gpg": true + }, + { + "name": "audit-libs", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "name": "authselect", + "epoch": 0, + "version": "1.2.2", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-1.2.2-1.el8.x86_64.rpm", + "checksum": "sha256:cb5072917ce75dbde8fe474fa872db85da5dbac59cc1eb4a9125e7b6280f254e", + "check_gpg": true + }, + { + "name": "authselect-libs", + "epoch": 0, + "version": "1.2.2", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-libs-1.2.2-1.el8.x86_64.rpm", + "checksum": "sha256:a217b0fbe9757a0225b66d16c1668cdf5cb2aa69c68b89e79783abd507f2e7bf", + "check_gpg": true + }, + { + "name": "basesystem", + "epoch": 0, + "version": "11", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/basesystem-11-5.el8.noarch.rpm", + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "name": "bash", + "epoch": 0, + "version": "4.4.19", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bash-4.4.19-14.el8.x86_64.rpm", + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "name": "bind-export-libs", + "epoch": 32, + "version": "9.11.26", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bind-export-libs-9.11.26-2.el8.x86_64.rpm", + "checksum": "sha256:2d4cf3bd8b8046adfa869fbb5b472294469457f6445db36abcc227959be9adeb", + "check_gpg": true + }, + { + "name": "biosdevname", + "epoch": 0, + "version": "0.7.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/biosdevname-0.7.3-2.el8.x86_64.rpm", + "checksum": "sha256:0caa72888379f82fae1bc8f448bcf0dbaead20e92f2ef4c714afadf8979c3181", + "check_gpg": true + }, + { + "name": "brotli", + "epoch": 0, + "version": "1.0.6", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/brotli-1.0.6-3.el8.x86_64.rpm", + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "name": "bubblewrap", + "epoch": 0, + "version": "0.4.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bubblewrap-0.4.0-1.el8.x86_64.rpm", + "checksum": "sha256:9e78ec1230b9ec69ef8e3ad0484cbe3b5c36cfc214d90f890a49093b22df2948", + "check_gpg": true + }, + { + "name": "bzip2-libs", + "epoch": 0, + "version": "1.0.6", + "release": "26.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.6-26.el8.x86_64.rpm", + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "name": "c-ares", + "epoch": 0, + "version": "1.13.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/c-ares-1.13.0-5.el8.x86_64.rpm", + "checksum": "sha256:9d160cdfba107ddc0613e169311bf57077c04e71a052a57704f3bdb64729d565", + "check_gpg": true + }, + { + "name": "ca-certificates", + "epoch": 0, + "version": "2020.2.41", + "release": "80.0.el8_2", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ca-certificates-2020.2.41-80.0.el8_2.noarch.rpm", + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "name": "centos-gpg-keys", + "epoch": 1, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-gpg-keys-8-2.el8.noarch.rpm", + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "name": "centos-stream-release", + "epoch": 0, + "version": "8.4", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-release-8.4-1.el8.noarch.rpm", + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "name": "centos-stream-repos", + "epoch": 0, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-repos-8-2.el8.noarch.rpm", + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "name": "checkpolicy", + "epoch": 0, + "version": "2.9", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/checkpolicy-2.9-1.el8.x86_64.rpm", + "checksum": "sha256:d5c283da0d2666742635754626263f6f78e273cd46d83d2d66ed43730a731685", + "check_gpg": true + }, + { + "name": "chkconfig", + "epoch": 0, + "version": "1.13", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chkconfig-1.13-2.el8.x86_64.rpm", + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "name": "chrony", + "epoch": 0, + "version": "3.5", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chrony-3.5-1.el8.x86_64.rpm", + "checksum": "sha256:5f3d3d3b27b7df75738d1ee31112c60d39c54b8d7f92b6900606187f6cffce1d", + "check_gpg": true + }, + { + "name": "coreutils", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "name": "coreutils-common", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-common-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "name": "cpio", + "epoch": 0, + "version": "2.12", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cpio-2.12-10.el8.x86_64.rpm", + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "name": "cracklib", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "name": "cracklib-dicts", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "name": "cronie", + "epoch": 0, + "version": "1.5.2", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-1.5.2-4.el8.x86_64.rpm", + "checksum": "sha256:63a6b7765828081cc88b36d10c68621acbebf02a7c2e7d7f1a1217c8742ea6ae", + "check_gpg": true + }, + { + "name": "cronie-anacron", + "epoch": 0, + "version": "1.5.2", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-anacron-1.5.2-4.el8.x86_64.rpm", + "checksum": "sha256:71fcbbec3aa152bc1427cb4d597375b008438f6259b20cfcb68fff21eef80f91", + "check_gpg": true + }, + { + "name": "crontabs", + "epoch": 0, + "version": "1.11", + "release": "17.20190603git.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crontabs-1.11-17.20190603git.el8.noarch.rpm", + "checksum": "sha256:bcf25aae89f7368b16346bc1ec92850175bcc2312bf7a5e74bc3c512bcd345b0", + "check_gpg": true + }, + { + "name": "crypto-policies", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "name": "crypto-policies-scripts", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-scripts-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "name": "cryptsetup-libs", + "epoch": 0, + "version": "2.3.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.3.3-2.el8.x86_64.rpm", + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "name": "curl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/curl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "name": "cyrus-sasl-lib", + "epoch": 0, + "version": "2.1.27", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-5.el8.x86_64.rpm", + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "name": "dbus", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "name": "dbus-common", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-common-1.12.8-12.el8.noarch.rpm", + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "name": "dbus-daemon", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-daemon-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "name": "dbus-glib", + "epoch": 0, + "version": "0.110", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-glib-0.110-2.el8.x86_64.rpm", + "checksum": "sha256:f86fec6c6a844fbbfbf7c806d79dd7e72e4eef9c804472547a6d3ecf34cddca6", + "check_gpg": true + }, + { + "name": "dbus-libs", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-libs-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "name": "dbus-tools", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-tools-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "name": "device-mapper", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "name": "device-mapper-libs", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "name": "dhcp-client", + "epoch": 12, + "version": "4.3.6", + "release": "44.0.1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-client-4.3.6-44.0.1.el8.x86_64.rpm", + "checksum": "sha256:084c55bef75a2ce2ab67aa4eeb6726ca59ea6d7c2b23bc6e4084f11aac7e17f8", + "check_gpg": true + }, + { + "name": "dhcp-common", + "epoch": 12, + "version": "4.3.6", + "release": "44.0.1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-common-4.3.6-44.0.1.el8.noarch.rpm", + "checksum": "sha256:7ec48db9e1e9896f29a16cbea53cdeecdd7dd2bc278c06721ebca2e71e9dcd6d", + "check_gpg": true + }, + { + "name": "dhcp-libs", + "epoch": 12, + "version": "4.3.6", + "release": "44.0.1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-libs-4.3.6-44.0.1.el8.x86_64.rpm", + "checksum": "sha256:436e93b4c072f8b6f90f41a037d017406be10c18efafc8c634f6da59bbac1105", + "check_gpg": true + }, + { + "name": "diffutils", + "epoch": 0, + "version": "3.6", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/diffutils-3.6-6.el8.x86_64.rpm", + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "name": "dmidecode", + "epoch": 1, + "version": "3.2", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dmidecode-3.2-8.el8.x86_64.rpm", + "checksum": "sha256:b2cd2dc5cf9c1c118053e7e650c6d910b1d37e810a38d90de27d80a04b702e39", + "check_gpg": true + }, + { + "name": "dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "name": "dnf-data", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-data-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "name": "dnf-plugins-core", + "epoch": 0, + "version": "4.0.18", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-plugins-core-4.0.18-3.el8.noarch.rpm", + "checksum": "sha256:c4a5df7ec884bdcc929e73e066c7def89cfb8cf53306ffcf9f33a5c9e4ae84c7", + "check_gpg": true + }, + { + "name": "dosfstools", + "epoch": 0, + "version": "4.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dosfstools-4.1-6.el8.x86_64.rpm", + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "name": "dracut", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "name": "dracut-config-generic", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-config-generic-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:760141c74870a93505dbba2174034287b6a97b9bb2b12c5ca2b7af056773b45b", + "check_gpg": true + }, + { + "name": "dracut-network", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-network-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:4a28d9fa9785d7e8515deaf5e1a381a553c37b02a81a20ddd4fa202b33413ac9", + "check_gpg": true + }, + { + "name": "dracut-squash", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-squash-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:16b34582f757aebb9bc7b0a0475458cbb186238b5b528ef8fdb099cb739ba383", + "check_gpg": true + }, + { + "name": "e2fsprogs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "name": "e2fsprogs-libs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "name": "efi-filesystem", + "epoch": 0, + "version": "3", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efi-filesystem-3-3.el8.noarch.rpm", + "checksum": "sha256:d655ee126614010e72bac89b7ecaf38b515647181a22940cb774647442d28beb", + "check_gpg": true + }, + { + "name": "efivar-libs", + "epoch": 0, + "version": "37", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efivar-libs-37-4.el8.x86_64.rpm", + "checksum": "sha256:48bfe66d6f07baf1974355e8a3ebbc44f2d9812b823ddfff1c15f35635a8dc4e", + "check_gpg": true + }, + { + "name": "elfutils-debuginfod-client", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "name": "elfutils-default-yama-scope", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.182-3.el8.noarch.rpm", + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "name": "elfutils-libelf", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libelf-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "name": "elfutils-libs", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libs-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "name": "ethtool", + "epoch": 2, + "version": "5.8", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ethtool-5.8-5.el8.x86_64.rpm", + "checksum": "sha256:f7e6debd0279cb07f0c805d90b707c187bb55b9ee34643898eec800b79fa6b1b", + "check_gpg": true + }, + { + "name": "expat", + "epoch": 0, + "version": "2.2.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/expat-2.2.5-4.el8.x86_64.rpm", + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "name": "file", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "name": "file-libs", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-libs-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "name": "filesystem", + "epoch": 0, + "version": "3.8", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/filesystem-3.8-4.el8.x86_64.rpm", + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "name": "findutils", + "epoch": 1, + "version": "4.6.0", + "release": "20.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/findutils-4.6.0-20.el8.x86_64.rpm", + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "name": "firewalld", + "epoch": 0, + "version": "0.8.2", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/firewalld-0.8.2-6.el8.noarch.rpm", + "checksum": "sha256:7bfc1981e5e1fd706c23ba10090dd05fb0828df11aa98a3dc89ee8b1d2663f7a", + "check_gpg": true + }, + { + "name": "firewalld-filesystem", + "epoch": 0, + "version": "0.8.2", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/firewalld-filesystem-0.8.2-6.el8.noarch.rpm", + "checksum": "sha256:638eb361523ce75963c8234fdeb6df8084a62e09a7ff5b00125b507955a28b28", + "check_gpg": true + }, + { + "name": "freetype", + "epoch": 0, + "version": "2.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/freetype-2.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "name": "fuse-libs", + "epoch": 0, + "version": "2.9.7", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-libs-2.9.7-12.el8.x86_64.rpm", + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "name": "fwupd", + "epoch": 0, + "version": "1.5.5", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fwupd-1.5.5-1.el8.x86_64.rpm", + "checksum": "sha256:6710a1b2f28e5ffd0fff3e74a76d84d12a602be79703e53e1a55166f2f7d141c", + "check_gpg": true + }, + { + "name": "gawk", + "epoch": 0, + "version": "4.2.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gawk-4.2.1-2.el8.x86_64.rpm", + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "name": "gdbm", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "name": "gdbm-libs", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-libs-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "name": "gdisk", + "epoch": 0, + "version": "1.0.3", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdisk-1.0.3-6.el8.x86_64.rpm", + "checksum": "sha256:fa0b90c4da7f7ca8bf40055be5641a2c57708931fec5f760a2f8944325669fe9", + "check_gpg": true + }, + { + "name": "gettext", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "name": "gettext-libs", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-libs-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "name": "glib2", + "epoch": 0, + "version": "2.56.4", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib2-2.56.4-9.el8.x86_64.rpm", + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "name": "glibc", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "name": "glibc-common", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-common-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "name": "glibc-langpack-en", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-langpack-en-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:3162a4a9159994002c3c6f5fe6a12160020e8f3484f1406ff5092311ca639548", + "check_gpg": true + }, + { + "name": "gmp", + "epoch": 1, + "version": "6.1.2", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gmp-6.1.2-10.el8.x86_64.rpm", + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "name": "gnupg2", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "name": "gnupg2-smime", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-smime-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "name": "gnutls", + "epoch": 0, + "version": "3.6.14", + "release": "7.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnutls-3.6.14-7.el8_3.x86_64.rpm", + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "name": "gobject-introspection", + "epoch": 0, + "version": "1.56.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gobject-introspection-1.56.1-1.el8.x86_64.rpm", + "checksum": "sha256:7e2804a4494d4179ed50c0c99da1e30c3a6abf8db889c1412b458943cff0e3e5", + "check_gpg": true + }, + { + "name": "gpgme", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gpgme-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "name": "grep", + "epoch": 0, + "version": "3.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grep-3.1-6.el8.x86_64.rpm", + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "name": "groff-base", + "epoch": 0, + "version": "1.22.3", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/groff-base-1.22.3-18.el8.x86_64.rpm", + "checksum": "sha256:b00855013100d3796e9ed6d82b1ab2d4dc7f4a3a3fa2e186f6de8523577974a0", + "check_gpg": true + }, + { + "name": "grub2-common", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-common-2.02-93.el8.noarch.rpm", + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "name": "grub2-efi-x64", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-efi-x64-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:79277d872ae6035009a1a40e914ec09bca21aefcac9d73dee65880c86387f3c9", + "check_gpg": true + }, + { + "name": "grub2-pc", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "name": "grub2-pc-modules", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-modules-2.02-93.el8.noarch.rpm", + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "name": "grub2-tools", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "name": "grub2-tools-extra", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-extra-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "name": "grub2-tools-minimal", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-minimal-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "name": "grubby", + "epoch": 0, + "version": "8.40", + "release": "41.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grubby-8.40-41.el8.x86_64.rpm", + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "name": "gzip", + "epoch": 0, + "version": "1.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gzip-1.9-12.el8.x86_64.rpm", + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "name": "hardlink", + "epoch": 1, + "version": "1.3", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hardlink-1.3-6.el8.x86_64.rpm", + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "name": "hdparm", + "epoch": 0, + "version": "9.54", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hdparm-9.54-3.el8.x86_64.rpm", + "checksum": "sha256:3c6650fd6e32fdc24b8cf1f7a85ae8232661b47bda7019e49fd0eb474683ff23", + "check_gpg": true + }, + { + "name": "hostname", + "epoch": 0, + "version": "3.20", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hostname-3.20-6.el8.x86_64.rpm", + "checksum": "sha256:7a7963e2052bfb45b8569f64619dc5cb92fe8aeb78c754b7cf948b9784646785", + "check_gpg": true + }, + { + "name": "hwdata", + "epoch": 0, + "version": "0.314", + "release": "8.7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hwdata-0.314-8.7.el8.noarch.rpm", + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "name": "ima-evm-utils", + "epoch": 0, + "version": "1.3.2", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ima-evm-utils-1.3.2-11.el8.x86_64.rpm", + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "name": "info", + "epoch": 0, + "version": "6.5", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/info-6.5-6.el8.x86_64.rpm", + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "name": "initscripts", + "epoch": 0, + "version": "10.00.12", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/initscripts-10.00.12-1.el8.x86_64.rpm", + "checksum": "sha256:7fa8fbc576f7d54c388fa39fc3ed86bacb7964cac4544c48b3ffabcdcdc27b61", + "check_gpg": true + }, + { + "name": "ipcalc", + "epoch": 0, + "version": "0.2.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipcalc-0.2.4-4.el8.x86_64.rpm", + "checksum": "sha256:dea18976861575d40ffca814dee08a225376c7828a5afc9e5d0a383edd3d8907", + "check_gpg": true + }, + { + "name": "iproute", + "epoch": 0, + "version": "5.9.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iproute-5.9.0-2.el8.x86_64.rpm", + "checksum": "sha256:a456039834ccc5432949120f1d80b18329b552cf44d1b59ea1b60d2192e7bc5c", + "check_gpg": true + }, + { + "name": "iprutils", + "epoch": 0, + "version": "2.4.19", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iprutils-2.4.19-1.el8.x86_64.rpm", + "checksum": "sha256:d9acc32cf03ac203066bfa8d6d3f71eaedbad719f3ffc5056a387b548ae958e8", + "check_gpg": true + }, + { + "name": "ipset", + "epoch": 0, + "version": "7.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipset-7.1-1.el8.x86_64.rpm", + "checksum": "sha256:82e27237686171b812aee7903c11ec4f8dbdb6544e419758fb0fbd61731044b0", + "check_gpg": true + }, + { + "name": "ipset-libs", + "epoch": 0, + "version": "7.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipset-libs-7.1-1.el8.x86_64.rpm", + "checksum": "sha256:6f699a1e24a6bb76904ef1a588e3b3ef116cad07a5cbad86c6cdb522c00670dd", + "check_gpg": true + }, + { + "name": "iptables", + "epoch": 0, + "version": "1.8.4", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-1.8.4-17.el8.x86_64.rpm", + "checksum": "sha256:0c6624b9391a76c0f9e54c387641bd4ed079c3bfc30e8f890afc4203955b2acb", + "check_gpg": true + }, + { + "name": "iptables-ebtables", + "epoch": 0, + "version": "1.8.4", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-ebtables-1.8.4-17.el8.x86_64.rpm", + "checksum": "sha256:59683b6fff42b40d3a3abbdeb928bb18b4cd84700aaeb9b3c76d37044ae94e01", + "check_gpg": true + }, + { + "name": "iptables-libs", + "epoch": 0, + "version": "1.8.4", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-libs-1.8.4-17.el8.x86_64.rpm", + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "name": "iputils", + "epoch": 0, + "version": "20180629", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iputils-20180629-6.el8.x86_64.rpm", + "checksum": "sha256:74b842ba3352d7c4ada7e991aeadf8749f058a4d00ccc6f79f1c82a281497cb7", + "check_gpg": true + }, + { + "name": "irqbalance", + "epoch": 2, + "version": "1.4.0", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/irqbalance-1.4.0-6.el8.x86_64.rpm", + "checksum": "sha256:3acd2c8b6ea534811308b3138859b5fa150b89604bb60f16b0650747039d696a", + "check_gpg": true + }, + { + "name": "iwl100-firmware", + "epoch": 0, + "version": "39.31.5.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl100-firmware-39.31.5.1-102.el8.1.noarch.rpm", + "checksum": "sha256:e0564d34fde9cf1a42e0fd4ba81ea7ce71bcca8823186f0221e56994bef275c6", + "check_gpg": true + }, + { + "name": "iwl1000-firmware", + "epoch": 1, + "version": "39.31.5.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl1000-firmware-39.31.5.1-102.el8.1.noarch.rpm", + "checksum": "sha256:078fa234177ae5ae2736c878aa2a2f8ecccf4c7772ab4ad19a2d6ba4f34e8631", + "check_gpg": true + }, + { + "name": "iwl105-firmware", + "epoch": 0, + "version": "18.168.6.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl105-firmware-18.168.6.1-102.el8.1.noarch.rpm", + "checksum": "sha256:cdd8e0a970aaaa23637f553692d755a0f57282c4494d31094638b6d4633ec523", + "check_gpg": true + }, + { + "name": "iwl135-firmware", + "epoch": 0, + "version": "18.168.6.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl135-firmware-18.168.6.1-102.el8.1.noarch.rpm", + "checksum": "sha256:5c686be3533457b6ac047ac804aa54f74ee3a455047d3866dcef7a4da9d95fc6", + "check_gpg": true + }, + { + "name": "iwl2000-firmware", + "epoch": 0, + "version": "18.168.6.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl2000-firmware-18.168.6.1-102.el8.1.noarch.rpm", + "checksum": "sha256:d01c5733267171fc234d7ab5387c17cb61e9fdec8f9eb792ea63c8ffb5bafb6c", + "check_gpg": true + }, + { + "name": "iwl2030-firmware", + "epoch": 0, + "version": "18.168.6.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl2030-firmware-18.168.6.1-102.el8.1.noarch.rpm", + "checksum": "sha256:b6e327a5fca1efc26c920c42d104dbdafd9e4676681bbd1f28dab81c51677db8", + "check_gpg": true + }, + { + "name": "iwl3160-firmware", + "epoch": 1, + "version": "25.30.13.0", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl3160-firmware-25.30.13.0-102.el8.1.noarch.rpm", + "checksum": "sha256:0f817ea59939bdd0311c8da8369f5c037e340443198ccef659696f67bd2ddcd1", + "check_gpg": true + }, + { + "name": "iwl5000-firmware", + "epoch": 0, + "version": "8.83.5.1_1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl5000-firmware-8.83.5.1_1-102.el8.1.noarch.rpm", + "checksum": "sha256:d7ae9cdbdd754c544d766c8e9748f24f580cd3a4c7c6c4d6203060e966299723", + "check_gpg": true + }, + { + "name": "iwl5150-firmware", + "epoch": 0, + "version": "8.24.2.2", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl5150-firmware-8.24.2.2-102.el8.1.noarch.rpm", + "checksum": "sha256:dbded0760a358f62ec416ce37ffd764c725f8e898479b17173e632debc1a06ae", + "check_gpg": true + }, + { + "name": "iwl6000-firmware", + "epoch": 0, + "version": "9.221.4.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl6000-firmware-9.221.4.1-102.el8.1.noarch.rpm", + "checksum": "sha256:39e27e147189e0e431527acfca51d9436149fe7c0fee1399289ea9a4862948cc", + "check_gpg": true + }, + { + "name": "iwl6000g2a-firmware", + "epoch": 0, + "version": "18.168.6.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl6000g2a-firmware-18.168.6.1-102.el8.1.noarch.rpm", + "checksum": "sha256:01b808f1ea9299c37c80164d05ef1a5c45e05d53bcbd451b4d52e69a47959bc2", + "check_gpg": true + }, + { + "name": "iwl6050-firmware", + "epoch": 0, + "version": "41.28.5.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl6050-firmware-41.28.5.1-102.el8.1.noarch.rpm", + "checksum": "sha256:3793552ff28a7026a6299d8d5d8d50a467f27654524c8e438e2058040d7e6d6c", + "check_gpg": true + }, + { + "name": "iwl7260-firmware", + "epoch": 1, + "version": "25.30.13.0", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl7260-firmware-25.30.13.0-102.el8.1.noarch.rpm", + "checksum": "sha256:e8594d934926d149266098dbb6686b604caa4d8255895ebd732d55ca4e7f0248", + "check_gpg": true + }, + { + "name": "jansson", + "epoch": 0, + "version": "2.11", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/jansson-2.11-3.el8.x86_64.rpm", + "checksum": "sha256:a06e1d34df03aaf429d290d5c281356fefe0ad510c229189405b88b3c0f40374", + "check_gpg": true + }, + { + "name": "json-c", + "epoch": 0, + "version": "0.13.1", + "release": "0.4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-c-0.13.1-0.4.el8.x86_64.rpm", + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "name": "json-glib", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-glib-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:98a6386df94fc9595365c3ecbc630708420fa68d1774614a723dec4a55e84b9c", + "check_gpg": true + }, + { + "name": "kbd", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-2.0.4-10.el8.x86_64.rpm", + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "name": "kbd-legacy", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-legacy-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "name": "kbd-misc", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-misc-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "name": "kernel", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:c44dbbff4fe503f5f49b71ab17db7848c6c67fe19d9a4cc6cef59cc6dd15f1a6", + "check_gpg": true + }, + { + "name": "kernel-core", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:aa938dc6f13d0d57ca811b8c299b1017723fa419997b87754f74db770430c2d9", + "check_gpg": true + }, + { + "name": "kernel-modules", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:da77940ecadc9edb5d14aad51e4bf06664e5763fe6e46b20364732ec3aa2e08a", + "check_gpg": true + }, + { + "name": "kernel-tools", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:5f45a2ff1a9c9f3d4fcae463c1ca70b1a16caccc59816ce391f064c9d8b9d8ae", + "check_gpg": true + }, + { + "name": "kernel-tools-libs", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-libs-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:ab1be3dcea74c7a7fac49f9a1cad4113fded2d3edabb61b29ed8489a737033fe", + "check_gpg": true + }, + { + "name": "kexec-tools", + "epoch": 0, + "version": "2.0.20", + "release": "45.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kexec-tools-2.0.20-45.el8.x86_64.rpm", + "checksum": "sha256:4280042747c9027c3252d360fa33d63490aa518858849115b20162a097a37146", + "check_gpg": true + }, + { + "name": "keyutils-libs", + "epoch": 0, + "version": "1.5.10", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-libs-1.5.10-6.el8.x86_64.rpm", + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "name": "kmod", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-25-17.el8.x86_64.rpm", + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "name": "kmod-libs", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-libs-25-17.el8.x86_64.rpm", + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "name": "kpartx", + "epoch": 0, + "version": "0.8.4", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kpartx-0.8.4-8.el8.x86_64.rpm", + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "name": "krb5-libs", + "epoch": 0, + "version": "1.18.2", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/krb5-libs-1.18.2-8.el8.x86_64.rpm", + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "name": "less", + "epoch": 0, + "version": "530", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/less-530-1.el8.x86_64.rpm", + "checksum": "sha256:f94172554b8ceeab97b560d0b05c2e2df4b2e737471adce6eca82fd3209be254", + "check_gpg": true + }, + { + "name": "libacl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libacl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "name": "libarchive", + "epoch": 0, + "version": "3.3.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libarchive-3.3.3-1.el8.x86_64.rpm", + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "name": "libassuan", + "epoch": 0, + "version": "2.5.1", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libassuan-2.5.1-3.el8.x86_64.rpm", + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "name": "libattr", + "epoch": 0, + "version": "2.4.48", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libattr-2.4.48-3.el8.x86_64.rpm", + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "name": "libbasicobjects", + "epoch": 0, + "version": "0.1.1", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libbasicobjects-0.1.1-39.el8.x86_64.rpm", + "checksum": "sha256:5452b96e4b57c275dd41e48d55af1ca4f77ccfb3ae403796e599a039d7382b91", + "check_gpg": true + }, + { + "name": "libblkid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libblkid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "name": "libcap", + "epoch": 0, + "version": "2.26", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-2.26-4.el8.x86_64.rpm", + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "name": "libcap-ng", + "epoch": 0, + "version": "0.7.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-ng-0.7.9-5.el8.x86_64.rpm", + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "name": "libcollection", + "epoch": 0, + "version": "0.7.0", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcollection-0.7.0-39.el8.x86_64.rpm", + "checksum": "sha256:708a8fd75f7c6987d66e2d62de664b5a84c6f75fd4e5230e244681897b15a25d", + "check_gpg": true + }, + { + "name": "libcom_err", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcom_err-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "name": "libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "name": "libcroco", + "epoch": 0, + "version": "0.6.12", + "release": "4.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcroco-0.6.12-4.el8_2.1.x86_64.rpm", + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "name": "libcurl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcurl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "name": "libdaemon", + "epoch": 0, + "version": "0.14", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdaemon-0.14-15.el8.x86_64.rpm", + "checksum": "sha256:dae52ddd215b506d1805b66873194df5043fd758d42960dee68f029eab329b42", + "check_gpg": true + }, + { + "name": "libdb", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "name": "libdb-utils", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-utils-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "name": "libdhash", + "epoch": 0, + "version": "0.5.0", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdhash-0.5.0-39.el8.x86_64.rpm", + "checksum": "sha256:6327624b7b0d726a3c95f2245619efb1df8e70023fadcc8158afed39f57859e7", + "check_gpg": true + }, + { + "name": "libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "name": "libedit", + "epoch": 0, + "version": "3.1", + "release": "23.20170329cvs.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libedit-3.1-23.20170329cvs.el8.x86_64.rpm", + "checksum": "sha256:08b76b0af07db4d3b27776a96bb7d0dc0f02b7219569676ac79036190d731d5b", + "check_gpg": true + }, + { + "name": "libevent", + "epoch": 0, + "version": "2.1.8", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libevent-2.1.8-5.el8.x86_64.rpm", + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "name": "libfdisk", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libfdisk-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "name": "libffi", + "epoch": 0, + "version": "3.1", + "release": "22.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libffi-3.1-22.el8.x86_64.rpm", + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "name": "libgcab1", + "epoch": 0, + "version": "1.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcab1-1.1-1.el8.x86_64.rpm", + "checksum": "sha256:d9d8c21ad40e59b78008f1a569039462e5654a9d4bb08d84cf032e34cf7bde62", + "check_gpg": true + }, + { + "name": "libgcc", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcc-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "name": "libgcrypt", + "epoch": 0, + "version": "1.8.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcrypt-1.8.5-4.el8.x86_64.rpm", + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "name": "libgomp", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgomp-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "name": "libgpg-error", + "epoch": 0, + "version": "1.31", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgpg-error-1.31-1.el8.x86_64.rpm", + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "name": "libgudev", + "epoch": 0, + "version": "232", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgudev-232-4.el8.x86_64.rpm", + "checksum": "sha256:cb6b773c2ac78142736abd8a8f9eaac122f4647aefd3f003a615baf79abbefbb", + "check_gpg": true + }, + { + "name": "libgusb", + "epoch": 0, + "version": "0.3.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgusb-0.3.0-1.el8.x86_64.rpm", + "checksum": "sha256:ab7bc1a828168006b88934bea949ab2b29b837b0a431f7da1a12147f64f6ddb5", + "check_gpg": true + }, + { + "name": "libibverbs", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libibverbs-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "name": "libidn2", + "epoch": 0, + "version": "2.2.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libidn2-2.2.0-1.el8.x86_64.rpm", + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "name": "libini_config", + "epoch": 0, + "version": "1.3.1", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libini_config-1.3.1-39.el8.x86_64.rpm", + "checksum": "sha256:b06fa62d0a585a7bc3b9d3341923736b3ee4b6cc6d7ca83bebcb97225ca86ac9", + "check_gpg": true + }, + { + "name": "libkcapi", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "name": "libkcapi-hmaccalc", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-hmaccalc-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "name": "libksba", + "epoch": 0, + "version": "1.3.5", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libksba-1.3.5-7.el8.x86_64.rpm", + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "name": "libldb", + "epoch": 0, + "version": "2.2.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libldb-2.2.0-1.el8.x86_64.rpm", + "checksum": "sha256:1b5187e9b694e439a059be58d8de5317f04278371d1195bf000b001ba8699197", + "check_gpg": true + }, + { + "name": "libmbim", + "epoch": 0, + "version": "1.20.2", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmbim-1.20.2-1.el8.x86_64.rpm", + "checksum": "sha256:e2549a249d537f80f6595816a1094532c3feb0a730585d102c580583cc1dfde4", + "check_gpg": true + }, + { + "name": "libmetalink", + "epoch": 0, + "version": "0.1.3", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmetalink-0.1.3-7.el8.x86_64.rpm", + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "name": "libmnl", + "epoch": 0, + "version": "1.0.4", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmnl-1.0.4-6.el8.x86_64.rpm", + "checksum": "sha256:30fab73ee155f03dbbd99c1e30fe59dfba4ae8fdb2e7213451ccc36d6918bfcc", + "check_gpg": true + }, + { + "name": "libmodulemd", + "epoch": 0, + "version": "2.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodulemd-2.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "name": "libmount", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmount-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "name": "libndp", + "epoch": 0, + "version": "1.7", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libndp-1.7-3.el8.x86_64.rpm", + "checksum": "sha256:c357a350aa169402db3c898c7edcfee333e1d11a44f62bbeaba3fd3d2f31644d", + "check_gpg": true + }, + { + "name": "libnetfilter_conntrack", + "epoch": 0, + "version": "1.0.6", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnetfilter_conntrack-1.0.6-5.el8.x86_64.rpm", + "checksum": "sha256:224100af3ecfc80c416796ec02c7c4dd113a38d42349d763485f3b42f260493f", + "check_gpg": true + }, + { + "name": "libnfnetlink", + "epoch": 0, + "version": "1.0.1", + "release": "13.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnfnetlink-1.0.1-13.el8.x86_64.rpm", + "checksum": "sha256:cec98aa5fbefcb99715921b493b4f92d34c4eeb823e9c8741aa75e280def89f1", + "check_gpg": true + }, + { + "name": "libnfsidmap", + "epoch": 1, + "version": "2.3.3", + "release": "41.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnfsidmap-2.3.3-41.el8.x86_64.rpm", + "checksum": "sha256:8852282172440cd618c695356449cbc035be4091b2a0833c785c8e42cc1df0e6", + "check_gpg": true + }, + { + "name": "libnftnl", + "epoch": 0, + "version": "1.1.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnftnl-1.1.5-4.el8.x86_64.rpm", + "checksum": "sha256:c1bb77ed45ae47dc068445c6dfa4b70b273a3daf8cd82b9fa7a50e3d59abe3c1", + "check_gpg": true + }, + { + "name": "libnghttp2", + "epoch": 0, + "version": "1.33.0", + "release": "3.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnghttp2-1.33.0-3.el8_2.1.x86_64.rpm", + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "name": "libnl3", + "epoch": 0, + "version": "3.5.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-3.5.0-1.el8.x86_64.rpm", + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "name": "libnl3-cli", + "epoch": 0, + "version": "3.5.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-cli-3.5.0-1.el8.x86_64.rpm", + "checksum": "sha256:2e8d4ee76fa8678b0e4d6c0297b16f96e0116201bf96b36e8924b1b080abcddd", + "check_gpg": true + }, + { + "name": "libnsl2", + "epoch": 0, + "version": "1.2.0", + "release": "2.20180605git4a062cf.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64.rpm", + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "name": "libpath_utils", + "epoch": 0, + "version": "0.2.1", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpath_utils-0.2.1-39.el8.x86_64.rpm", + "checksum": "sha256:185f36b3af9367e6142233af358df22f23ee623697bc6a45c47091013707872e", + "check_gpg": true + }, + { + "name": "libpcap", + "epoch": 14, + "version": "1.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpcap-1.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "name": "libpipeline", + "epoch": 0, + "version": "1.5.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpipeline-1.5.0-2.el8.x86_64.rpm", + "checksum": "sha256:9eb9c1a67c5be04487cc133bdb8498eaf260e4d930a0143d2e1aa772e3d6cf64", + "check_gpg": true + }, + { + "name": "libpng", + "epoch": 2, + "version": "1.6.34", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpng-1.6.34-5.el8.x86_64.rpm", + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "name": "libpsl", + "epoch": 0, + "version": "0.20.2", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpsl-0.20.2-6.el8.x86_64.rpm", + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "name": "libpwquality", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "name": "libqmi", + "epoch": 0, + "version": "1.24.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libqmi-1.24.0-1.el8.x86_64.rpm", + "checksum": "sha256:406aea2bb2a5f83cabee5a50bad08a3516776c3cd42db8b159f926624f61aa42", + "check_gpg": true + }, + { + "name": "libref_array", + "epoch": 0, + "version": "0.1.5", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libref_array-0.1.5-39.el8.x86_64.rpm", + "checksum": "sha256:6b740563ba5858573ff3c2d2a827aeaf6e7166178e36066755d2cde4cf8a016f", + "check_gpg": true + }, + { + "name": "librepo", + "epoch": 0, + "version": "1.12.0", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/librepo-1.12.0-3.el8.x86_64.rpm", + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "name": "libreport-filesystem", + "epoch": 0, + "version": "2.9.5", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libreport-filesystem-2.9.5-15.el8.x86_64.rpm", + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "name": "libseccomp", + "epoch": 0, + "version": "2.4.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libseccomp-2.4.3-1.el8.x86_64.rpm", + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "name": "libsecret", + "epoch": 0, + "version": "0.18.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsecret-0.18.6-1.el8.x86_64.rpm", + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "name": "libselinux", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "name": "libselinux-utils", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-utils-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "name": "libsemanage", + "epoch": 0, + "version": "2.9", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsemanage-2.9-6.el8.x86_64.rpm", + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "name": "libsepol", + "epoch": 0, + "version": "2.9", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsepol-2.9-2.el8.x86_64.rpm", + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "name": "libsigsegv", + "epoch": 0, + "version": "2.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsigsegv-2.11-5.el8.x86_64.rpm", + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "name": "libsmartcols", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmartcols-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "name": "libsmbios", + "epoch": 0, + "version": "2.4.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmbios-2.4.1-2.el8.x86_64.rpm", + "checksum": "sha256:5092704c041bb246eaafd478bedface3f99ce8fa233ada5cf96807f67e980e42", + "check_gpg": true + }, + { + "name": "libsolv", + "epoch": 0, + "version": "0.7.16", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsolv-0.7.16-2.el8.x86_64.rpm", + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "name": "libss", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libss-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "name": "libssh", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-0.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "name": "libssh-config", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-config-0.9.4-2.el8.noarch.rpm", + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "name": "libsss_autofs", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_autofs-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:1230ddb5d92fe538a0526e3a9f05563a111ae4ff1978fc8e18de889974b5b46c", + "check_gpg": true + }, + { + "name": "libsss_certmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_certmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:ef2734017b25f7e9e1abf67315a7d1c97216642b5dfb979c19b1a3f74cff1e54", + "check_gpg": true + }, + { + "name": "libsss_idmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_idmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:377ad20c1681518bff1f40884589bddc4a692506384c7676f072ddf86ae429f9", + "check_gpg": true + }, + { + "name": "libsss_nss_idmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_nss_idmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:2c6dd4f21d9c4bde29f693d32e44f0d1c5dc73d78d013767df531d69bbfc6ed8", + "check_gpg": true + }, + { + "name": "libsss_sudo", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_sudo-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:370b74a811249b8f0bdfcd34137507f058a85196775e9d0d2bb244c100d194ae", + "check_gpg": true + }, + { + "name": "libstdc++", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstdc++-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "name": "libsysfs", + "epoch": 0, + "version": "2.1.0", + "release": "24.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsysfs-2.1.0-24.el8.x86_64.rpm", + "checksum": "sha256:53ae3ecd59ec61852cabbd039c748ed63ceb6a88da98587d4c33323ba4095154", + "check_gpg": true + }, + { + "name": "libtalloc", + "epoch": 0, + "version": "2.3.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtalloc-2.3.1-2.el8.x86_64.rpm", + "checksum": "sha256:918518368513d162d772dfc5d16536ad2799276bcba2f47514a1c7098de2b43f", + "check_gpg": true + }, + { + "name": "libtasn1", + "epoch": 0, + "version": "4.13", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtasn1-4.13-3.el8.x86_64.rpm", + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "name": "libtdb", + "epoch": 0, + "version": "1.4.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtdb-1.4.3-1.el8.x86_64.rpm", + "checksum": "sha256:a5228fc876cffc7dc79769ada5653cb9bfb80d469fb3c9f0acc14a1a0d15782d", + "check_gpg": true + }, + { + "name": "libteam", + "epoch": 0, + "version": "1.31", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libteam-1.31-2.el8.x86_64.rpm", + "checksum": "sha256:0aaaaa29cc1bb4d358142db6eb7d12df9252a8166bf61956203878eed210785c", + "check_gpg": true + }, + { + "name": "libtevent", + "epoch": 0, + "version": "0.10.2", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtevent-0.10.2-2.el8.x86_64.rpm", + "checksum": "sha256:b8e4cfecbbe7d2d6d9f3003432e826398f6bea21d5aba11a17ee74358cb84a6e", + "check_gpg": true + }, + { + "name": "libtirpc", + "epoch": 0, + "version": "1.1.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtirpc-1.1.4-4.el8.x86_64.rpm", + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "name": "libunistring", + "epoch": 0, + "version": "0.9.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libunistring-0.9.9-3.el8.x86_64.rpm", + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "name": "libusbx", + "epoch": 0, + "version": "1.0.23", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libusbx-1.0.23-4.el8.x86_64.rpm", + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "name": "libuser", + "epoch": 0, + "version": "0.62", + "release": "23.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuser-0.62-23.el8.x86_64.rpm", + "checksum": "sha256:70b5e4e580da72969ad3bb144c15293910b7d679e195c118cee60d8320f01851", + "check_gpg": true + }, + { + "name": "libutempter", + "epoch": 0, + "version": "1.1.6", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libutempter-1.1.6-14.el8.x86_64.rpm", + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "name": "libuuid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuuid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "name": "libverto", + "epoch": 0, + "version": "0.3.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-0.3.0-5.el8.x86_64.rpm", + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "name": "libxcrypt", + "epoch": 0, + "version": "4.1.1", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxcrypt-4.1.1-4.el8.x86_64.rpm", + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "name": "libxml2", + "epoch": 0, + "version": "2.9.7", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxml2-2.9.7-9.el8.x86_64.rpm", + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "name": "libxmlb", + "epoch": 0, + "version": "0.1.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxmlb-0.1.15-1.el8.x86_64.rpm", + "checksum": "sha256:5b7763510f4badd05a1647e1fadf9dc49044b1cf4d754262d0d6d5ee9a8f3b12", + "check_gpg": true + }, + { + "name": "libyaml", + "epoch": 0, + "version": "0.1.7", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libyaml-0.1.7-5.el8.x86_64.rpm", + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "name": "libzstd", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libzstd-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "name": "linux-firmware", + "epoch": 0, + "version": "20201218", + "release": "102.git05789708.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/linux-firmware-20201218-102.git05789708.el8.noarch.rpm", + "checksum": "sha256:cad76a2802c5f355b527df3cabde70bd58b31ec4b7de3b1ac15a429cda5b9b03", + "check_gpg": true + }, + { + "name": "lmdb-libs", + "epoch": 0, + "version": "0.9.24", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lmdb-libs-0.9.24-1.el8.x86_64.rpm", + "checksum": "sha256:0064a3aeff41fb7345c061956c35e4b9d0b8802954e717491fb6eb51028d22fd", + "check_gpg": true + }, + { + "name": "logrotate", + "epoch": 0, + "version": "3.14.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/logrotate-3.14.0-4.el8.x86_64.rpm", + "checksum": "sha256:3cd092e6e03efb4bb49b91dedd52b43f891092d04a2ff040b9f2197ec2082511", + "check_gpg": true + }, + { + "name": "lshw", + "epoch": 0, + "version": "B.02.19.2", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lshw-B.02.19.2-5.el8.x86_64.rpm", + "checksum": "sha256:fda078d8edd4e0902246dd3121efb6c57cb8231dbb975380f9249c64163f0d88", + "check_gpg": true + }, + { + "name": "lsscsi", + "epoch": 0, + "version": "0.32", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lsscsi-0.32-2.el8.x86_64.rpm", + "checksum": "sha256:c8fc05dd997477fc80e2f3195e719ca2e569fc8997f05a64a13c52c8358e8239", + "check_gpg": true + }, + { + "name": "lua-libs", + "epoch": 0, + "version": "5.3.4", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lua-libs-5.3.4-11.el8.x86_64.rpm", + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "name": "lz4-libs", + "epoch": 0, + "version": "1.8.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lz4-libs-1.8.3-2.el8.x86_64.rpm", + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "name": "lzo", + "epoch": 0, + "version": "2.08", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lzo-2.08-14.el8.x86_64.rpm", + "checksum": "sha256:5c68635cb03533a38d4a42f6547c21a1d5f9952351bb01f3cf865d2621a6e634", + "check_gpg": true + }, + { + "name": "man-db", + "epoch": 0, + "version": "2.7.6.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/man-db-2.7.6.1-17.el8.x86_64.rpm", + "checksum": "sha256:a0b6a8d5530f5003f5c8d56211246cd1130a5b4dc1396dc50da70ce0e128b02c", + "check_gpg": true + }, + { + "name": "mdadm", + "epoch": 0, + "version": "4.1", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mdadm-4.1-15.el8.x86_64.rpm", + "checksum": "sha256:0560d3b3e915221aad94ddf83169bd680b1f0da9aa8ec8e9360bcb8fe071483e", + "check_gpg": true + }, + { + "name": "memstrack", + "epoch": 0, + "version": "0.1.11", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/memstrack-0.1.11-1.el8.x86_64.rpm", + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "name": "microcode_ctl", + "epoch": 4, + "version": "20201112", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/microcode_ctl-20201112-2.el8.x86_64.rpm", + "checksum": "sha256:bce152ddd2f05f892e5ce483a7c12606ba7d2c42108402fc9609ada04048e6df", + "check_gpg": true + }, + { + "name": "mokutil", + "epoch": 1, + "version": "0.3.0", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mokutil-0.3.0-11.el8.x86_64.rpm", + "checksum": "sha256:1c4b186665558747023a60d0d662d3780a1bc49e578062f4b70100c71ab2220c", + "check_gpg": true + }, + { + "name": "mozjs60", + "epoch": 0, + "version": "60.9.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mozjs60-60.9.0-4.el8.x86_64.rpm", + "checksum": "sha256:03b50a4ea5cf5655c67e2358fabb6e563eec4e7929e7fc6c4e92c92694f60fa0", + "check_gpg": true + }, + { + "name": "mpfr", + "epoch": 0, + "version": "3.1.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mpfr-3.1.6-1.el8.x86_64.rpm", + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "name": "ncurses", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "name": "ncurses-base", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-base-6.1-7.20180224.el8.noarch.rpm", + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "name": "ncurses-libs", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-libs-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "name": "net-tools", + "epoch": 0, + "version": "2.0", + "release": "0.52.20160912git.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/net-tools-2.0-0.52.20160912git.el8.x86_64.rpm", + "checksum": "sha256:c56cde3b8bc11965fa73b9baf59ab5fa7f6a45a950d5b6b369cf4679c17295ca", + "check_gpg": true + }, + { + "name": "nettle", + "epoch": 0, + "version": "3.4.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nettle-3.4.1-2.el8.x86_64.rpm", + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "name": "newt", + "epoch": 0, + "version": "0.52.20", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/newt-0.52.20-11.el8.x86_64.rpm", + "checksum": "sha256:c9df7c58da59500e1717e435c565e221daa344212db8e83eb33b6a9c8e9a67bb", + "check_gpg": true + }, + { + "name": "nftables", + "epoch": 1, + "version": "0.9.3", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nftables-0.9.3-17.el8.x86_64.rpm", + "checksum": "sha256:0b763d946ec7da165107258469e7655707caa6fde0fff49e9e89d747e13eacc1", + "check_gpg": true + }, + { + "name": "npth", + "epoch": 0, + "version": "1.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/npth-1.5-4.el8.x86_64.rpm", + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "name": "numactl-libs", + "epoch": 0, + "version": "2.0.12", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/numactl-libs-2.0.12-11.el8.x86_64.rpm", + "checksum": "sha256:5e24dd39ae59ef7b7a386f28509cc80d8fabb23f0932e52ea365cf064ff76c59", + "check_gpg": true + }, + { + "name": "openldap", + "epoch": 0, + "version": "2.4.46", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openldap-2.4.46-16.el8.x86_64.rpm", + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "name": "openssh", + "epoch": 0, + "version": "8.0p1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-8.0p1-5.el8.x86_64.rpm", + "checksum": "sha256:f8bdaf5211c6fc72c8f60c7ddd59b8ca124ab26d2670ee6490a7fabb5177d919", + "check_gpg": true + }, + { + "name": "openssh-clients", + "epoch": 0, + "version": "8.0p1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-clients-8.0p1-5.el8.x86_64.rpm", + "checksum": "sha256:a9ec13abf63c69913acc1ac7070ab315c8b5a58c6006c3dfc5b27662f7f22260", + "check_gpg": true + }, + { + "name": "openssh-server", + "epoch": 0, + "version": "8.0p1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-server-8.0p1-5.el8.x86_64.rpm", + "checksum": "sha256:173a812d859c70f8db7b014d507c5cacb76c62ab5480c44be217f880465f42c7", + "check_gpg": true + }, + { + "name": "openssl", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "name": "openssl-libs", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-libs-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "name": "openssl-pkcs11", + "epoch": 0, + "version": "0.4.10", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-pkcs11-0.4.10-2.el8.x86_64.rpm", + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "name": "os-prober", + "epoch": 0, + "version": "1.74", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/os-prober-1.74-6.el8.x86_64.rpm", + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "name": "p11-kit", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "name": "p11-kit-trust", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-trust-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "name": "pam", + "epoch": 0, + "version": "1.3.1", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pam-1.3.1-14.el8.x86_64.rpm", + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "name": "parted", + "epoch": 0, + "version": "3.2", + "release": "38.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/parted-3.2-38.el8.x86_64.rpm", + "checksum": "sha256:4c5c7f3773c634c054b0a5fc1b40d0a8448b44bb5aff410bfa88facf9e2059ff", + "check_gpg": true + }, + { + "name": "passwd", + "epoch": 0, + "version": "0.80", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/passwd-0.80-3.el8.x86_64.rpm", + "checksum": "sha256:9c849b1d4fd605ae749fd9d090715b6034520af871c23729cd4003f22e0990de", + "check_gpg": true + }, + { + "name": "pciutils", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "name": "pciutils-libs", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-libs-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "name": "pcre", + "epoch": 0, + "version": "8.42", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre-8.42-4.el8.x86_64.rpm", + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "name": "pcre2", + "epoch": 0, + "version": "10.32", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre2-10.32-2.el8.x86_64.rpm", + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "name": "pigz", + "epoch": 0, + "version": "2.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pigz-2.4-4.el8.x86_64.rpm", + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "name": "platform-python", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "name": "platform-python-pip", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-pip-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "name": "platform-python-setuptools", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-setuptools-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "name": "policycoreutils", + "epoch": 0, + "version": "2.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-2.9-12.el8.x86_64.rpm", + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "name": "polkit", + "epoch": 0, + "version": "0.115", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-0.115-11.el8.x86_64.rpm", + "checksum": "sha256:09128c1b70cb8ea1a9bfbc6f3314dd5a8ba0c1a1886a82cd0fbe6845d48215dc", + "check_gpg": true + }, + { + "name": "polkit-libs", + "epoch": 0, + "version": "0.115", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-libs-0.115-11.el8.x86_64.rpm", + "checksum": "sha256:8d6742dce47f8ed65e222864872e919f30c678f5df1e99c134fba8a0fc7f454d", + "check_gpg": true + }, + { + "name": "polkit-pkla-compat", + "epoch": 0, + "version": "0.1", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-pkla-compat-0.1-12.el8.x86_64.rpm", + "checksum": "sha256:e7ee4b6d6456cb7da0332f5a6fb8a7c47df977bcf616f12f0455413765367e89", + "check_gpg": true + }, + { + "name": "popt", + "epoch": 0, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/popt-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "name": "prefixdevname", + "epoch": 0, + "version": "0.1.0", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/prefixdevname-0.1.0-6.el8.x86_64.rpm", + "checksum": "sha256:776a182ecaab9f86c7e869db2eb2deea1f291caee701cddbd752da8cd3c57458", + "check_gpg": true + }, + { + "name": "procps-ng", + "epoch": 0, + "version": "3.3.15", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/procps-ng-3.3.15-6.el8.x86_64.rpm", + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "name": "publicsuffix-list-dafsa", + "epoch": 0, + "version": "20180723", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20180723-1.el8.noarch.rpm", + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "name": "python3-audit", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-audit-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:addf80c52d794aed47874eb9d5ddbbaa90cb248fda1634d793054a41da0d92d7", + "check_gpg": true + }, + { + "name": "python3-cffi", + "epoch": 0, + "version": "1.11.5", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-cffi-1.11.5-5.el8.x86_64.rpm", + "checksum": "sha256:07ed1209e898552e6aeac0e6d148271d562c576f7d903cb7a99a697643068f58", + "check_gpg": true + }, + { + "name": "python3-chardet", + "epoch": 0, + "version": "3.0.4", + "release": "7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-chardet-3.0.4-7.el8.noarch.rpm", + "checksum": "sha256:176ffcb2cf0fdcbdd2d8119cbd98eef60a30fdb0fb065a9382d2c95e90c79652", + "check_gpg": true + }, + { + "name": "python3-configobj", + "epoch": 0, + "version": "5.0.6", + "release": "11.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-configobj-5.0.6-11.el8.noarch.rpm", + "checksum": "sha256:1bd969e0521820374122f5132e5998d9bd2ab185be66565a7266096297419c8e", + "check_gpg": true + }, + { + "name": "python3-cryptography", + "epoch": 0, + "version": "3.2.1", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-cryptography-3.2.1-3.el8.x86_64.rpm", + "checksum": "sha256:2ebe28be2e0a413af31a0f49b6a2774670067cdbe48e723040b19922ae205d6b", + "check_gpg": true + }, + { + "name": "python3-dateutil", + "epoch": 1, + "version": "2.6.1", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dateutil-2.6.1-6.el8.noarch.rpm", + "checksum": "sha256:c5b5967a094ced90899052a82e2c245529b75ba3f46e0ce1a89cfc95edb935ea", + "check_gpg": true + }, + { + "name": "python3-dbus", + "epoch": 0, + "version": "1.2.4", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dbus-1.2.4-15.el8.x86_64.rpm", + "checksum": "sha256:066f254f9ac7712b44214816de907a87eb8dfd0d2ea9570a7513db9a6617ba26", + "check_gpg": true + }, + { + "name": "python3-decorator", + "epoch": 0, + "version": "4.2.1", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-decorator-4.2.1-2.el8.noarch.rpm", + "checksum": "sha256:0e9a8a0f823bf0ef948862f0ccb62353460bd07931e756c98f23908c1c526578", + "check_gpg": true + }, + { + "name": "python3-dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "name": "python3-dnf-plugins-core", + "epoch": 0, + "version": "4.0.18", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-plugins-core-4.0.18-3.el8.noarch.rpm", + "checksum": "sha256:941a9068b8fa524ecac58d37f941b95fbdcd9e38bd87c7f9d1330c5925a52a20", + "check_gpg": true + }, + { + "name": "python3-firewall", + "epoch": 0, + "version": "0.8.2", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-firewall-0.8.2-6.el8.noarch.rpm", + "checksum": "sha256:d9fcdf78bae8bf3f3e7d469686a07fdb337567a7f6159397eee990730eb8cd11", + "check_gpg": true + }, + { + "name": "python3-gobject-base", + "epoch": 0, + "version": "3.28.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gobject-base-3.28.3-2.el8.x86_64.rpm", + "checksum": "sha256:15dc15a5be210707852f051f4d09949c063a7283edc7d4ca3d4289eedcc0b509", + "check_gpg": true + }, + { + "name": "python3-gpg", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gpg-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "name": "python3-hawkey", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-hawkey-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "name": "python3-idna", + "epoch": 0, + "version": "2.5", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-idna-2.5-5.el8.noarch.rpm", + "checksum": "sha256:78c43d8a15ca018de1803e4baac5819e1baab1963fd31f1e44e54e8a573acbfc", + "check_gpg": true + }, + { + "name": "python3-jwt", + "epoch": 0, + "version": "1.6.1", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-jwt-1.6.1-2.el8.noarch.rpm", + "checksum": "sha256:ebeb05a4a9cdd5d060859eabac1349029c0120615c98fc939e26664c030655c1", + "check_gpg": true + }, + { + "name": "python3-libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "name": "python3-libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "name": "python3-libs", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libs-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "name": "python3-libselinux", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libselinux-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:59ba5bf69953a5a2e902b0f08b7187b66d84968852d46a3579a059477547d1a0", + "check_gpg": true + }, + { + "name": "python3-libsemanage", + "epoch": 0, + "version": "2.9", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libsemanage-2.9-6.el8.x86_64.rpm", + "checksum": "sha256:451d0cb6e2284578e3279b4cbb5ec98e9d98a687556c6b424adf8f1282d4ef58", + "check_gpg": true + }, + { + "name": "python3-linux-procfs", + "epoch": 0, + "version": "0.6.3", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-linux-procfs-0.6.3-1.el8.noarch.rpm", + "checksum": "sha256:dc835194ecfa6ebda81e0a764c953eff3422a61863e9a3e0dc74ea4cae7a4d94", + "check_gpg": true + }, + { + "name": "python3-nftables", + "epoch": 1, + "version": "0.9.3", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-nftables-0.9.3-17.el8.x86_64.rpm", + "checksum": "sha256:e1a85d0f6b23482247c81c449d87749cdc8e6b7df737b39aba170634b644da0f", + "check_gpg": true + }, + { + "name": "python3-oauthlib", + "epoch": 0, + "version": "2.1.0", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-oauthlib-2.1.0-1.el8.noarch.rpm", + "checksum": "sha256:20874a9d40b12125c9e5b97fe4ccda3f94acbc03da1dec7299123901f5b56631", + "check_gpg": true + }, + { + "name": "python3-perf", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-perf-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:6aa1e29a4d805fc36c3196788fe78cb4552e2ebec8b3d0f8d32974e6a97025f2", + "check_gpg": true + }, + { + "name": "python3-pip-wheel", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pip-wheel-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "name": "python3-ply", + "epoch": 0, + "version": "3.9", + "release": "9.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-ply-3.9-9.el8.noarch.rpm", + "checksum": "sha256:d1e8c7a00924d1a6dee44ade189025853a501d4f77c73f3bfc006aa907d97daf", + "check_gpg": true + }, + { + "name": "python3-policycoreutils", + "epoch": 0, + "version": "2.9", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-policycoreutils-2.9-12.el8.noarch.rpm", + "checksum": "sha256:142d4fe6236cdeac3f967517085d99649215d75026fbe00746e0c5214d7d20df", + "check_gpg": true + }, + { + "name": "python3-pycparser", + "epoch": 0, + "version": "2.14", + "release": "14.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pycparser-2.14-14.el8.noarch.rpm", + "checksum": "sha256:8891a9a4707611c13a5693b195201dd940254ffdb03cf5742952329282bb8cb7", + "check_gpg": true + }, + { + "name": "python3-pysocks", + "epoch": 0, + "version": "1.6.8", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pysocks-1.6.8-3.el8.noarch.rpm", + "checksum": "sha256:7f506879c64e0bb4d98782d025f46fb9a07517487ae4cbebbb3985a98f4e2154", + "check_gpg": true + }, + { + "name": "python3-pyudev", + "epoch": 0, + "version": "0.21.0", + "release": "7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pyudev-0.21.0-7.el8.noarch.rpm", + "checksum": "sha256:aa0007192287faeaecc72d9fa48efdb3108c764d450dc8fea65474476da32c45", + "check_gpg": true + }, + { + "name": "python3-pyyaml", + "epoch": 0, + "version": "3.12", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pyyaml-3.12-12.el8.x86_64.rpm", + "checksum": "sha256:525393e4d658e395c6280bd2ff4afe54999796c4722986325297ba4bfade3ea5", + "check_gpg": true + }, + { + "name": "python3-requests", + "epoch": 0, + "version": "2.20.0", + "release": "2.1.el8_1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-requests-2.20.0-2.1.el8_1.noarch.rpm", + "checksum": "sha256:003ee19ec5b88de212c3246bdfdb3e97a9910a25a219fd7cf5030b7bc666fea9", + "check_gpg": true + }, + { + "name": "python3-rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "name": "python3-schedutils", + "epoch": 0, + "version": "0.6", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-schedutils-0.6-6.el8.x86_64.rpm", + "checksum": "sha256:bafc2680bd298f0fac70854224ef03b7098d4c46ee35e270f6fd58d2e812ff1b", + "check_gpg": true + }, + { + "name": "python3-setools", + "epoch": 0, + "version": "4.3.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setools-4.3.0-2.el8.x86_64.rpm", + "checksum": "sha256:f56992135d789147285215cb062960fedcdf4b3296c62658fa430caa2c20165c", + "check_gpg": true + }, + { + "name": "python3-setuptools", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:c6f27b6e01d80e756408e3c1451e4af00e7d02da0aa24402644c0785118753fe", + "check_gpg": true + }, + { + "name": "python3-setuptools-wheel", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "name": "python3-six", + "epoch": 0, + "version": "1.11.0", + "release": "8.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-six-1.11.0-8.el8.noarch.rpm", + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "name": "python3-slip", + "epoch": 0, + "version": "0.6.4", + "release": "11.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-slip-0.6.4-11.el8.noarch.rpm", + "checksum": "sha256:233e5f78027b684e5aaac1395cc574aea3039059bf86eb4494422bc74216a396", + "check_gpg": true + }, + { + "name": "python3-slip-dbus", + "epoch": 0, + "version": "0.6.4", + "release": "11.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-slip-dbus-0.6.4-11.el8.noarch.rpm", + "checksum": "sha256:563b3741d26b6af963fdb7b0634e0791445a707d0b6093ac71c3224299241639", + "check_gpg": true + }, + { + "name": "python3-syspurpose", + "epoch": 0, + "version": "1.28.10", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-syspurpose-1.28.10-1.el8.x86_64.rpm", + "checksum": "sha256:017e78c5e23f98d6ee299255fc7be5381dba63d169e3f5dcb1de9d21b5d30ba5", + "check_gpg": true + }, + { + "name": "python3-urllib3", + "epoch": 0, + "version": "1.24.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-urllib3-1.24.2-5.el8.noarch.rpm", + "checksum": "sha256:aa1835fd302a37b84ac256db5dd0de09bd9883a5a07775aedb491faf46b18ee0", + "check_gpg": true + }, + { + "name": "rdma-core", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rdma-core-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "name": "readline", + "epoch": 0, + "version": "7.0", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/readline-7.0-10.el8.x86_64.rpm", + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "name": "rootfiles", + "epoch": 0, + "version": "8.1", + "release": "22.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rootfiles-8.1-22.el8.noarch.rpm", + "checksum": "sha256:d967d6bbb33bf7a295a64807f81875c84e82a8ecc59b6c72fe955141b1660d39", + "check_gpg": true + }, + { + "name": "rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "name": "rpm-build-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-build-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "name": "rpm-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "name": "rpm-plugin-selinux", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "name": "rpm-plugin-systemd-inhibit", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "name": "sed", + "epoch": 0, + "version": "4.5", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sed-4.5-2.el8.x86_64.rpm", + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "name": "selinux-policy", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "name": "selinux-policy-targeted", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-targeted-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "name": "setup", + "epoch": 0, + "version": "2.12.2", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/setup-2.12.2-6.el8.noarch.rpm", + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "name": "sg3_utils", + "epoch": 0, + "version": "1.44", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-1.44-5.el8.x86_64.rpm", + "checksum": "sha256:a1d1bac6c4710e0a1a6e8a507b06a630dda6687f12642be0847768c14ce7271e", + "check_gpg": true + }, + { + "name": "sg3_utils-libs", + "epoch": 0, + "version": "1.44", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-libs-1.44-5.el8.x86_64.rpm", + "checksum": "sha256:774d214a379c0b729d7e989f9d5094fdfda7df68c1e792ba9200542032f04c91", + "check_gpg": true + }, + { + "name": "shadow-utils", + "epoch": 2, + "version": "4.6", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shadow-utils-4.6-12.el8.x86_64.rpm", + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "name": "shared-mime-info", + "epoch": 0, + "version": "1.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shared-mime-info-1.9-3.el8.x86_64.rpm", + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "name": "shim-x64", + "epoch": 0, + "version": "15", + "release": "15.el8_2", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shim-x64-15-15.el8_2.x86_64.rpm", + "checksum": "sha256:f0346c485da9a7e8c8d93624f335cbb25790a7f37c6c03e43232517bb73bbacb", + "check_gpg": true + }, + { + "name": "slang", + "epoch": 0, + "version": "2.3.2", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/slang-2.3.2-3.el8.x86_64.rpm", + "checksum": "sha256:be628d396303d6547b9d7239897fbf4fad7447375cb5e898b394a458f420b550", + "check_gpg": true + }, + { + "name": "snappy", + "epoch": 0, + "version": "1.1.8", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/snappy-1.1.8-3.el8.x86_64.rpm", + "checksum": "sha256:839c62cd7fc7e152decded6f28c80b5f7b8f34a5e319057867b38b26512cee67", + "check_gpg": true + }, + { + "name": "sqlite-libs", + "epoch": 0, + "version": "3.26.0", + "release": "13.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sqlite-libs-3.26.0-13.el8.x86_64.rpm", + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "name": "squashfs-tools", + "epoch": 0, + "version": "4.3", + "release": "19.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/squashfs-tools-4.3-19.el8.x86_64.rpm", + "checksum": "sha256:a0c8f83cef355dd98d7750e3d8eb3e9f3e9f8f5e9a3ee441cb4bc4014c647e31", + "check_gpg": true + }, + { + "name": "sssd-client", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-client-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:b1871d8ac1abaf5e809448c5f37e32487f177aee3080d9033efb4b160f755aba", + "check_gpg": true + }, + { + "name": "sssd-common", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-common-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:fe944d9dd89d550d2aa44d33cfeb11c803b074bfcda0dbbad486c392bf1cc9d0", + "check_gpg": true + }, + { + "name": "sssd-kcm", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-kcm-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:6cd7444c22d56201f61fed5fd741b44cfaae18d95b811d25c5f0ffe2f8e55a8f", + "check_gpg": true + }, + { + "name": "sssd-nfs-idmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-nfs-idmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:7115a12fad224b469419e19ee5c0d38322f467fe7a1c441c1b0239b197baac2a", + "check_gpg": true + }, + { + "name": "sudo", + "epoch": 0, + "version": "1.8.29", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sudo-1.8.29-7.el8.x86_64.rpm", + "checksum": "sha256:cbcade4487fbf372b487b9f82ed85e04ff037551c96c4b461abc3716338ff9c4", + "check_gpg": true + }, + { + "name": "systemd", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-239-44.el8.x86_64.rpm", + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "name": "systemd-libs", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-libs-239-44.el8.x86_64.rpm", + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "name": "systemd-pam", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-pam-239-44.el8.x86_64.rpm", + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "name": "systemd-udev", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-udev-239-44.el8.x86_64.rpm", + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "name": "teamd", + "epoch": 0, + "version": "1.31", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/teamd-1.31-2.el8.x86_64.rpm", + "checksum": "sha256:9664aba8dfd6bd6fda669fcf8f6ff04914305a6373b09d8b675322c7337b9c36", + "check_gpg": true + }, + { + "name": "tpm2-tss", + "epoch": 0, + "version": "2.3.2", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tpm2-tss-2.3.2-3.el8.x86_64.rpm", + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "name": "trousers", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "name": "trousers-lib", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-lib-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "name": "tuned", + "epoch": 0, + "version": "2.15.0", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tuned-2.15.0-1.el8.noarch.rpm", + "checksum": "sha256:b3bc3f1c9e8028a177599f1ed9cb6c31d2d6e75111e34623d25e736d3ddcf8fd", + "check_gpg": true + }, + { + "name": "tzdata", + "epoch": 0, + "version": "2021a", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tzdata-2021a-1.el8.noarch.rpm", + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "name": "util-linux", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/util-linux-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "name": "vim-minimal", + "epoch": 2, + "version": "8.0.1763", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/vim-minimal-8.0.1763-15.el8.x86_64.rpm", + "checksum": "sha256:3efd6a2548813167fe37718546bc768a5aa8ba59aa80edcecd8ba408bec329b0", + "check_gpg": true + }, + { + "name": "virt-what", + "epoch": 0, + "version": "1.18", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/virt-what-1.18-6.el8.x86_64.rpm", + "checksum": "sha256:4c02e3e1808f0189269b242242468a364007a8f12c6e38afc24b599b2848b0fa", + "check_gpg": true + }, + { + "name": "which", + "epoch": 0, + "version": "2.21", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/which-2.21-12.el8.x86_64.rpm", + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "name": "xfsprogs", + "epoch": 0, + "version": "5.0.0", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xfsprogs-5.0.0-8.el8.x86_64.rpm", + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "name": "xz", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "name": "xz-libs", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-libs-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "name": "yum", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/yum-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:4302361b12eefd5574f57bf0c49c0e5bdc738eddda33634af8b35adfb53a52a1", + "check_gpg": true + }, + { + "name": "zlib", + "epoch": 0, + "version": "1.2.11", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/zlib-1.2.11-17.el8.x86_64.rpm", + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "name": "WALinuxAgent", + "epoch": 0, + "version": "2.2.49.2", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/WALinuxAgent-2.2.49.2-3.el8.noarch.rpm", + "checksum": "sha256:5eb1eaf3f1a0df8477ed4d07cf309b55725a147419ad63e42d89294f7380cb31", + "check_gpg": true + }, + { + "name": "WALinuxAgent-udev", + "epoch": 0, + "version": "2.2.49.2", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/WALinuxAgent-udev-2.2.49.2-3.el8.noarch.rpm", + "checksum": "sha256:37c05719442a1835c198884bbae6113dbcce36b5c809d2d9c9dacac72dce864d", + "check_gpg": true + }, + { + "name": "cloud-init", + "epoch": 0, + "version": "20.3", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cloud-init-20.3-10.el8.noarch.rpm", + "checksum": "sha256:dc4f0cc77cf4c89469cf0f9c88b52f2c8c2c35f4e6d714bbdae2083440483311", + "check_gpg": true + }, + { + "name": "cloud-utils-growpart", + "epoch": 0, + "version": "0.31", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/cloud-utils-growpart-0.31-1.el8.noarch.rpm", + "checksum": "sha256:7800dfd0d4769a898d11db330fdb5b19614533628a45fe91cce406d6cd1f0c71", + "check_gpg": true + }, + { + "name": "geolite2-city", + "epoch": 0, + "version": "20180605", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-city-20180605-1.el8.noarch.rpm", + "checksum": "sha256:cad86777bcb265db0da766952ff63e8d33f0fd4f3b90b22d0a1da587a785db44", + "check_gpg": true + }, + { + "name": "geolite2-country", + "epoch": 0, + "version": "20180605", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-country-20180605-1.el8.noarch.rpm", + "checksum": "sha256:67419432fe7d373f8e5ddaa7b0dd1c25389608bf2f4ee76dbabcc2d96eb8c9d0", + "check_gpg": true + }, + { + "name": "langpacks-en", + "epoch": 0, + "version": "1.0", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/langpacks-en-1.0-12.el8.noarch.rpm", + "checksum": "sha256:c99db07c2548246f6b2ec98c1d2b536e40b2f4dbba39f3430044868a27985732", + "check_gpg": true + }, + { + "name": "libatasmart", + "epoch": 0, + "version": "0.19", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libatasmart-0.19-14.el8.x86_64.rpm", + "checksum": "sha256:e1133a81512bfba8d4bf06bc12aafee7fe13d6319fc8690b81e6f46d978930eb", + "check_gpg": true + }, + { + "name": "libblockdev", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:3cf4fcd2fe43e6477d5f1c05167c669c247dcbeea1ab37bf3b7d42dcab482565", + "check_gpg": true + }, + { + "name": "libblockdev-crypto", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-crypto-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:226bb890cc85bfc60d874a9cb13cb7f7f1e90d90308c7726e25e14cee5487e66", + "check_gpg": true + }, + { + "name": "libblockdev-fs", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-fs-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:142c67cdc69366820a7fc7567e40567b545b52f279d1ff992e4787d3c1ea4956", + "check_gpg": true + }, + { + "name": "libblockdev-loop", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-loop-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:d29207af6ff12bec1a5b9712550f2faf7efbff75c597cc2e84b6c9d0dfe2de68", + "check_gpg": true + }, + { + "name": "libblockdev-mdraid", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-mdraid-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:ced1d02dd424b1d087347d452420e17ba83af2b926041c794471798dfa5f5868", + "check_gpg": true + }, + { + "name": "libblockdev-part", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-part-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:e308e1ebc85889742a002fd9892d71894fd6fae473320fbc7b1ffb94248602cd", + "check_gpg": true + }, + { + "name": "libblockdev-swap", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-swap-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:8d3bdefac6c0f39e66e092d62b37efa3076976ae66def1f9dd1f217022406efa", + "check_gpg": true + }, + { + "name": "libblockdev-utils", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-utils-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:be0181770c94141852b6bb618baf56e7b8df9f70524b0c2e0e391e550285231f", + "check_gpg": true + }, + { + "name": "libbytesize", + "epoch": 0, + "version": "1.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libbytesize-1.4-3.el8.x86_64.rpm", + "checksum": "sha256:d1cc79976965be3fe769cb8c23a281064816eaa195caf6057b8d1da0e9ff7ae5", + "check_gpg": true + }, + { + "name": "libestr", + "epoch": 0, + "version": "0.1.10", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libestr-0.1.10-1.el8.x86_64.rpm", + "checksum": "sha256:7bc2e2a25b04b52a4ec5de2858e75eb07f16495d4de5f7ce926777130302cfe3", + "check_gpg": true + }, + { + "name": "libfastjson", + "epoch": 0, + "version": "0.99.8", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libfastjson-0.99.8-2.el8.x86_64.rpm", + "checksum": "sha256:105beb1a237e66802e64e620f79b357dfc8f3bb8952ac2f293548f1d68ca40b1", + "check_gpg": true + }, + { + "name": "libmaxminddb", + "epoch": 0, + "version": "1.2.0", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libmaxminddb-1.2.0-10.el8.x86_64.rpm", + "checksum": "sha256:19ca7ab9cb2e39ec452ed1424f828ec464266094e31903301680d5a5d0e2ac2c", + "check_gpg": true + }, + { + "name": "libudisks2", + "epoch": 0, + "version": "2.9.0", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libudisks2-2.9.0-6.el8.x86_64.rpm", + "checksum": "sha256:1824bc3233b76fabb2305d11bd9bc905cb8e8d7f44006f253164b64808be4b39", + "check_gpg": true + }, + { + "name": "libxkbcommon", + "epoch": 0, + "version": "0.9.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxkbcommon-0.9.1-1.el8.x86_64.rpm", + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "name": "nspr", + "epoch": 0, + "version": "4.25.0", + "release": "2.el8_2", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nspr-4.25.0-2.el8_2.x86_64.rpm", + "checksum": "sha256:34321e09964f724b712ed709115f794b1953f4a4d472d655bec0993d27c51a22", + "check_gpg": true + }, + { + "name": "nss", + "epoch": 0, + "version": "3.53.1", + "release": "17.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-3.53.1-17.el8_3.x86_64.rpm", + "checksum": "sha256:c11eba3a7ae0ee7ceaea4bbf78edf9a1c3c5d9629b3f40167f5fb8004b2c19a0", + "check_gpg": true + }, + { + "name": "nss-softokn", + "epoch": 0, + "version": "3.53.1", + "release": "17.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-softokn-3.53.1-17.el8_3.x86_64.rpm", + "checksum": "sha256:2e0b39dbf3b7e68a06f321a04797d4e521b9b484ffc8d6d53f7662613e077065", + "check_gpg": true + }, + { + "name": "nss-softokn-freebl", + "epoch": 0, + "version": "3.53.1", + "release": "17.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-softokn-freebl-3.53.1-17.el8_3.x86_64.rpm", + "checksum": "sha256:cff4bc30873c62698e4bc2f519bb0aa6814534d7ce99f1ba757dd345b881505f", + "check_gpg": true + }, + { + "name": "nss-sysinit", + "epoch": 0, + "version": "3.53.1", + "release": "17.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-sysinit-3.53.1-17.el8_3.x86_64.rpm", + "checksum": "sha256:71fbed9d1b1f6965b42a5c87c98732bed84a8a2efb43c2218b4d1c59e9eaf190", + "check_gpg": true + }, + { + "name": "nss-util", + "epoch": 0, + "version": "3.53.1", + "release": "17.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-util-3.53.1-17.el8_3.x86_64.rpm", + "checksum": "sha256:947fee92d0c147d832bbb3ab53e0b96817d03c38260429a4ff01856324b160da", + "check_gpg": true + }, + { + "name": "pinentry", + "epoch": 0, + "version": "1.1.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pinentry-1.1.0-2.el8.x86_64.rpm", + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "name": "plymouth", + "epoch": 0, + "version": "0.9.4", + "release": "9.20200615git1e36e30.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/plymouth-0.9.4-9.20200615git1e36e30.el8.x86_64.rpm", + "checksum": "sha256:8e4f8fed6f2fdf05e85fc84023778dbf23e09f1dc2f6a0940860886d3f59831b", + "check_gpg": true + }, + { + "name": "plymouth-core-libs", + "epoch": 0, + "version": "0.9.4", + "release": "9.20200615git1e36e30.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/plymouth-core-libs-0.9.4-9.20200615git1e36e30.el8.x86_64.rpm", + "checksum": "sha256:44c659fb58e1ee64f5d77b35459dc43a0fded79c8a6e2278a2c9c71461792ff1", + "check_gpg": true + }, + { + "name": "plymouth-scripts", + "epoch": 0, + "version": "0.9.4", + "release": "9.20200615git1e36e30.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/plymouth-scripts-0.9.4-9.20200615git1e36e30.el8.x86_64.rpm", + "checksum": "sha256:bfbd05db004755c45f7ec31be67b02d9c7fa0c9b1bb060bb2ffe85b3f2b5d811", + "check_gpg": true + }, + { + "name": "python3-babel", + "epoch": 0, + "version": "2.5.1", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-babel-2.5.1-5.el8.noarch.rpm", + "checksum": "sha256:9dbf3ceb7de5a727f1a36edd5add73dcd96c83f24afc81d78e254b518551da96", + "check_gpg": true + }, + { + "name": "python3-jinja2", + "epoch": 0, + "version": "2.10.1", + "release": "2.el8_0", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jinja2-2.10.1-2.el8_0.noarch.rpm", + "checksum": "sha256:5f4f256128dba88a13599d6458908c24c0e9c18d8979ae44bf5734da8e7cab70", + "check_gpg": true + }, + { + "name": "python3-jsonpatch", + "epoch": 0, + "version": "1.21", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonpatch-1.21-2.el8.noarch.rpm", + "checksum": "sha256:85eb614fc608f3b3f4bbd08d4a3b0ff6af188677ea4e009be021680c521cedae", + "check_gpg": true + }, + { + "name": "python3-jsonpointer", + "epoch": 0, + "version": "1.10", + "release": "11.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonpointer-1.10-11.el8.noarch.rpm", + "checksum": "sha256:60b0cbc5e435be346bb06f45f3336f8936d7362022d8bceda80ff16bc3fb7dd2", + "check_gpg": true + }, + { + "name": "python3-jsonschema", + "epoch": 0, + "version": "2.6.0", + "release": "4.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-jsonschema-2.6.0-4.el8.noarch.rpm", + "checksum": "sha256:0feac495306bbe6e3149a352025bea8d23cda512859a230cbd3f510cf48caaf7", + "check_gpg": true + }, + { + "name": "python3-markupsafe", + "epoch": 0, + "version": "0.23", + "release": "19.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-markupsafe-0.23-19.el8.x86_64.rpm", + "checksum": "sha256:9c7a5a6f73c8e32559226c54d229cb25304a81a853af22d9f829b9bb09b21f53", + "check_gpg": true + }, + { + "name": "python3-pip", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pip-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:a2418e8e12144d4e84965298e7bbefedc876c0d0d93771afb9b5c6c2eb139dc0", + "check_gpg": true + }, + { + "name": "python3-prettytable", + "epoch": 0, + "version": "0.7.2", + "release": "14.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-prettytable-0.7.2-14.el8.noarch.rpm", + "checksum": "sha256:1b53c868277dec628058b31b1a8a8a2ccd8efe832ce9694805b5f82564136eb3", + "check_gpg": true + }, + { + "name": "python3-pyasn1", + "epoch": 0, + "version": "0.3.7", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pyasn1-0.3.7-6.el8.noarch.rpm", + "checksum": "sha256:16bb90f4105692da54369c59e5d4aea2e2e6ef7ab53a485b984f780c3c34d916", + "check_gpg": true + }, + { + "name": "python3-pyserial", + "epoch": 0, + "version": "3.1.1", + "release": "8.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pyserial-3.1.1-8.el8.noarch.rpm", + "checksum": "sha256:82ce159a9e4e4b6b4fdce9ad954aa507f67108430bd261a4dcd826e44d0152a4", + "check_gpg": true + }, + { + "name": "python3-pytz", + "epoch": 0, + "version": "2017.2", + "release": "9.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pytz-2017.2-9.el8.noarch.rpm", + "checksum": "sha256:0edde19e0c027c8cff31b82e1f4b0b198c00bf924047fcf4dd610a7d4965ab52", + "check_gpg": true + }, + { + "name": "python3-unbound", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-unbound-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "name": "python36", + "epoch": 0, + "version": "3.6.8", + "release": "2.module_el8.4.0+666+456f5f48", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python36-3.6.8-2.module_el8.4.0+666+456f5f48.x86_64.rpm", + "checksum": "sha256:df417aae69f2ba5bd4324a14dcfd30dfbfefba440085bbf916c5ef19286cba20", + "check_gpg": true + }, + { + "name": "rsyslog", + "epoch": 0, + "version": "8.1911.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/rsyslog-8.1911.0-7.el8.x86_64.rpm", + "checksum": "sha256:ca82090f18d47e454cc512e832bf3ec771edf65299e3c1d56d5df9fab0428869", + "check_gpg": true + }, + { + "name": "udisks2", + "epoch": 0, + "version": "2.9.0", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/udisks2-2.9.0-6.el8.x86_64.rpm", + "checksum": "sha256:98f622a37cb22857fdce63d8c97d9711c74cdbd3451e588e2b519532db55a5a2", + "check_gpg": true + }, + { + "name": "unbound-libs", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/unbound-libs-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "name": "volume_key-libs", + "epoch": 0, + "version": "0.3.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/volume_key-libs-0.3.11-5.el8.x86_64.rpm", + "checksum": "sha256:5c0cf0adf7a3ad24ddde58f298ebf4ce741bccdfc8eff0103644115c837f80d6", + "check_gpg": true + }, + { + "name": "xkeyboard-config", + "epoch": 0, + "version": "2.28", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xkeyboard-config-2.28-1.el8.noarch.rpm", + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ], + "checksums": { + "0": "sha256:06fa6273454f85c58ca743a0ef0202bed4cac267393049dc447839cdb39f4a54", + "1": "sha256:5b16e44261a7beffd5d7bf961fe269da407bd57abb1faac407c46a81969dfd63" + } + }, + "image-info": { + "boot-environment": { + "kernelopts": "root=UUID=0194fdc2-fa2f-4cc0-81d3-ff12045b73c8 ro biosdevname=0 rootdelay=300 console=ttyS0 earlyprintk=ttyS0 net.ifnames=0" + }, + "bootloader": "grub", + "bootmenu": [ + { + "grub_arg": "--unrestricted", + "grub_class": "kernel", + "grub_users": "$grub_users", + "id": "centos-20210203204355-4.18.0-277.el8.x86_64", + "initrd": "/boot/initramfs-4.18.0-277.el8.x86_64.img $tuned_initrd", + "linux": "/boot/vmlinuz-4.18.0-277.el8.x86_64", + "options": "$kernelopts $tuned_params", + "title": "CentOS Stream (4.18.0-277.el8.x86_64) 8", + "version": "4.18.0-277.el8.x86_64" + } + ], + "default-target": "multi-user.target", + "firewall-enabled": [ + "ssh", + "dhcpv6-client", + "cockpit" + ], + "fstab": [ + [ + "UUID=0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "/", + "xfs", + "defaults", + "0", + "0" + ], + [ + "UUID=7B77-95E7", + "/boot/efi", + "vfat", + "defaults,uid=0,gid=0,umask=077,shortname=winnt", + "0", + "2" + ] + ], + "groups": [ + "adm:x:4:", + "audio:x:63:", + "bin:x:1:", + "cdrom:x:11:", + "chrony:x:992:", + "daemon:x:2:", + "dbus:x:81:", + "dialout:x:18:", + "disk:x:6:", + "floppy:x:19:", + "ftp:x:50:", + "games:x:20:", + "input:x:999:", + "kmem:x:9:", + "kvm:x:36:", + "lock:x:54:", + "lp:x:7:", + "mail:x:12:", + "man:x:15:", + "mem:x:8:", + "nobody:x:65534:", + "polkitd:x:995:", + "redhat:x:1000:", + "render:x:998:", + "root:x:0:", + "ssh_keys:x:996:", + "sshd:x:74:", + "sssd:x:993:", + "sys:x:3:", + "systemd-coredump:x:997:", + "systemd-journal:x:190:", + "systemd-resolve:x:193:", + "tape:x:33:", + "tss:x:59:", + "tty:x:5:", + "unbound:x:994:", + "users:x:100:", + "utempter:x:35:", + "utmp:x:22:", + "video:x:39:", + "wheel:x:10:" + ], + "image-format": "raw", + "os-release": { + "ANSI_COLOR": "0;31", + "BUG_REPORT_URL": "https://bugzilla.redhat.com/", + "CPE_NAME": "cpe:/o:centos:centos:8", + "HOME_URL": "https://centos.org/", + "ID": "centos", + "ID_LIKE": "rhel fedora", + "NAME": "CentOS Stream", + "PLATFORM_ID": "platform:el8", + "PRETTY_NAME": "CentOS Stream 8", + "REDHAT_SUPPORT_PRODUCT": "Red Hat Enterprise Linux 8", + "REDHAT_SUPPORT_PRODUCT_VERSION": "CentOS Stream", + "VERSION": "8", + "VERSION_ID": "8" + }, + "packages": [ + "ModemManager-glib-1.10.8-2.el8.x86_64", + "NetworkManager-1.30.0-0.9.el8.x86_64", + "NetworkManager-libnm-1.30.0-0.9.el8.x86_64", + "NetworkManager-team-1.30.0-0.9.el8.x86_64", + "NetworkManager-tui-1.30.0-0.9.el8.x86_64", + "WALinuxAgent-2.2.49.2-3.el8.noarch", + "WALinuxAgent-udev-2.2.49.2-3.el8.noarch", + "acl-2.2.53-1.el8.x86_64", + "audit-3.0-0.17.20191104git1c2f876.el8.x86_64", + "audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64", + "authselect-1.2.2-1.el8.x86_64", + "authselect-libs-1.2.2-1.el8.x86_64", + "basesystem-11-5.el8.noarch", + "bash-4.4.19-14.el8.x86_64", + "bind-export-libs-9.11.26-2.el8.x86_64", + "biosdevname-0.7.3-2.el8.x86_64", + "brotli-1.0.6-3.el8.x86_64", + "bubblewrap-0.4.0-1.el8.x86_64", + "bzip2-libs-1.0.6-26.el8.x86_64", + "c-ares-1.13.0-5.el8.x86_64", + "ca-certificates-2020.2.41-80.0.el8_2.noarch", + "centos-gpg-keys-8-2.el8.noarch", + "centos-stream-release-8.4-1.el8.noarch", + "centos-stream-repos-8-2.el8.noarch", + "checkpolicy-2.9-1.el8.x86_64", + "chkconfig-1.13-2.el8.x86_64", + "chrony-3.5-1.el8.x86_64", + "cloud-init-20.3-10.el8.noarch", + "cloud-utils-growpart-0.31-1.el8.noarch", + "coreutils-8.30-8.el8.x86_64", + "coreutils-common-8.30-8.el8.x86_64", + "cpio-2.12-10.el8.x86_64", + "cracklib-2.9.6-15.el8.x86_64", + "cracklib-dicts-2.9.6-15.el8.x86_64", + "cronie-1.5.2-4.el8.x86_64", + "cronie-anacron-1.5.2-4.el8.x86_64", + "crontabs-1.11-17.20190603git.el8.noarch", + "crypto-policies-20200713-1.git51d1222.el8.noarch", + "crypto-policies-scripts-20200713-1.git51d1222.el8.noarch", + "cryptsetup-libs-2.3.3-2.el8.x86_64", + "curl-7.61.1-18.el8.x86_64", + "cyrus-sasl-lib-2.1.27-5.el8.x86_64", + "dbus-1.12.8-12.el8.x86_64", + "dbus-common-1.12.8-12.el8.noarch", + "dbus-daemon-1.12.8-12.el8.x86_64", + "dbus-glib-0.110-2.el8.x86_64", + "dbus-libs-1.12.8-12.el8.x86_64", + "dbus-tools-1.12.8-12.el8.x86_64", + "device-mapper-1.02.175-3.el8.x86_64", + "device-mapper-libs-1.02.175-3.el8.x86_64", + "dhcp-client-4.3.6-44.0.1.el8.x86_64", + "dhcp-common-4.3.6-44.0.1.el8.noarch", + "dhcp-libs-4.3.6-44.0.1.el8.x86_64", + "diffutils-3.6-6.el8.x86_64", + "dmidecode-3.2-8.el8.x86_64", + "dnf-4.4.2-5.el8.noarch", + "dnf-data-4.4.2-5.el8.noarch", + "dnf-plugins-core-4.0.18-3.el8.noarch", + "dosfstools-4.1-6.el8.x86_64", + "dracut-049-133.git20210112.el8.x86_64", + "dracut-config-generic-049-133.git20210112.el8.x86_64", + "dracut-network-049-133.git20210112.el8.x86_64", + "dracut-squash-049-133.git20210112.el8.x86_64", + "e2fsprogs-1.45.6-1.el8.x86_64", + "e2fsprogs-libs-1.45.6-1.el8.x86_64", + "efi-filesystem-3-3.el8.noarch", + "efivar-libs-37-4.el8.x86_64", + "elfutils-debuginfod-client-0.182-3.el8.x86_64", + "elfutils-default-yama-scope-0.182-3.el8.noarch", + "elfutils-libelf-0.182-3.el8.x86_64", + "elfutils-libs-0.182-3.el8.x86_64", + "ethtool-5.8-5.el8.x86_64", + "expat-2.2.5-4.el8.x86_64", + "file-5.33-16.el8.x86_64", + "file-libs-5.33-16.el8.x86_64", + "filesystem-3.8-4.el8.x86_64", + "findutils-4.6.0-20.el8.x86_64", + "firewalld-0.8.2-6.el8.noarch", + "firewalld-filesystem-0.8.2-6.el8.noarch", + "freetype-2.9.1-5.el8.x86_64", + "fuse-libs-2.9.7-12.el8.x86_64", + "fwupd-1.5.5-1.el8.x86_64", + "gawk-4.2.1-2.el8.x86_64", + "gdbm-1.18-1.el8.x86_64", + "gdbm-libs-1.18-1.el8.x86_64", + "gdisk-1.0.3-6.el8.x86_64", + "geolite2-city-20180605-1.el8.noarch", + "geolite2-country-20180605-1.el8.noarch", + "gettext-0.19.8.1-17.el8.x86_64", + "gettext-libs-0.19.8.1-17.el8.x86_64", + "glib2-2.56.4-9.el8.x86_64", + "glibc-2.28-147.el8.x86_64", + "glibc-common-2.28-147.el8.x86_64", + "glibc-langpack-en-2.28-147.el8.x86_64", + "gmp-6.1.2-10.el8.x86_64", + "gnupg2-2.2.20-2.el8.x86_64", + "gnupg2-smime-2.2.20-2.el8.x86_64", + "gnutls-3.6.14-7.el8_3.x86_64", + "gobject-introspection-1.56.1-1.el8.x86_64", + "gpg-pubkey-8483c65d-5ccc5b19", + "gpgme-1.13.1-7.el8.x86_64", + "grep-3.1-6.el8.x86_64", + "groff-base-1.22.3-18.el8.x86_64", + "grub2-common-2.02-93.el8.noarch", + "grub2-efi-x64-2.02-93.el8.x86_64", + "grub2-pc-2.02-93.el8.x86_64", + "grub2-pc-modules-2.02-93.el8.noarch", + "grub2-tools-2.02-93.el8.x86_64", + "grub2-tools-extra-2.02-93.el8.x86_64", + "grub2-tools-minimal-2.02-93.el8.x86_64", + "grubby-8.40-41.el8.x86_64", + "gzip-1.9-12.el8.x86_64", + "hardlink-1.3-6.el8.x86_64", + "hdparm-9.54-3.el8.x86_64", + "hostname-3.20-6.el8.x86_64", + "hwdata-0.314-8.7.el8.noarch", + "ima-evm-utils-1.3.2-11.el8.x86_64", + "info-6.5-6.el8.x86_64", + "initscripts-10.00.12-1.el8.x86_64", + "ipcalc-0.2.4-4.el8.x86_64", + "iproute-5.9.0-2.el8.x86_64", + "iprutils-2.4.19-1.el8.x86_64", + "ipset-7.1-1.el8.x86_64", + "ipset-libs-7.1-1.el8.x86_64", + "iptables-1.8.4-17.el8.x86_64", + "iptables-ebtables-1.8.4-17.el8.x86_64", + "iptables-libs-1.8.4-17.el8.x86_64", + "iputils-20180629-6.el8.x86_64", + "irqbalance-1.4.0-6.el8.x86_64", + "iwl100-firmware-39.31.5.1-102.el8.1.noarch", + "iwl1000-firmware-39.31.5.1-102.el8.1.noarch", + "iwl105-firmware-18.168.6.1-102.el8.1.noarch", + "iwl135-firmware-18.168.6.1-102.el8.1.noarch", + "iwl2000-firmware-18.168.6.1-102.el8.1.noarch", + "iwl2030-firmware-18.168.6.1-102.el8.1.noarch", + "iwl3160-firmware-25.30.13.0-102.el8.1.noarch", + "iwl5000-firmware-8.83.5.1_1-102.el8.1.noarch", + "iwl5150-firmware-8.24.2.2-102.el8.1.noarch", + "iwl6000-firmware-9.221.4.1-102.el8.1.noarch", + "iwl6000g2a-firmware-18.168.6.1-102.el8.1.noarch", + "iwl6050-firmware-41.28.5.1-102.el8.1.noarch", + "iwl7260-firmware-25.30.13.0-102.el8.1.noarch", + "jansson-2.11-3.el8.x86_64", + "json-c-0.13.1-0.4.el8.x86_64", + "json-glib-1.4.4-1.el8.x86_64", + "kbd-2.0.4-10.el8.x86_64", + "kbd-legacy-2.0.4-10.el8.noarch", + "kbd-misc-2.0.4-10.el8.noarch", + "kernel-4.18.0-277.el8.x86_64", + "kernel-core-4.18.0-277.el8.x86_64", + "kernel-modules-4.18.0-277.el8.x86_64", + "kernel-tools-4.18.0-277.el8.x86_64", + "kernel-tools-libs-4.18.0-277.el8.x86_64", + "kexec-tools-2.0.20-45.el8.x86_64", + "keyutils-libs-1.5.10-6.el8.x86_64", + "kmod-25-17.el8.x86_64", + "kmod-libs-25-17.el8.x86_64", + "kpartx-0.8.4-8.el8.x86_64", + "krb5-libs-1.18.2-8.el8.x86_64", + "langpacks-en-1.0-12.el8.noarch", + "less-530-1.el8.x86_64", + "libacl-2.2.53-1.el8.x86_64", + "libarchive-3.3.3-1.el8.x86_64", + "libassuan-2.5.1-3.el8.x86_64", + "libatasmart-0.19-14.el8.x86_64", + "libattr-2.4.48-3.el8.x86_64", + "libbasicobjects-0.1.1-39.el8.x86_64", + "libblkid-2.32.1-27.el8.x86_64", + "libblockdev-2.24-5.el8.x86_64", + "libblockdev-crypto-2.24-5.el8.x86_64", + "libblockdev-fs-2.24-5.el8.x86_64", + "libblockdev-loop-2.24-5.el8.x86_64", + "libblockdev-mdraid-2.24-5.el8.x86_64", + "libblockdev-part-2.24-5.el8.x86_64", + "libblockdev-swap-2.24-5.el8.x86_64", + "libblockdev-utils-2.24-5.el8.x86_64", + "libbytesize-1.4-3.el8.x86_64", + "libcap-2.26-4.el8.x86_64", + "libcap-ng-0.7.9-5.el8.x86_64", + "libcollection-0.7.0-39.el8.x86_64", + "libcom_err-1.45.6-1.el8.x86_64", + "libcomps-0.1.11-5.el8.x86_64", + "libcroco-0.6.12-4.el8_2.1.x86_64", + "libcurl-7.61.1-18.el8.x86_64", + "libdaemon-0.14-15.el8.x86_64", + "libdb-5.3.28-40.el8.x86_64", + "libdb-utils-5.3.28-40.el8.x86_64", + "libdhash-0.5.0-39.el8.x86_64", + "libdnf-0.55.0-2.el8.x86_64", + "libedit-3.1-23.20170329cvs.el8.x86_64", + "libestr-0.1.10-1.el8.x86_64", + "libevent-2.1.8-5.el8.x86_64", + "libfastjson-0.99.8-2.el8.x86_64", + "libfdisk-2.32.1-27.el8.x86_64", + "libffi-3.1-22.el8.x86_64", + "libgcab1-1.1-1.el8.x86_64", + "libgcc-8.4.1-1.el8.x86_64", + "libgcrypt-1.8.5-4.el8.x86_64", + "libgomp-8.4.1-1.el8.x86_64", + "libgpg-error-1.31-1.el8.x86_64", + "libgudev-232-4.el8.x86_64", + "libgusb-0.3.0-1.el8.x86_64", + "libibverbs-32.0-4.el8.x86_64", + "libidn2-2.2.0-1.el8.x86_64", + "libini_config-1.3.1-39.el8.x86_64", + "libkcapi-1.2.0-2.el8.x86_64", + "libkcapi-hmaccalc-1.2.0-2.el8.x86_64", + "libksba-1.3.5-7.el8.x86_64", + "libldb-2.2.0-1.el8.x86_64", + "libmaxminddb-1.2.0-10.el8.x86_64", + "libmbim-1.20.2-1.el8.x86_64", + "libmetalink-0.1.3-7.el8.x86_64", + "libmnl-1.0.4-6.el8.x86_64", + "libmodulemd-2.9.4-2.el8.x86_64", + "libmount-2.32.1-27.el8.x86_64", + "libndp-1.7-3.el8.x86_64", + "libnetfilter_conntrack-1.0.6-5.el8.x86_64", + "libnfnetlink-1.0.1-13.el8.x86_64", + "libnfsidmap-2.3.3-41.el8.x86_64", + "libnftnl-1.1.5-4.el8.x86_64", + "libnghttp2-1.33.0-3.el8_2.1.x86_64", + "libnl3-3.5.0-1.el8.x86_64", + "libnl3-cli-3.5.0-1.el8.x86_64", + "libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64", + "libpath_utils-0.2.1-39.el8.x86_64", + "libpcap-1.9.1-5.el8.x86_64", + "libpipeline-1.5.0-2.el8.x86_64", + "libpng-1.6.34-5.el8.x86_64", + "libpsl-0.20.2-6.el8.x86_64", + "libpwquality-1.4.4-1.el8.x86_64", + "libqmi-1.24.0-1.el8.x86_64", + "libref_array-0.1.5-39.el8.x86_64", + "librepo-1.12.0-3.el8.x86_64", + "libreport-filesystem-2.9.5-15.el8.x86_64", + "libseccomp-2.4.3-1.el8.x86_64", + "libsecret-0.18.6-1.el8.x86_64", + "libselinux-2.9-5.el8.x86_64", + "libselinux-utils-2.9-5.el8.x86_64", + "libsemanage-2.9-6.el8.x86_64", + "libsepol-2.9-2.el8.x86_64", + "libsigsegv-2.11-5.el8.x86_64", + "libsmartcols-2.32.1-27.el8.x86_64", + "libsmbios-2.4.1-2.el8.x86_64", + "libsolv-0.7.16-2.el8.x86_64", + "libss-1.45.6-1.el8.x86_64", + "libssh-0.9.4-2.el8.x86_64", + "libssh-config-0.9.4-2.el8.noarch", + "libsss_autofs-2.4.0-7.el8.x86_64", + "libsss_certmap-2.4.0-7.el8.x86_64", + "libsss_idmap-2.4.0-7.el8.x86_64", + "libsss_nss_idmap-2.4.0-7.el8.x86_64", + "libsss_sudo-2.4.0-7.el8.x86_64", + "libstdc++-8.4.1-1.el8.x86_64", + "libsysfs-2.1.0-24.el8.x86_64", + "libtalloc-2.3.1-2.el8.x86_64", + "libtasn1-4.13-3.el8.x86_64", + "libtdb-1.4.3-1.el8.x86_64", + "libteam-1.31-2.el8.x86_64", + "libtevent-0.10.2-2.el8.x86_64", + "libtirpc-1.1.4-4.el8.x86_64", + "libudisks2-2.9.0-6.el8.x86_64", + "libunistring-0.9.9-3.el8.x86_64", + "libusbx-1.0.23-4.el8.x86_64", + "libuser-0.62-23.el8.x86_64", + "libutempter-1.1.6-14.el8.x86_64", + "libuuid-2.32.1-27.el8.x86_64", + "libverto-0.3.0-5.el8.x86_64", + "libxcrypt-4.1.1-4.el8.x86_64", + "libxkbcommon-0.9.1-1.el8.x86_64", + "libxml2-2.9.7-9.el8.x86_64", + "libxmlb-0.1.15-1.el8.x86_64", + "libyaml-0.1.7-5.el8.x86_64", + "libzstd-1.4.4-1.el8.x86_64", + "linux-firmware-20201218-102.git05789708.el8.noarch", + "lmdb-libs-0.9.24-1.el8.x86_64", + "logrotate-3.14.0-4.el8.x86_64", + "lshw-B.02.19.2-5.el8.x86_64", + "lsscsi-0.32-2.el8.x86_64", + "lua-libs-5.3.4-11.el8.x86_64", + "lz4-libs-1.8.3-2.el8.x86_64", + "lzo-2.08-14.el8.x86_64", + "man-db-2.7.6.1-17.el8.x86_64", + "mdadm-4.1-15.el8.x86_64", + "memstrack-0.1.11-1.el8.x86_64", + "microcode_ctl-20201112-2.el8.x86_64", + "mokutil-0.3.0-11.el8.x86_64", + "mozjs60-60.9.0-4.el8.x86_64", + "mpfr-3.1.6-1.el8.x86_64", + "ncurses-6.1-7.20180224.el8.x86_64", + "ncurses-base-6.1-7.20180224.el8.noarch", + "ncurses-libs-6.1-7.20180224.el8.x86_64", + "net-tools-2.0-0.52.20160912git.el8.x86_64", + "nettle-3.4.1-2.el8.x86_64", + "newt-0.52.20-11.el8.x86_64", + "nftables-0.9.3-17.el8.x86_64", + "npth-1.5-4.el8.x86_64", + "nspr-4.25.0-2.el8_2.x86_64", + "nss-3.53.1-17.el8_3.x86_64", + "nss-softokn-3.53.1-17.el8_3.x86_64", + "nss-softokn-freebl-3.53.1-17.el8_3.x86_64", + "nss-sysinit-3.53.1-17.el8_3.x86_64", + "nss-util-3.53.1-17.el8_3.x86_64", + "numactl-libs-2.0.12-11.el8.x86_64", + "openldap-2.4.46-16.el8.x86_64", + "openssh-8.0p1-5.el8.x86_64", + "openssh-clients-8.0p1-5.el8.x86_64", + "openssh-server-8.0p1-5.el8.x86_64", + "openssl-1.1.1g-12.el8_3.x86_64", + "openssl-libs-1.1.1g-12.el8_3.x86_64", + "openssl-pkcs11-0.4.10-2.el8.x86_64", + "os-prober-1.74-6.el8.x86_64", + "p11-kit-0.23.22-1.el8.x86_64", + "p11-kit-trust-0.23.22-1.el8.x86_64", + "pam-1.3.1-14.el8.x86_64", + "parted-3.2-38.el8.x86_64", + "passwd-0.80-3.el8.x86_64", + "pciutils-3.7.0-1.el8.x86_64", + "pciutils-libs-3.7.0-1.el8.x86_64", + "pcre-8.42-4.el8.x86_64", + "pcre2-10.32-2.el8.x86_64", + "pigz-2.4-4.el8.x86_64", + "pinentry-1.1.0-2.el8.x86_64", + "platform-python-3.6.8-36.el8.x86_64", + "platform-python-pip-9.0.3-19.el8.noarch", + "platform-python-setuptools-39.2.0-6.el8.noarch", + "plymouth-0.9.4-9.20200615git1e36e30.el8.x86_64", + "plymouth-core-libs-0.9.4-9.20200615git1e36e30.el8.x86_64", + "plymouth-scripts-0.9.4-9.20200615git1e36e30.el8.x86_64", + "policycoreutils-2.9-12.el8.x86_64", + "polkit-0.115-11.el8.x86_64", + "polkit-libs-0.115-11.el8.x86_64", + "polkit-pkla-compat-0.1-12.el8.x86_64", + "popt-1.18-1.el8.x86_64", + "prefixdevname-0.1.0-6.el8.x86_64", + "procps-ng-3.3.15-6.el8.x86_64", + "publicsuffix-list-dafsa-20180723-1.el8.noarch", + "python3-audit-3.0-0.17.20191104git1c2f876.el8.x86_64", + "python3-babel-2.5.1-5.el8.noarch", + "python3-cffi-1.11.5-5.el8.x86_64", + "python3-chardet-3.0.4-7.el8.noarch", + "python3-configobj-5.0.6-11.el8.noarch", + "python3-cryptography-3.2.1-3.el8.x86_64", + "python3-dateutil-2.6.1-6.el8.noarch", + "python3-dbus-1.2.4-15.el8.x86_64", + "python3-decorator-4.2.1-2.el8.noarch", + "python3-dnf-4.4.2-5.el8.noarch", + "python3-dnf-plugins-core-4.0.18-3.el8.noarch", + "python3-firewall-0.8.2-6.el8.noarch", + "python3-gobject-base-3.28.3-2.el8.x86_64", + "python3-gpg-1.13.1-7.el8.x86_64", + "python3-hawkey-0.55.0-2.el8.x86_64", + "python3-idna-2.5-5.el8.noarch", + "python3-jinja2-2.10.1-2.el8_0.noarch", + "python3-jsonpatch-1.21-2.el8.noarch", + "python3-jsonpointer-1.10-11.el8.noarch", + "python3-jsonschema-2.6.0-4.el8.noarch", + "python3-jwt-1.6.1-2.el8.noarch", + "python3-libcomps-0.1.11-5.el8.x86_64", + "python3-libdnf-0.55.0-2.el8.x86_64", + "python3-libs-3.6.8-36.el8.x86_64", + "python3-libselinux-2.9-5.el8.x86_64", + "python3-libsemanage-2.9-6.el8.x86_64", + "python3-linux-procfs-0.6.3-1.el8.noarch", + "python3-markupsafe-0.23-19.el8.x86_64", + "python3-nftables-0.9.3-17.el8.x86_64", + "python3-oauthlib-2.1.0-1.el8.noarch", + "python3-perf-4.18.0-277.el8.x86_64", + "python3-pip-9.0.3-19.el8.noarch", + "python3-pip-wheel-9.0.3-19.el8.noarch", + "python3-ply-3.9-9.el8.noarch", + "python3-policycoreutils-2.9-12.el8.noarch", + "python3-prettytable-0.7.2-14.el8.noarch", + "python3-pyasn1-0.3.7-6.el8.noarch", + "python3-pycparser-2.14-14.el8.noarch", + "python3-pyserial-3.1.1-8.el8.noarch", + "python3-pysocks-1.6.8-3.el8.noarch", + "python3-pytz-2017.2-9.el8.noarch", + "python3-pyudev-0.21.0-7.el8.noarch", + "python3-pyyaml-3.12-12.el8.x86_64", + "python3-requests-2.20.0-2.1.el8_1.noarch", + "python3-rpm-4.14.3-10.el8.x86_64", + "python3-schedutils-0.6-6.el8.x86_64", + "python3-setools-4.3.0-2.el8.x86_64", + "python3-setuptools-39.2.0-6.el8.noarch", + "python3-setuptools-wheel-39.2.0-6.el8.noarch", + "python3-six-1.11.0-8.el8.noarch", + "python3-slip-0.6.4-11.el8.noarch", + "python3-slip-dbus-0.6.4-11.el8.noarch", + "python3-syspurpose-1.28.10-1.el8.x86_64", + "python3-unbound-1.7.3-15.el8.x86_64", + "python3-urllib3-1.24.2-5.el8.noarch", + "python36-3.6.8-2.module_el8.4.0+666+456f5f48.x86_64", + "rdma-core-32.0-4.el8.x86_64", + "readline-7.0-10.el8.x86_64", + "rootfiles-8.1-22.el8.noarch", + "rpm-4.14.3-10.el8.x86_64", + "rpm-build-libs-4.14.3-10.el8.x86_64", + "rpm-libs-4.14.3-10.el8.x86_64", + "rpm-plugin-selinux-4.14.3-10.el8.x86_64", + "rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64", + "rsyslog-8.1911.0-7.el8.x86_64", + "sed-4.5-2.el8.x86_64", + "selinux-policy-3.14.3-62.el8.noarch", + "selinux-policy-targeted-3.14.3-62.el8.noarch", + "setup-2.12.2-6.el8.noarch", + "sg3_utils-1.44-5.el8.x86_64", + "sg3_utils-libs-1.44-5.el8.x86_64", + "shadow-utils-4.6-12.el8.x86_64", + "shared-mime-info-1.9-3.el8.x86_64", + "shim-x64-15-15.el8_2.x86_64", + "slang-2.3.2-3.el8.x86_64", + "snappy-1.1.8-3.el8.x86_64", + "sqlite-libs-3.26.0-13.el8.x86_64", + "squashfs-tools-4.3-19.el8.x86_64", + "sssd-client-2.4.0-7.el8.x86_64", + "sssd-common-2.4.0-7.el8.x86_64", + "sssd-kcm-2.4.0-7.el8.x86_64", + "sssd-nfs-idmap-2.4.0-7.el8.x86_64", + "sudo-1.8.29-7.el8.x86_64", + "systemd-239-44.el8.x86_64", + "systemd-libs-239-44.el8.x86_64", + "systemd-pam-239-44.el8.x86_64", + "systemd-udev-239-44.el8.x86_64", + "teamd-1.31-2.el8.x86_64", + "tpm2-tss-2.3.2-3.el8.x86_64", + "trousers-0.3.15-1.el8.x86_64", + "trousers-lib-0.3.15-1.el8.x86_64", + "tuned-2.15.0-1.el8.noarch", + "tzdata-2021a-1.el8.noarch", + "udisks2-2.9.0-6.el8.x86_64", + "unbound-libs-1.7.3-15.el8.x86_64", + "util-linux-2.32.1-27.el8.x86_64", + "vim-minimal-8.0.1763-15.el8.x86_64", + "virt-what-1.18-6.el8.x86_64", + "volume_key-libs-0.3.11-5.el8.x86_64", + "which-2.21-12.el8.x86_64", + "xfsprogs-5.0.0-8.el8.x86_64", + "xkeyboard-config-2.28-1.el8.noarch", + "xz-5.2.4-3.el8.x86_64", + "xz-libs-5.2.4-3.el8.x86_64", + "yum-4.4.2-5.el8.noarch", + "zlib-1.2.11-17.el8.x86_64" + ], + "partition-table": "gpt", + "partition-table-id": "D209C89E-EA5E-4FBD-B161-B461CCE297E0", + "partitions": [ + { + "bootable": false, + "fstype": null, + "label": null, + "partuuid": "FAC7F1FB-3E8D-4137-A512-961DE09A5549", + "size": 1048576, + "start": 1048576, + "type": "21686148-6449-6E6F-744E-656564454649", + "uuid": null + }, + { + "bootable": false, + "fstype": "vfat", + "label": null, + "partuuid": "68B2905B-DF3E-4FB3-80FA-49D1E773AA33", + "size": 104857600, + "start": 2097152, + "type": "C12A7328-F81F-11D2-BA4B-00A0C93EC93B", + "uuid": "7B77-95E7" + }, + { + "bootable": false, + "fstype": "xfs", + "label": "root", + "partuuid": "6264D520-3FB9-423F-8AB8-7A0A8E3D3562", + "size": 4187995648, + "start": 106954752, + "type": "0FC63DAF-8483-4772-8E79-3D69D8477DE4", + "uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8" + } + ], + "passwd": [ + "adm:x:3:4:adm:/var/adm:/sbin/nologin", + "bin:x:1:1:bin:/bin:/sbin/nologin", + "chrony:x:995:992::/var/lib/chrony:/sbin/nologin", + "daemon:x:2:2:daemon:/sbin:/sbin/nologin", + "dbus:x:81:81:System message bus:/:/sbin/nologin", + "ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin", + "games:x:12:100:games:/usr/games:/sbin/nologin", + "halt:x:7:0:halt:/sbin:/sbin/halt", + "lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin", + "mail:x:8:12:mail:/var/spool/mail:/sbin/nologin", + "nobody:x:65534:65534:Kernel Overflow User:/:/sbin/nologin", + "operator:x:11:0:operator:/root:/sbin/nologin", + "polkitd:x:998:995:User for polkitd:/:/sbin/nologin", + "redhat:x:1000:1000::/home/redhat:/bin/bash", + "root:x:0:0:root:/root:/bin/bash", + "shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown", + "sshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:/sbin/nologin", + "sssd:x:996:993:User for sssd:/:/sbin/nologin", + "sync:x:5:0:sync:/sbin:/bin/sync", + "systemd-coredump:x:999:997:systemd Core Dumper:/:/sbin/nologin", + "systemd-resolve:x:193:193:systemd Resolver:/:/sbin/nologin", + "tss:x:59:59:Account used for TPM access:/dev/null:/sbin/nologin", + "unbound:x:997:994:Unbound DNS resolver:/etc/unbound:/sbin/nologin" + ], + "rpm-verify": { + "changed": { + "/boot/efi/EFI/centos/grubx64.efi": ".......T.", + "/etc/crypto-policies/back-ends/nss.config": ".M.......", + "/etc/fwupd/remotes.d/dell-esrt.conf": ".......T.", + "/etc/fwupd/remotes.d/lvfs-testing.conf": ".......T.", + "/etc/fwupd/remotes.d/lvfs.conf": ".......T.", + "/etc/fwupd/remotes.d/vendor-directory.conf": ".......T.", + "/etc/fwupd/remotes.d/vendor.conf": ".......T.", + "/etc/machine-id": ".M.......", + "/proc": ".M.......", + "/sys": ".M.......", + "/var/log/lastlog": ".M....G..", + "/var/spool/anacron/cron.daily": ".M.......", + "/var/spool/anacron/cron.monthly": ".M.......", + "/var/spool/anacron/cron.weekly": ".M......." + }, + "missing": [] + }, + "services-disabled": [ + "arp-ethers.service", + "chrony-dnssrv@.timer", + "chrony-wait.service", + "console-getty.service", + "cpupower.service", + "ctrl-alt-del.target", + "debug-shell.service", + "ebtables.service", + "exit.target", + "fstrim.timer", + "fwupd-refresh.timer", + "halt.target", + "iprdump.service", + "iprinit.service", + "iprupdate.service", + "iprutils.target", + "kexec.target", + "mdcheck_continue.timer", + "mdcheck_start.timer", + "mdmonitor-oneshot.timer", + "nftables.service", + "poweroff.target", + "rdisc.service", + "reboot.target", + "remote-cryptsetup.target", + "runlevel0.target", + "runlevel6.target", + "serial-getty@.service", + "sshd-keygen@.service", + "sshd.socket", + "sssd-autofs.socket", + "sssd-nss.socket", + "sssd-pac.socket", + "sssd-pam-priv.socket", + "sssd-pam.socket", + "sssd-ssh.socket", + "sssd-sudo.socket", + "systemd-resolved.service", + "tcsd.service", + "tmp.mount" + ], + "services-enabled": [ + "NetworkManager-dispatcher.service", + "NetworkManager-wait-online.service", + "NetworkManager.service", + "auditd.service", + "autovt@.service", + "chronyd.service", + "cloud-config.service", + "cloud-final.service", + "cloud-init-local.service", + "cloud-init.service", + "crond.service", + "dbus-org.fedoraproject.FirewallD1.service", + "dbus-org.freedesktop.nm-dispatcher.service", + "dnf-makecache.timer", + "firewalld.service", + "getty@.service", + "import-state.service", + "irqbalance.service", + "kdump.service", + "loadmodules.service", + "mdmonitor.service", + "microcode.service", + "nis-domainname.service", + "remote-fs.target", + "rsyslog.service", + "selinux-autorelabel-mark.service", + "sshd.service", + "sssd-kcm.socket", + "sssd.service", + "syslog.service", + "tuned.service", + "udisks2.service", + "unbound-anchor.timer", + "waagent.service" + ], + "sysconfig": { + "kernel": { + "DEFAULTKERNEL": "kernel", + "UPDATEDEFAULT": "yes" + }, + "network": { + "NETWORKING": "yes", + "NOZEROCONF": "yes" + } + }, + "timezone": "New_York" + } +} \ No newline at end of file diff --git a/test/data/manifests/centos_8-x86_64-vmdk-boot.json b/test/data/manifests/centos_8-x86_64-vmdk-boot.json new file mode 100644 index 000000000..cd2d62ade --- /dev/null +++ b/test/data/manifests/centos_8-x86_64-vmdk-boot.json @@ -0,0 +1,11149 @@ +{ + "boot": { + "type": "qemu" + }, + "compose-request": { + "distro": "centos-8", + "arch": "x86_64", + "image-type": "vmdk", + "filename": "disk.vmdk", + "blueprint": { + "name": "vmdk-boot-test", + "description": "Image for boot test", + "packages": [], + "modules": [], + "groups": [], + "customizations": { + "user": [ + { + "name": "redhat", + "key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC61wMCjOSHwbVb4VfVyl5sn497qW4PsdQ7Ty7aD6wDNZ/QjjULkDV/yW5WjDlDQ7UqFH0Sr7vywjqDizUAqK7zM5FsUKsUXWHWwg/ehKg8j9xKcMv11AkFoUoujtfAujnKODkk58XSA9whPr7qcw3vPrmog680pnMSzf9LC7J6kXfs6lkoKfBh9VnlxusCrw2yg0qI1fHAZBLPx7mW6+me71QZsS6sVz8v8KXyrXsKTdnF50FjzHcK9HXDBtSJS5wA3fkcRYymJe0o6WMWNdgSRVpoSiWaHHmFgdMUJaYoCfhXzyl7LtNb3Q+Sveg+tJK7JaRXBLMUllOlJ6ll5Hod root@localhost" + } + ] + } + }, + "repositories": [ + { + "name": "baseos", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + }, + { + "name": "appstream", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + } + ] + }, + "manifest": { + "sources": { + "org.osbuild.files": { + "urls": { + "sha256:0064a3aeff41fb7345c061956c35e4b9d0b8802954e717491fb6eb51028d22fd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lmdb-libs-0.9.24-1.el8.x86_64.rpm" + }, + "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libs-0.182-3.el8.x86_64.rpm" + }, + "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libyaml-0.1.7-5.el8.x86_64.rpm" + }, + "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnghttp2-1.33.0-3.el8_2.1.x86_64.rpm" + }, + "sha256:017e78c5e23f98d6ee299255fc7be5381dba63d169e3f5dcb1de9d21b5d30ba5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-syspurpose-1.28.10-1.el8.x86_64.rpm" + }, + "sha256:01b808f1ea9299c37c80164d05ef1a5c45e05d53bcbd451b4d52e69a47959bc2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl6000g2a-firmware-18.168.6.1-102.el8.1.noarch.rpm" + }, + "sha256:02598f73a65df569906ad68fc51e6e2525e35797c7e814fc6cf42b787f1d1389": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libmspack-0.7-0.3.alpha.el8.4.x86_64.rpm" + }, + "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsigsegv-2.11-5.el8.x86_64.rpm" + }, + "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-5.2.4-3.el8.x86_64.rpm" + }, + "sha256:03b50a4ea5cf5655c67e2358fabb6e563eec4e7929e7fc6c4e92c92694f60fa0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mozjs60-60.9.0-4.el8.x86_64.rpm" + }, + "sha256:0560d3b3e915221aad94ddf83169bd680b1f0da9aa8ec8e9360bcb8fe071483e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mdadm-4.1-15.el8.x86_64.rpm" + }, + "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-5.33-16.el8.x86_64.rpm" + }, + "sha256:066f254f9ac7712b44214816de907a87eb8dfd0d2ea9570a7513db9a6617ba26": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dbus-1.2.4-15.el8.x86_64.rpm" + }, + "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-2.0.4-10.el8.x86_64.rpm" + }, + "sha256:078fa234177ae5ae2736c878aa2a2f8ecccf4c7772ab4ad19a2d6ba4f34e8631": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl1000-firmware-39.31.5.1-102.el8.1.noarch.rpm" + }, + "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.182-3.el8.noarch.rpm" + }, + "sha256:084c55bef75a2ce2ab67aa4eeb6726ca59ea6d7c2b23bc6e4084f11aac7e17f8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-client-4.3.6-44.0.1.el8.x86_64.rpm" + }, + "sha256:08b76b0af07db4d3b27776a96bb7d0dc0f02b7219569676ac79036190d731d5b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libedit-3.1-23.20170329cvs.el8.x86_64.rpm" + }, + "sha256:09128c1b70cb8ea1a9bfbc6f3314dd5a8ba0c1a1886a82cd0fbe6845d48215dc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-0.115-11.el8.x86_64.rpm" + }, + "sha256:0aaaaa29cc1bb4d358142db6eb7d12df9252a8166bf61956203878eed210785c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libteam-1.31-2.el8.x86_64.rpm" + }, + "sha256:0b763d946ec7da165107258469e7655707caa6fde0fff49e9e89d747e13eacc1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nftables-0.9.3-17.el8.x86_64.rpm" + }, + "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/expat-2.2.5-4.el8.x86_64.rpm" + }, + "sha256:0c6624b9391a76c0f9e54c387641bd4ed079c3bfc30e8f890afc4203955b2acb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-1.8.4-17.el8.x86_64.rpm" + }, + "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-scripts-20200713-1.git51d1222.el8.noarch.rpm" + }, + "sha256:0caa72888379f82fae1bc8f448bcf0dbaead20e92f2ef4c714afadf8979c3181": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/biosdevname-0.7.3-2.el8.x86_64.rpm" + }, + "sha256:0e9a8a0f823bf0ef948862f0ccb62353460bd07931e756c98f23908c1c526578": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-decorator-4.2.1-2.el8.noarch.rpm" + }, + "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-25-17.el8.x86_64.rpm" + }, + "sha256:0f817ea59939bdd0311c8da8369f5c037e340443198ccef659696f67bd2ddcd1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl3160-firmware-25.30.13.0-102.el8.1.noarch.rpm" + }, + "sha256:105beb1a237e66802e64e620f79b357dfc8f3bb8952ac2f293548f1d68ca40b1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libfastjson-0.99.8-2.el8.x86_64.rpm" + }, + "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cpio-2.12-10.el8.x86_64.rpm" + }, + "sha256:1230ddb5d92fe538a0526e3a9f05563a111ae4ff1978fc8e18de889974b5b46c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_autofs-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:142c67cdc69366820a7fc7567e40567b545b52f279d1ff992e4787d3c1ea4956": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-fs-2.24-5.el8.x86_64.rpm" + }, + "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-6.1-7.20180224.el8.x86_64.rpm" + }, + "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libblkid-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:15dc15a5be210707852f051f4d09949c063a7283edc7d4ca3d4289eedcc0b509": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gobject-base-3.28.3-2.el8.x86_64.rpm" + }, + "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-libs-25-17.el8.x86_64.rpm" + }, + "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/npth-1.5-4.el8.x86_64.rpm" + }, + "sha256:16b34582f757aebb9bc7b0a0475458cbb186238b5b528ef8fdb099cb739ba383": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-squash-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:173a812d859c70f8db7b014d507c5cacb76c62ab5480c44be217f880465f42c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-server-8.0p1-5.el8.x86_64.rpm" + }, + "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-c-0.13.1-0.4.el8.x86_64.rpm" + }, + "sha256:1824bc3233b76fabb2305d11bd9bc905cb8e8d7f44006f253164b64808be4b39": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libudisks2-2.9.0-6.el8.x86_64.rpm" + }, + "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-2.02-93.el8.x86_64.rpm" + }, + "sha256:185f36b3af9367e6142233af358df22f23ee623697bc6a45c47091013707872e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpath_utils-0.2.1-39.el8.x86_64.rpm" + }, + "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grubby-8.40-41.el8.x86_64.rpm" + }, + "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-5.3.28-40.el8.x86_64.rpm" + }, + "sha256:19ca7ab9cb2e39ec452ed1424f828ec464266094e31903301680d5a5d0e2ac2c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libmaxminddb-1.2.0-10.el8.x86_64.rpm" + }, + "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.6-26.el8.x86_64.rpm" + }, + "sha256:1b5187e9b694e439a059be58d8de5317f04278371d1195bf000b001ba8699197": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libldb-2.2.0-1.el8.x86_64.rpm" + }, + "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/freetype-2.9.1-5.el8.x86_64.rpm" + }, + "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kpartx-0.8.4-8.el8.x86_64.rpm" + }, + "sha256:1bd969e0521820374122f5132e5998d9bd2ab185be66565a7266096297419c8e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-configobj-5.0.6-11.el8.noarch.rpm" + }, + "sha256:1c4b186665558747023a60d0d662d3780a1bc49e578062f4b70100c71ab2220c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mokutil-0.3.0-11.el8.x86_64.rpm" + }, + "sha256:1d130b0daf86899c3987d59567303ce7ae44c3273f2d8d0f0625bef7e6bad16d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-base-6.1-7.20180224.el8.noarch.rpm" + }, + "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libunistring-0.9.9-3.el8.x86_64.rpm" + }, + "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-libs-1.1.1g-12.el8_3.x86_64.rpm" + }, + "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-3.5.0-1.el8.x86_64.rpm" + }, + "sha256:224100af3ecfc80c416796ec02c7c4dd113a38d42349d763485f3b42f260493f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnetfilter_conntrack-1.0.6-5.el8.x86_64.rpm" + }, + "sha256:226bb890cc85bfc60d874a9cb13cb7f7f1e90d90308c7726e25e14cee5487e66": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-crypto-2.24-5.el8.x86_64.rpm" + }, + "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/acl-2.2.53-1.el8.x86_64.rpm" + }, + "sha256:233e5f78027b684e5aaac1395cc574aea3039059bf86eb4494422bc74216a396": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-slip-0.6.4-11.el8.noarch.rpm" + }, + "sha256:2465c0c3b3d9519a3f9ae2ffe3e2c0bc61dca6fcb6ae710a6c7951007f498864": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-2.9.7-12.el8.x86_64.rpm" + }, + "sha256:250a8077296adcd83585002ff36684be416ba1481d7bd9ed96973e37b9137f00": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxslt-1.1.32-6.el8.x86_64.rpm" + }, + "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:2c63399bee449fb6e921671a9bbf3356fda73f890b578820f7d926202e98a479": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libaio-0.3.112-1.el8.x86_64.rpm" + }, + "sha256:2c6dd4f21d9c4bde29f693d32e44f0d1c5dc73d78d013767df531d69bbfc6ed8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_nss_idmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:2d4cf3bd8b8046adfa869fbb5b472294469457f6445db36abcc227959be9adeb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bind-export-libs-9.11.26-2.el8.x86_64.rpm" + }, + "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/filesystem-3.8-4.el8.x86_64.rpm" + }, + "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstdc++-8.4.1-1.el8.x86_64.rpm" + }, + "sha256:2e0b39dbf3b7e68a06f321a04797d4e521b9b484ffc8d6d53f7662613e077065": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-softokn-3.53.1-17.el8_3.x86_64.rpm" + }, + "sha256:2e8d4ee76fa8678b0e4d6c0297b16f96e0116201bf96b36e8924b1b080abcddd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-cli-3.5.0-1.el8.x86_64.rpm" + }, + "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-pkcs11-0.4.10-2.el8.x86_64.rpm" + }, + "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-libs-239-44.el8.x86_64.rpm" + }, + "sha256:30fab73ee155f03dbbd99c1e30fe59dfba4ae8fdb2e7213451ccc36d6918bfcc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmnl-1.0.4-6.el8.x86_64.rpm" + }, + "sha256:3162a4a9159994002c3c6f5fe6a12160020e8f3484f1406ff5092311ca639548": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-langpack-en-2.28-147.el8.x86_64.rpm" + }, + "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sed-4.5-2.el8.x86_64.rpm" + }, + "sha256:34321e09964f724b712ed709115f794b1953f4a4d472d655bec0993d27c51a22": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nspr-4.25.0-2.el8_2.x86_64.rpm" + }, + "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gpg-1.13.1-7.el8.x86_64.rpm" + }, + "sha256:370b74a811249b8f0bdfcd34137507f058a85196775e9d0d2bb244c100d194ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_sudo-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:377ad20c1681518bff1f40884589bddc4a692506384c7676f072ddf86ae429f9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_idmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:3793552ff28a7026a6299d8d5d8d50a467f27654524c8e438e2058040d7e6d6c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl6050-firmware-41.28.5.1-102.el8.1.noarch.rpm" + }, + "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pigz-2.4-4.el8.x86_64.rpm" + }, + "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdnf-0.55.0-2.el8.x86_64.rpm" + }, + "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libffi-3.1-22.el8.x86_64.rpm" + }, + "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-all-langpacks-2.28-147.el8.x86_64.rpm" + }, + "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-libs-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:39e27e147189e0e431527acfca51d9436149fe7c0fee1399289ea9a4862948cc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl6000-firmware-9.221.4.1-102.el8.1.noarch.rpm" + }, + "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-libs-1.18-1.el8.x86_64.rpm" + }, + "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libfdisk-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:3acd2c8b6ea534811308b3138859b5fa150b89604bb60f16b0650747039d696a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/irqbalance-1.4.0-6.el8.x86_64.rpm" + }, + "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gmp-6.1.2-10.el8.x86_64.rpm" + }, + "sha256:3c6650fd6e32fdc24b8cf1f7a85ae8232661b47bda7019e49fd0eb474683ff23": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hdparm-9.54-3.el8.x86_64.rpm" + }, + "sha256:3cd092e6e03efb4bb49b91dedd52b43f891092d04a2ff040b9f2197ec2082511": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/logrotate-3.14.0-4.el8.x86_64.rpm" + }, + "sha256:3cf4fcd2fe43e6477d5f1c05167c669c247dcbeea1ab37bf3b7d42dcab482565": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-2.24-5.el8.x86_64.rpm" + }, + "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ima-evm-utils-1.3.2-11.el8.x86_64.rpm" + }, + "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-4.4.2-5.el8.noarch.rpm" + }, + "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chkconfig-1.13-2.el8.x86_64.rpm" + }, + "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmartcols-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:3efd6a2548813167fe37718546bc768a5aa8ba59aa80edcecd8ba408bec329b0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/vim-minimal-8.0.1763-15.el8.x86_64.rpm" + }, + "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shared-mime-info-1.9-3.el8.x86_64.rpm" + }, + "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grep-3.1-6.el8.x86_64.rpm" + }, + "sha256:3f947e1e56d0b0210f9ccbc4483f8b6bfb100cfd79ea1efac3336a8d624ec0d6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-common-3.2.1-12.el8.x86_64.rpm" + }, + "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/popt-1.18-1.el8.x86_64.rpm" + }, + "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dosfstools-4.1-6.el8.x86_64.rpm" + }, + "sha256:406aea2bb2a5f83cabee5a50bad08a3516776c3cd42db8b159f926624f61aa42": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libqmi-1.24.0-1.el8.x86_64.rpm" + }, + "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-release-8.4-1.el8.noarch.rpm" + }, + "sha256:41d9c9f8e17c83f73e51e90f02e08927bb9c836d033815c6cdddc6da44e321f0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-libnm-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:4280042747c9027c3252d360fa33d63490aa518858849115b20162a097a37146": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kexec-tools-2.0.20-45.el8.x86_64.rpm" + }, + "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-2.2.20-2.el8.x86_64.rpm" + }, + "sha256:42edf6b8e8be5e64f7e0f9714c5b199a364393c141cb170f6272ab2e9e0e4d88": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libdrm-2.4.103-1.el8.x86_64.rpm" + }, + "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-1.2.0-2.el8.x86_64.rpm" + }, + "sha256:4302361b12eefd5574f57bf0c49c0e5bdc738eddda33634af8b35adfb53a52a1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/yum-4.4.2-5.el8.noarch.rpm" + }, + "sha256:436e93b4c072f8b6f90f41a037d017406be10c18efafc8c634f6da59bbac1105": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-libs-4.3.6-44.0.1.el8.x86_64.rpm" + }, + "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-common-2.28-147.el8.x86_64.rpm" + }, + "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-libs-6.1-7.20180224.el8.x86_64.rpm" + }, + "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tzdata-2021a-1.el8.noarch.rpm" + }, + "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcrypt-1.8.5-4.el8.x86_64.rpm" + }, + "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nettle-3.4.1-2.el8.x86_64.rpm" + }, + "sha256:44c659fb58e1ee64f5d77b35459dc43a0fded79c8a6e2278a2c9c71461792ff1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/plymouth-core-libs-0.9.4-9.20200615git1e36e30.el8.x86_64.rpm" + }, + "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-libs-5.33-16.el8.x86_64.rpm" + }, + "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/unbound-libs-1.7.3-15.el8.x86_64.rpm" + }, + "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/basesystem-11-5.el8.noarch.rpm" + }, + "sha256:48bfe66d6f07baf1974355e8a3ebbc44f2d9812b823ddfff1c15f35635a8dc4e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efivar-libs-37-4.el8.x86_64.rpm" + }, + "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libacl-2.2.53-1.el8.x86_64.rpm" + }, + "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-3.14.3-62.el8.noarch.rpm" + }, + "sha256:4a28d9fa9785d7e8515deaf5e1a381a553c37b02a81a20ddd4fa202b33413ac9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-network-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:4c02e3e1808f0189269b242242468a364007a8f12c6e38afc24b599b2848b0fa": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/virt-what-1.18-6.el8.x86_64.rpm" + }, + "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-libs-3.7.0-1.el8.x86_64.rpm" + }, + "sha256:4c5c7f3773c634c054b0a5fc1b40d0a8448b44bb5aff410bfa88facf9e2059ff": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/parted-3.2-38.el8.x86_64.rpm" + }, + "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-3.7.0-1.el8.x86_64.rpm" + }, + "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtirpc-1.1.4-4.el8.x86_64.rpm" + }, + "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-config-0.9.4-2.el8.noarch.rpm" + }, + "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-rpm-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-utils-2.9-5.el8.x86_64.rpm" + }, + "sha256:508e9470ed648c28c1ef5a4a74072b188daa795f2369d10929f1ddbb5d3b5a3f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ModemManager-glib-1.10.8-2.el8.x86_64.rpm" + }, + "sha256:5092704c041bb246eaafd478bedface3f99ce8fa233ada5cf96807f67e980e42": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmbios-2.4.1-2.el8.x86_64.rpm" + }, + "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgomp-8.4.1-1.el8.x86_64.rpm" + }, + "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/curl-7.61.1-18.el8.x86_64.rpm" + }, + "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-pip-9.0.3-19.el8.noarch.rpm" + }, + "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-0.3.15-1.el8.x86_64.rpm" + }, + "sha256:53ae3ecd59ec61852cabbd039c748ed63ceb6a88da98587d4c33323ba4095154": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsysfs-2.1.0-24.el8.x86_64.rpm" + }, + "sha256:5452b96e4b57c275dd41e48d55af1ca4f77ccfb3ae403796e599a039d7382b91": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libbasicobjects-0.1.1-39.el8.x86_64.rpm" + }, + "sha256:563b3741d26b6af963fdb7b0634e0791445a707d0b6093ac71c3224299241639": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-slip-dbus-0.6.4-11.el8.noarch.rpm" + }, + "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libarchive-3.3.3-1.el8.x86_64.rpm" + }, + "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64.rpm" + }, + "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libdnf-0.55.0-2.el8.x86_64.rpm" + }, + "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.3.3-2.el8.x86_64.rpm" + }, + "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libibverbs-32.0-4.el8.x86_64.rpm" + }, + "sha256:59683b6fff42b40d3a3abbdeb928bb18b4cd84700aaeb9b3c76d37044ae94e01": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-ebtables-1.8.4-17.el8.x86_64.rpm" + }, + "sha256:59ba5bf69953a5a2e902b0f08b7187b66d84968852d46a3579a059477547d1a0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libselinux-2.9-5.el8.x86_64.rpm" + }, + "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-20200713-1.git51d1222.el8.noarch.rpm" + }, + "sha256:5b7763510f4badd05a1647e1fadf9dc49044b1cf4d754262d0d6d5ee9a8f3b12": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxmlb-0.1.15-1.el8.x86_64.rpm" + }, + "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxml2-2.9.7-9.el8.x86_64.rpm" + }, + "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-iniparse-0.4-31.el8.noarch.rpm" + }, + "sha256:5c0cf0adf7a3ad24ddde58f298ebf4ce741bccdfc8eff0103644115c837f80d6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/volume_key-libs-0.3.11-5.el8.x86_64.rpm" + }, + "sha256:5c68635cb03533a38d4a42f6547c21a1d5f9952351bb01f3cf865d2621a6e634": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lzo-2.08-14.el8.x86_64.rpm" + }, + "sha256:5c686be3533457b6ac047ac804aa54f74ee3a455047d3866dcef7a4da9d95fc6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl135-firmware-18.168.6.1-102.el8.1.noarch.rpm" + }, + "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hwdata-0.314-8.7.el8.noarch.rpm" + }, + "sha256:5e24dd39ae59ef7b7a386f28509cc80d8fabb23f0932e52ea365cf064ff76c59": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/numactl-libs-2.0.12-11.el8.x86_64.rpm" + }, + "sha256:5f3d3d3b27b7df75738d1ee31112c60d39c54b8d7f92b6900606187f6cffce1d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chrony-3.5-1.el8.x86_64.rpm" + }, + "sha256:5f45a2ff1a9c9f3d4fcae463c1ca70b1a16caccc59816ce391f064c9d8b9d8ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxcrypt-4.1.1-4.el8.x86_64.rpm" + }, + "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/info-6.5-6.el8.x86_64.rpm" + }, + "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-libs-5.2.4-3.el8.x86_64.rpm" + }, + "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gpgme-1.13.1-7.el8.x86_64.rpm" + }, + "sha256:6327624b7b0d726a3c95f2245619efb1df8e70023fadcc8158afed39f57859e7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdhash-0.5.0-39.el8.x86_64.rpm" + }, + "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpsl-0.20.2-6.el8.x86_64.rpm" + }, + "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsepol-2.9-2.el8.x86_64.rpm" + }, + "sha256:638eb361523ce75963c8234fdeb6df8084a62e09a7ff5b00125b507955a28b28": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/firewalld-filesystem-0.8.2-6.el8.noarch.rpm" + }, + "sha256:63a6b7765828081cc88b36d10c68621acbebf02a7c2e7d7f1a1217c8742ea6ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-1.5.2-4.el8.x86_64.rpm" + }, + "sha256:657db08f58b6776f48fda17d2b734a26918b431253f9e4eba9fd5a46d9f89aef": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-tui-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pip-wheel-9.0.3-19.el8.noarch.rpm" + }, + "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.175-3.el8.x86_64.rpm" + }, + "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20180723-1.el8.noarch.rpm" + }, + "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcom_err-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:6710a1b2f28e5ffd0fff3e74a76d84d12a602be79703e53e1a55166f2f7d141c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fwupd-1.5.5-1.el8.x86_64.rpm" + }, + "sha256:67419432fe7d373f8e5ddaa7b0dd1c25389608bf2f4ee76dbabcc2d96eb8c9d0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-country-20180605-1.el8.noarch.rpm" + }, + "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-smime-2.2.20-2.el8.x86_64.rpm" + }, + "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-0.23.22-1.el8.x86_64.rpm" + }, + "sha256:6aa1e29a4d805fc36c3196788fe78cb4552e2ebec8b3d0f8d32974e6a97025f2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-perf-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:6b740563ba5858573ff3c2d2a827aeaf6e7166178e36066755d2cde4cf8a016f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libref_array-0.1.5-39.el8.x86_64.rpm" + }, + "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsemanage-2.9-6.el8.x86_64.rpm" + }, + "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sqlite-libs-3.26.0-13.el8.x86_64.rpm" + }, + "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-libs-2.9.7-12.el8.x86_64.rpm" + }, + "sha256:6cd7444c22d56201f61fed5fd741b44cfaae18d95b811d25c5f0ffe2f8e55a8f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-kcm-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gzip-1.9-12.el8.x86_64.rpm" + }, + "sha256:6f699a1e24a6bb76904ef1a588e3b3ef116cad07a5cbad86c6cdb522c00670dd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipset-libs-7.1-1.el8.x86_64.rpm" + }, + "sha256:708a8fd75f7c6987d66e2d62de664b5a84c6f75fd4e5230e244681897b15a25d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcollection-0.7.0-39.el8.x86_64.rpm" + }, + "sha256:70b5e4e580da72969ad3bb144c15293910b7d679e195c118cee60d8320f01851": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuser-0.62-23.el8.x86_64.rpm" + }, + "sha256:7115a12fad224b469419e19ee5c0d38322f467fe7a1c441c1b0239b197baac2a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-nfs-idmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tpm2-tss-2.3.2-3.el8.x86_64.rpm" + }, + "sha256:71fbed9d1b1f6965b42a5c87c98732bed84a8a2efb43c2218b4d1c59e9eaf190": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-sysinit-3.53.1-17.el8_3.x86_64.rpm" + }, + "sha256:71fcbbec3aa152bc1427cb4d597375b008438f6259b20cfcb68fff21eef80f91": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-anacron-1.5.2-4.el8.x86_64.rpm" + }, + "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libelf-0.182-3.el8.x86_64.rpm" + }, + "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libevent-2.1.8-5.el8.x86_64.rpm" + }, + "sha256:74b842ba3352d7c4ada7e991aeadf8749f058a4d00ccc6f79f1c82a281497cb7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iputils-20180629-6.el8.x86_64.rpm" + }, + "sha256:759386be8f49257266ac614432b762b8e486a89aac5d5f7a581a0330efb59c77": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpciaccess-0.14-1.el8.x86_64.rpm" + }, + "sha256:75f95d532446862a2e3b03840135698df48a216359265b19449ed4aa9c8c9c11": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/open-vm-tools-11.2.0-2.el8.x86_64.rpm" + }, + "sha256:760141c74870a93505dbba2174034287b6a97b9bb2b12c5ca2b7af056773b45b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-config-generic-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-1.18-1.el8.x86_64.rpm" + }, + "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-targeted-3.14.3-62.el8.noarch.rpm" + }, + "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-239-44.el8.x86_64.rpm" + }, + "sha256:774d214a379c0b729d7e989f9d5094fdfda7df68c1e792ba9200542032f04c91": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-libs-1.44-5.el8.x86_64.rpm" + }, + "sha256:776a182ecaab9f86c7e869db2eb2deea1f291caee701cddbd752da8cd3c57458": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/prefixdevname-0.1.0-6.el8.x86_64.rpm" + }, + "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodulemd-2.9.4-2.el8.x86_64.rpm" + }, + "sha256:79277d872ae6035009a1a40e914ec09bca21aefcac9d73dee65880c86387f3c9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-efi-x64-2.02-93.el8.x86_64.rpm" + }, + "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openldap-2.4.46-16.el8.x86_64.rpm" + }, + "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-data-4.4.2-5.el8.noarch.rpm" + }, + "sha256:7a7963e2052bfb45b8569f64619dc5cb92fe8aeb78c754b7cf948b9784646785": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hostname-3.20-6.el8.x86_64.rpm" + }, + "sha256:7bc2e2a25b04b52a4ec5de2858e75eb07f16495d4de5f7ce926777130302cfe3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libestr-0.1.10-1.el8.x86_64.rpm" + }, + "sha256:7bfc1981e5e1fd706c23ba10090dd05fb0828df11aa98a3dc89ee8b1d2663f7a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/firewalld-0.8.2-6.el8.noarch.rpm" + }, + "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libzstd-1.4.4-1.el8.x86_64.rpm" + }, + "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-libs-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:7dbe1fb48dad46fe75609974503f5647b644a9dc2c88b785aabd83b4eda0b881": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xmlsec1-1.2.25-4.el8.x86_64.rpm" + }, + "sha256:7dcd11f03fa0979841bf0afe0a2ac8f360502d0a2dee8322a39115595c2464ec": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtool-ltdl-2.4.6-25.el8.x86_64.rpm" + }, + "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libidn2-2.2.0-1.el8.x86_64.rpm" + }, + "sha256:7e2804a4494d4179ed50c0c99da1e30c3a6abf8db889c1412b458943cff0e3e5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gobject-introspection-1.56.1-1.el8.x86_64.rpm" + }, + "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libusbx-1.0.23-4.el8.x86_64.rpm" + }, + "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:7ec48db9e1e9896f29a16cbea53cdeecdd7dd2bc278c06721ebca2e71e9dcd6d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-common-4.3.6-44.0.1.el8.noarch.rpm" + }, + "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libs-3.6.8-36.el8.x86_64.rpm" + }, + "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpcap-1.9.1-5.el8.x86_64.rpm" + }, + "sha256:7fa8fbc576f7d54c388fa39fc3ed86bacb7964cac4544c48b3ffabcdcdc27b61": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/initscripts-10.00.12-1.el8.x86_64.rpm" + }, + "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-hmaccalc-1.2.0-2.el8.x86_64.rpm" + }, + "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/findutils-4.6.0-20.el8.x86_64.rpm" + }, + "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcurl-7.61.1-18.el8.x86_64.rpm" + }, + "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-0.19.8.1-17.el8.x86_64.rpm" + }, + "sha256:82e27237686171b812aee7903c11ec4f8dbdb6544e419758fb0fbd61731044b0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipset-7.1-1.el8.x86_64.rpm" + }, + "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/util-linux-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libcomps-0.1.11-5.el8.x86_64.rpm" + }, + "sha256:839c62cd7fc7e152decded6f28c80b5f7b8f34a5e319057867b38b26512cee67": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/snappy-1.1.8-3.el8.x86_64.rpm" + }, + "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-gpg-keys-8-2.el8.noarch.rpm" + }, + "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgpg-error-1.31-1.el8.x86_64.rpm" + }, + "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcroco-0.6.12-4.el8_2.1.x86_64.rpm" + }, + "sha256:8852282172440cd618c695356449cbc035be4091b2a0833c785c8e42cc1df0e6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnfsidmap-2.3.3-41.el8.x86_64.rpm" + }, + "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-2.9-5.el8.x86_64.rpm" + }, + "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-udev-239-44.el8.x86_64.rpm" + }, + "sha256:8d3bdefac6c0f39e66e092d62b37efa3076976ae66def1f9dd1f217022406efa": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-swap-2.24-5.el8.x86_64.rpm" + }, + "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:8d6742dce47f8ed65e222864872e919f30c678f5df1e99c134fba8a0fc7f454d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-libs-0.115-11.el8.x86_64.rpm" + }, + "sha256:8e4f8fed6f2fdf05e85fc84023778dbf23e09f1dc2f6a0940860886d3f59831b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/plymouth-0.9.4-9.20200615git1e36e30.el8.x86_64.rpm" + }, + "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libss-1.45.6-1.el8.x86_64.rpm" + }, + "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-2.28-147.el8.x86_64.rpm" + }, + "sha256:918518368513d162d772dfc5d16536ad2799276bcba2f47514a1c7098de2b43f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtalloc-2.3.1-2.el8.x86_64.rpm" + }, + "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/os-prober-1.74-6.el8.x86_64.rpm" + }, + "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-unbound-1.7.3-15.el8.x86_64.rpm" + }, + "sha256:941a9068b8fa524ecac58d37f941b95fbdcd9e38bd87c7f9d1330c5925a52a20": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-plugins-core-4.0.18-3.el8.noarch.rpm" + }, + "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-setuptools-39.2.0-6.el8.noarch.rpm" + }, + "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-1.02.175-3.el8.x86_64.rpm" + }, + "sha256:947fee92d0c147d832bbb3ab53e0b96817d03c38260429a4ff01856324b160da": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-util-3.53.1-17.el8_3.x86_64.rpm" + }, + "sha256:9664aba8dfd6bd6fda669fcf8f6ff04914305a6373b09d8b675322c7337b9c36": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/teamd-1.31-2.el8.x86_64.rpm" + }, + "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre-8.42-4.el8.x86_64.rpm" + }, + "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libseccomp-2.4.3-1.el8.x86_64.rpm" + }, + "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuuid-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lua-libs-5.3.4-11.el8.x86_64.rpm" + }, + "sha256:98a6386df94fc9595365c3ecbc630708420fa68d1774614a723dec4a55e84b9c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-glib-1.4.4-1.el8.x86_64.rpm" + }, + "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-common-1.12.8-12.el8.noarch.rpm" + }, + "sha256:98f622a37cb22857fdce63d8c97d9711c74cdbd3451e588e2b519532db55a5a2": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/udisks2-2.9.0-6.el8.x86_64.rpm" + }, + "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pinentry-1.1.0-2.el8.x86_64.rpm" + }, + "sha256:9c849b1d4fd605ae749fd9d090715b6034520af871c23729cd4003f22e0990de": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/passwd-0.80-3.el8.x86_64.rpm" + }, + "sha256:9d160cdfba107ddc0613e169311bf57077c04e71a052a57704f3bdb64729d565": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/c-ares-1.13.0-5.el8.x86_64.rpm" + }, + "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/setup-2.12.2-6.el8.noarch.rpm" + }, + "sha256:9e78ec1230b9ec69ef8e3ad0484cbe3b5c36cfc214d90f890a49093b22df2948": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bubblewrap-0.4.0-1.el8.x86_64.rpm" + }, + "sha256:9eb9c1a67c5be04487cc133bdb8498eaf260e4d930a0143d2e1aa772e3d6cf64": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpipeline-1.5.0-2.el8.x86_64.rpm" + }, + "sha256:9ed3ad948a0dada7710d4b8b2053d4716dc0754f5648a74f4d78b59b737529dc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xmlsec1-openssl-1.2.25-4.el8.x86_64.rpm" + }, + "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-common-2.02-93.el8.noarch.rpm" + }, + "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libattr-2.4.48-3.el8.x86_64.rpm" + }, + "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-six-1.11.0-8.el8.noarch.rpm" + }, + "sha256:a06e1d34df03aaf429d290d5c281356fefe0ad510c229189405b88b3c0f40374": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/jansson-2.11-3.el8.x86_64.rpm" + }, + "sha256:a0b6a8d5530f5003f5c8d56211246cd1130a5b4dc1396dc50da70ce0e128b02c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/man-db-2.7.6.1-17.el8.x86_64.rpm" + }, + "sha256:a0c8f83cef355dd98d7750e3d8eb3e9f3e9f8f5e9a3ee441cb4bc4014c647e31": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/squashfs-tools-4.3-19.el8.x86_64.rpm" + }, + "sha256:a1d1bac6c4710e0a1a6e8a507b06a630dda6687f12642be0847768c14ce7271e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-1.44-5.el8.x86_64.rpm" + }, + "sha256:a217b0fbe9757a0225b66d16c1668cdf5cb2aa69c68b89e79783abd507f2e7bf": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-libs-1.2.2-1.el8.x86_64.rpm" + }, + "sha256:a2418e8e12144d4e84965298e7bbefedc876c0d0d93771afb9b5c6c2eb139dc0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pip-9.0.3-19.el8.noarch.rpm" + }, + "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xkeyboard-config-2.28-1.el8.noarch.rpm" + }, + "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcomps-0.1.11-5.el8.x86_64.rpm" + }, + "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-legacy-2.0.4-10.el8.noarch.rpm" + }, + "sha256:a456039834ccc5432949120f1d80b18329b552cf44d1b59ea1b60d2192e7bc5c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iproute-5.9.0-2.el8.x86_64.rpm" + }, + "sha256:a5228fc876cffc7dc79769ada5653cb9bfb80d469fb3c9f0acc14a1a0d15782d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtdb-1.4.3-1.el8.x86_64.rpm" + }, + "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-minimal-2.02-93.el8.x86_64.rpm" + }, + "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/zlib-1.2.11-17.el8.x86_64.rpm" + }, + "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xfsprogs-5.0.0-8.el8.x86_64.rpm" + }, + "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-repos-8-2.el8.noarch.rpm" + }, + "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-common-8.30-8.el8.x86_64.rpm" + }, + "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-049-133.git20210112.el8.x86_64.rpm" + }, + "sha256:a9ec13abf63c69913acc1ac7070ab315c8b5a58c6006c3dfc5b27662f7f22260": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-clients-8.0p1-5.el8.x86_64.rpm" + }, + "sha256:aa0007192287faeaecc72d9fa48efdb3108c764d450dc8fea65474476da32c45": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pyudev-0.21.0-7.el8.noarch.rpm" + }, + "sha256:aa938dc6f13d0d57ca811b8c299b1017723fa419997b87754f74db770430c2d9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-3.6.8-36.el8.x86_64.rpm" + }, + "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnutls-3.6.14-7.el8_3.x86_64.rpm" + }, + "sha256:ab1be3dcea74c7a7fac49f9a1cad4113fded2d3edabb61b29ed8489a737033fe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-libs-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:ab7bc1a828168006b88934bea949ab2b29b837b0a431f7da1a12147f64f6ddb5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgusb-0.3.0-1.el8.x86_64.rpm" + }, + "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcc-8.4.1-1.el8.x86_64.rpm" + }, + "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-libs-0.19.8.1-17.el8.x86_64.rpm" + }, + "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-libs-1.5.10-6.el8.x86_64.rpm" + }, + "sha256:b00855013100d3796e9ed6d82b1ab2d4dc7f4a3a3fa2e186f6de8523577974a0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/groff-base-1.22.3-18.el8.x86_64.rpm" + }, + "sha256:b0149d85f0172e98866ff2483660af2cf6c6fa0c8f9cab2c51cc2af479c9e319": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm" + }, + "sha256:b06fa62d0a585a7bc3b9d3341923736b3ee4b6cc6d7ca83bebcb97225ca86ac9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libini_config-1.3.1-39.el8.x86_64.rpm" + }, + "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shadow-utils-4.6-12.el8.x86_64.rpm" + }, + "sha256:b1871d8ac1abaf5e809448c5f37e32487f177aee3080d9033efb4b160f755aba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-client-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-39.2.0-6.el8.noarch.rpm" + }, + "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-tools-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:b2cd2dc5cf9c1c118053e7e650c6d910b1d37e810a38d90de27d80a04b702e39": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dmidecode-3.2-8.el8.x86_64.rpm" + }, + "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pam-1.3.1-14.el8.x86_64.rpm" + }, + "sha256:b3bc3f1c9e8028a177599f1ed9cb6c31d2d6e75111e34623d25e736d3ddcf8fd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tuned-2.15.0-1.el8.noarch.rpm" + }, + "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libassuan-2.5.1-3.el8.x86_64.rpm" + }, + "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsolv-0.7.16-2.el8.x86_64.rpm" + }, + "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/librepo-1.12.0-3.el8.x86_64.rpm" + }, + "sha256:b6e327a5fca1efc26c920c42d104dbdafd9e4676681bbd1f28dab81c51677db8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl2030-firmware-18.168.6.1-102.el8.1.noarch.rpm" + }, + "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-hawkey-0.55.0-2.el8.x86_64.rpm" + }, + "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib2-2.56.4-9.el8.x86_64.rpm" + }, + "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-1.1.1g-12.el8_3.x86_64.rpm" + }, + "sha256:b8e4cfecbbe7d2d6d9f3003432e826398f6bea21d5aba11a17ee74358cb84a6e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtevent-0.10.2-2.el8.x86_64.rpm" + }, + "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libreport-filesystem-2.9.5-15.el8.x86_64.rpm" + }, + "sha256:bafc2680bd298f0fac70854224ef03b7098d4c46ee35e270f6fd58d2e812ff1b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-schedutils-0.6-6.el8.x86_64.rpm" + }, + "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lz4-libs-1.8.3-2.el8.x86_64.rpm" + }, + "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gawk-4.2.1-2.el8.x86_64.rpm" + }, + "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-ng-0.7.9-5.el8.x86_64.rpm" + }, + "sha256:bce152ddd2f05f892e5ce483a7c12606ba7d2c42108402fc9609ada04048e6df": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/microcode_ctl-20201112-2.el8.x86_64.rpm" + }, + "sha256:bcf25aae89f7368b16346bc1ec92850175bcc2312bf7a5e74bc3c512bcd345b0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crontabs-1.11-17.20190603git.el8.noarch.rpm" + }, + "sha256:be0181770c94141852b6bb618baf56e7b8df9f70524b0c2e0e391e550285231f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-utils-2.24-5.el8.x86_64.rpm" + }, + "sha256:be628d396303d6547b9d7239897fbf4fad7447375cb5e898b394a458f420b550": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/slang-2.3.2-3.el8.x86_64.rpm" + }, + "sha256:bfbd05db004755c45f7ec31be67b02d9c7fa0c9b1bb060bb2ffe85b3f2b5d811": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/plymouth-scripts-0.9.4-9.20200615git1e36e30.el8.x86_64.rpm" + }, + "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hardlink-1.3-6.el8.x86_64.rpm" + }, + "sha256:c11eba3a7ae0ee7ceaea4bbf78edf9a1c3c5d9629b3f40167f5fb8004b2c19a0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-3.53.1-17.el8_3.x86_64.rpm" + }, + "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-2.9-12.el8.x86_64.rpm" + }, + "sha256:c1bb77ed45ae47dc068445c6dfa4b70b273a3daf8cd82b9fa7a50e3d59abe3c1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnftnl-1.1.5-4.el8.x86_64.rpm" + }, + "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-build-libs-4.14.3-10.el8.x86_64.rpm" + }, + "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/krb5-libs-1.18.2-8.el8.x86_64.rpm" + }, + "sha256:c357a350aa169402db3c898c7edcfee333e1d11a44f62bbeaba3fd3d2f31644d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libndp-1.7-3.el8.x86_64.rpm" + }, + "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmetalink-0.1.3-7.el8.x86_64.rpm" + }, + "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-5.el8.x86_64.rpm" + }, + "sha256:c44dbbff4fe503f5f49b71ab17db7848c6c67fe19d9a4cc6cef59cc6dd15f1a6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:c4a5df7ec884bdcc929e73e066c7def89cfb8cf53306ffcf9f33a5c9e4ae84c7": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-plugins-core-4.0.18-3.el8.noarch.rpm" + }, + "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/diffutils-3.6-6.el8.x86_64.rpm" + }, + "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-1.el8.x86_64.rpm" + }, + "sha256:c5b5967a094ced90899052a82e2c245529b75ba3f46e0ce1a89cfc95edb935ea": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dateutil-2.6.1-6.el8.noarch.rpm" + }, + "sha256:c6f27b6e01d80e756408e3c1451e4af00e7d02da0aa24402644c0785118753fe": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-39.2.0-6.el8.noarch.rpm" + }, + "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libutempter-1.1.6-14.el8.x86_64.rpm" + }, + "sha256:c8fc05dd997477fc80e2f3195e719ca2e569fc8997f05a64a13c52c8358e8239": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lsscsi-0.32-2.el8.x86_64.rpm" + }, + "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-modules-2.02-93.el8.noarch.rpm" + }, + "sha256:c99db07c2548246f6b2ec98c1d2b536e40b2f4dbba39f3430044868a27985732": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/langpacks-en-1.0-12.el8.noarch.rpm" + }, + "sha256:c9df7c58da59500e1717e435c565e221daa344212db8e83eb33b6a9c8e9a67bb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/newt-0.52.20-11.el8.x86_64.rpm" + }, + "sha256:ca82090f18d47e454cc512e832bf3ec771edf65299e3c1d56d5df9fab0428869": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/rsyslog-8.1911.0-7.el8.x86_64.rpm" + }, + "sha256:cad76a2802c5f355b527df3cabde70bd58b31ec4b7de3b1ac15a429cda5b9b03": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/linux-firmware-20201218-102.git05789708.el8.noarch.rpm" + }, + "sha256:cad86777bcb265db0da766952ff63e8d33f0fd4f3b90b22d0a1da587a785db44": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-city-20180605-1.el8.noarch.rpm" + }, + "sha256:cb5072917ce75dbde8fe474fa872db85da5dbac59cc1eb4a9125e7b6280f254e": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-1.2.2-1.el8.x86_64.rpm" + }, + "sha256:cb6b773c2ac78142736abd8a8f9eaac122f4647aefd3f003a615baf79abbefbb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgudev-232-4.el8.x86_64.rpm" + }, + "sha256:cbcade4487fbf372b487b9f82ed85e04ff037551c96c4b461abc3716338ff9c4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sudo-1.8.29-7.el8.x86_64.rpm" + }, + "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpng-1.6.34-5.el8.x86_64.rpm" + }, + "sha256:cdd8e0a970aaaa23637f553692d755a0f57282c4494d31094638b6d4633ec523": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl105-firmware-18.168.6.1-102.el8.1.noarch.rpm" + }, + "sha256:cec98aa5fbefcb99715921b493b4f92d34c4eeb823e9c8741aa75e280def89f1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnfnetlink-1.0.1-13.el8.x86_64.rpm" + }, + "sha256:ced1d02dd424b1d087347d452420e17ba83af2b926041c794471798dfa5f5868": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-mdraid-2.24-5.el8.x86_64.rpm" + }, + "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-2.26-4.el8.x86_64.rpm" + }, + "sha256:cff4bc30873c62698e4bc2f519bb0aa6814534d7ce99f1ba757dd345b881505f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-softokn-freebl-3.53.1-17.el8_3.x86_64.rpm" + }, + "sha256:d01c5733267171fc234d7ab5387c17cb61e9fdec8f9eb792ea63c8ffb5bafb6c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl2000-firmware-18.168.6.1-102.el8.1.noarch.rpm" + }, + "sha256:d1cc79976965be3fe769cb8c23a281064816eaa195caf6057b8d1da0e9ff7ae5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libbytesize-1.4-3.el8.x86_64.rpm" + }, + "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-trust-0.23.22-1.el8.x86_64.rpm" + }, + "sha256:d29207af6ff12bec1a5b9712550f2faf7efbff75c597cc2e84b6c9d0dfe2de68": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-loop-2.24-5.el8.x86_64.rpm" + }, + "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-2.02-93.el8.x86_64.rpm" + }, + "sha256:d655ee126614010e72bac89b7ecaf38b515647181a22940cb774647442d28beb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efi-filesystem-3-3.el8.noarch.rpm" + }, + "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-0.9.4-2.el8.x86_64.rpm" + }, + "sha256:d7ae9cdbdd754c544d766c8e9748f24f580cd3a4c7c6c4d6203060e966299723": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl5000-firmware-8.83.5.1_1-102.el8.1.noarch.rpm" + }, + "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmount-2.32.1-27.el8.x86_64.rpm" + }, + "sha256:d967d6bbb33bf7a295a64807f81875c84e82a8ecc59b6c72fe955141b1660d39": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rootfiles-8.1-22.el8.noarch.rpm" + }, + "sha256:d9acc32cf03ac203066bfa8d6d3f71eaedbad719f3ffc5056a387b548ae958e8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iprutils-2.4.19-1.el8.x86_64.rpm" + }, + "sha256:d9d8c21ad40e59b78008f1a569039462e5654a9d4bb08d84cf032e34cf7bde62": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcab1-1.1-1.el8.x86_64.rpm" + }, + "sha256:d9fcdf78bae8bf3f3e7d469686a07fdb337567a7f6159397eee990730eb8cd11": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-firewall-0.8.2-6.el8.noarch.rpm" + }, + "sha256:da77940ecadc9edb5d14aad51e4bf06664e5763fe6e46b20364732ec3aa2e08a": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-277.el8.x86_64.rpm" + }, + "sha256:dae52ddd215b506d1805b66873194df5043fd758d42960dee68f029eab329b42": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdaemon-0.14-15.el8.x86_64.rpm" + }, + "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-2.9.6-15.el8.x86_64.rpm" + }, + "sha256:dbded0760a358f62ec416ce37ffd764c725f8e898479b17173e632debc1a06ae": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl5150-firmware-8.24.2.2-102.el8.1.noarch.rpm" + }, + "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-libs-1.8.4-17.el8.x86_64.rpm" + }, + "sha256:dc835194ecfa6ebda81e0a764c953eff3422a61863e9a3e0dc74ea4cae7a4d94": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-linux-procfs-0.6.3-1.el8.noarch.rpm" + }, + "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ca-certificates-2020.2.41-80.0.el8_2.noarch.rpm" + }, + "sha256:dea18976861575d40ffca814dee08a225376c7828a5afc9e5d0a383edd3d8907": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipcalc-0.2.4-4.el8.x86_64.rpm" + }, + "sha256:df417aae69f2ba5bd4324a14dcfd30dfbfefba440085bbf916c5ef19286cba20": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python36-3.6.8-2.module_el8.4.0+666+456f5f48.x86_64.rpm" + }, + "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bash-4.4.19-14.el8.x86_64.rpm" + }, + "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-utils-5.3.28-40.el8.x86_64.rpm" + }, + "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.182-3.el8.x86_64.rpm" + }, + "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxkbcommon-0.9.1-1.el8.x86_64.rpm" + }, + "sha256:e0564d34fde9cf1a42e0fd4ba81ea7ce71bcca8823186f0221e56994bef275c6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl100-firmware-39.31.5.1-102.el8.1.noarch.rpm" + }, + "sha256:e1133a81512bfba8d4bf06bc12aafee7fe13d6319fc8690b81e6f46d978930eb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libatasmart-0.19-14.el8.x86_64.rpm" + }, + "sha256:e1a85d0f6b23482247c81c449d87749cdc8e6b7df737b39aba170634b644da0f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-nftables-0.9.3-17.el8.x86_64.rpm" + }, + "sha256:e2549a249d537f80f6595816a1094532c3feb0a730585d102c580583cc1dfde4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmbim-1.20.2-1.el8.x86_64.rpm" + }, + "sha256:e308e1ebc85889742a002fd9892d71894fd6fae473320fbc7b1ffb94248602cd": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-part-2.24-5.el8.x86_64.rpm" + }, + "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/brotli-1.0.6-3.el8.x86_64.rpm" + }, + "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libksba-1.3.5-7.el8.x86_64.rpm" + }, + "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm" + }, + "sha256:e7ee4b6d6456cb7da0332f5a6fb8a7c47df977bcf616f12f0455413765367e89": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-pkla-compat-0.1-12.el8.x86_64.rpm" + }, + "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mpfr-3.1.6-1.el8.x86_64.rpm" + }, + "sha256:e8594d934926d149266098dbb6686b604caa4d8255895ebd732d55ca4e7f0248": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl7260-firmware-25.30.13.0-102.el8.1.noarch.rpm" + }, + "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtasn1-4.13-3.el8.x86_64.rpm" + }, + "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-4.4.2-5.el8.noarch.rpm" + }, + "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tar-1.30-5.el8.x86_64.rpm" + }, + "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/which-2.21-12.el8.x86_64.rpm" + }, + "sha256:ef2734017b25f7e9e1abf67315a7d1c97216642b5dfb979c19b1a3f74cff1e54": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_certmap-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-misc-2.0.4-10.el8.noarch.rpm" + }, + "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/memstrack-0.1.11-1.el8.x86_64.rpm" + }, + "sha256:f0346c485da9a7e8c8d93624f335cbb25790a7f37c6c03e43232517bb73bbacb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shim-x64-15-15.el8_2.x86_64.rpm" + }, + "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rdma-core-32.0-4.el8.x86_64.rpm" + }, + "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-extra-2.02-93.el8.x86_64.rpm" + }, + "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-15.el8.x86_64.rpm" + }, + "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/procps-ng-3.3.15-6.el8.x86_64.rpm" + }, + "sha256:f60f24ba76f7f9d9f42421153d296a279fb616165a27cf2c71657a901a425bb1": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-team-1.30.0-0.9.el8.x86_64.rpm" + }, + "sha256:f6f7907ccf8faa83a93e6d48801970aa45181a3a3c05ad7102b540a07534e318": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/qemu-img-4.2.0-35.module_el8.4.0+547+a85d02ba.x86_64.rpm" + }, + "sha256:f7e6debd0279cb07f0c805d90b707c187bb55b9ee34643898eec800b79fa6b1b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ethtool-5.8-5.el8.x86_64.rpm" + }, + "sha256:f86fec6c6a844fbbfbf7c806d79dd7e72e4eef9c804472547a6d3ecf34cddca6": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-glib-0.110-2.el8.x86_64.rpm" + }, + "sha256:f8bdaf5211c6fc72c8f60c7ddd59b8ca124ab26d2670ee6490a7fabb5177d919": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-8.0p1-5.el8.x86_64.rpm" + }, + "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsecret-0.18.6-1.el8.x86_64.rpm" + }, + "sha256:f94172554b8ceeab97b560d0b05c2e2df4b2e737471adce6eca82fd3209be254": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/less-530-1.el8.x86_64.rpm" + }, + "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-0.3.0-5.el8.x86_64.rpm" + }, + "sha256:fa0b90c4da7f7ca8bf40055be5641a2c57708931fec5f760a2f8944325669fe9": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdisk-1.0.3-6.el8.x86_64.rpm" + }, + "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre2-10.32-2.el8.x86_64.rpm" + }, + "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-daemon-1.12.8-12.el8.x86_64.rpm" + }, + "sha256:fda078d8edd4e0902246dd3121efb6c57cb8231dbb975380f9249c64163f0d88": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lshw-B.02.19.2-5.el8.x86_64.rpm" + }, + "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-8.30-8.el8.x86_64.rpm" + }, + "sha256:fe944d9dd89d550d2aa44d33cfeb11c803b074bfcda0dbbad486c392bf1cc9d0": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-common-2.4.0-7.el8.x86_64.rpm" + }, + "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/readline-7.0-10.el8.x86_64.rpm" + }, + "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-pam-239-44.el8.x86_64.rpm" + }, + "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb": { + "url": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-lib-0.3.15-1.el8.x86_64.rpm" + } + } + } + }, + "pipeline": { + "build": { + "pipeline": { + "stages": [ + { + "name": "org.osbuild.rpm", + "options": { + "gpgkeys": [ + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n" + ], + "packages": [ + { + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "checksum": "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af", + "check_gpg": true + }, + { + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "checksum": "sha256:2c63399bee449fb6e921671a9bbf3356fda73f890b578820f7d926202e98a479", + "check_gpg": true + }, + { + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "checksum": "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178", + "check_gpg": true + }, + { + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "checksum": "sha256:c6f27b6e01d80e756408e3c1451e4af00e7d02da0aa24402644c0785118753fe", + "check_gpg": true + }, + { + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "checksum": "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393", + "check_gpg": true + }, + { + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "checksum": "sha256:a2418e8e12144d4e84965298e7bbefedc876c0d0d93771afb9b5c6c2eb139dc0", + "check_gpg": true + }, + { + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "checksum": "sha256:df417aae69f2ba5bd4324a14dcfd30dfbfefba440085bbf916c5ef19286cba20", + "check_gpg": true + }, + { + "checksum": "sha256:f6f7907ccf8faa83a93e6d48801970aa45181a3a3c05ad7102b540a07534e318", + "check_gpg": true + }, + { + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ] + } + }, + { + "name": "org.osbuild.selinux", + "options": { + "file_contexts": "etc/selinux/targeted/contexts/files/file_contexts" + } + } + ] + }, + "runner": "org.osbuild.centos8" + }, + "stages": [ + { + "name": "org.osbuild.rpm", + "options": { + "gpgkeys": [ + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n" + ], + "packages": [ + { + "checksum": "sha256:508e9470ed648c28c1ef5a4a74072b188daa795f2369d10929f1ddbb5d3b5a3f", + "check_gpg": true + }, + { + "checksum": "sha256:1d130b0daf86899c3987d59567303ce7ae44c3273f2d8d0f0625bef7e6bad16d", + "check_gpg": true + }, + { + "checksum": "sha256:41d9c9f8e17c83f73e51e90f02e08927bb9c836d033815c6cdddc6da44e321f0", + "check_gpg": true + }, + { + "checksum": "sha256:f60f24ba76f7f9d9f42421153d296a279fb616165a27cf2c71657a901a425bb1", + "check_gpg": true + }, + { + "checksum": "sha256:657db08f58b6776f48fda17d2b734a26918b431253f9e4eba9fd5a46d9f89aef", + "check_gpg": true + }, + { + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "checksum": "sha256:b0149d85f0172e98866ff2483660af2cf6c6fa0c8f9cab2c51cc2af479c9e319", + "check_gpg": true + }, + { + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "checksum": "sha256:cb5072917ce75dbde8fe474fa872db85da5dbac59cc1eb4a9125e7b6280f254e", + "check_gpg": true + }, + { + "checksum": "sha256:a217b0fbe9757a0225b66d16c1668cdf5cb2aa69c68b89e79783abd507f2e7bf", + "check_gpg": true + }, + { + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "checksum": "sha256:2d4cf3bd8b8046adfa869fbb5b472294469457f6445db36abcc227959be9adeb", + "check_gpg": true + }, + { + "checksum": "sha256:0caa72888379f82fae1bc8f448bcf0dbaead20e92f2ef4c714afadf8979c3181", + "check_gpg": true + }, + { + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "checksum": "sha256:9e78ec1230b9ec69ef8e3ad0484cbe3b5c36cfc214d90f890a49093b22df2948", + "check_gpg": true + }, + { + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "checksum": "sha256:9d160cdfba107ddc0613e169311bf57077c04e71a052a57704f3bdb64729d565", + "check_gpg": true + }, + { + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "checksum": "sha256:5f3d3d3b27b7df75738d1ee31112c60d39c54b8d7f92b6900606187f6cffce1d", + "check_gpg": true + }, + { + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "checksum": "sha256:63a6b7765828081cc88b36d10c68621acbebf02a7c2e7d7f1a1217c8742ea6ae", + "check_gpg": true + }, + { + "checksum": "sha256:71fcbbec3aa152bc1427cb4d597375b008438f6259b20cfcb68fff21eef80f91", + "check_gpg": true + }, + { + "checksum": "sha256:bcf25aae89f7368b16346bc1ec92850175bcc2312bf7a5e74bc3c512bcd345b0", + "check_gpg": true + }, + { + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "checksum": "sha256:f86fec6c6a844fbbfbf7c806d79dd7e72e4eef9c804472547a6d3ecf34cddca6", + "check_gpg": true + }, + { + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "checksum": "sha256:084c55bef75a2ce2ab67aa4eeb6726ca59ea6d7c2b23bc6e4084f11aac7e17f8", + "check_gpg": true + }, + { + "checksum": "sha256:7ec48db9e1e9896f29a16cbea53cdeecdd7dd2bc278c06721ebca2e71e9dcd6d", + "check_gpg": true + }, + { + "checksum": "sha256:436e93b4c072f8b6f90f41a037d017406be10c18efafc8c634f6da59bbac1105", + "check_gpg": true + }, + { + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "checksum": "sha256:b2cd2dc5cf9c1c118053e7e650c6d910b1d37e810a38d90de27d80a04b702e39", + "check_gpg": true + }, + { + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "checksum": "sha256:c4a5df7ec884bdcc929e73e066c7def89cfb8cf53306ffcf9f33a5c9e4ae84c7", + "check_gpg": true + }, + { + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "checksum": "sha256:760141c74870a93505dbba2174034287b6a97b9bb2b12c5ca2b7af056773b45b", + "check_gpg": true + }, + { + "checksum": "sha256:4a28d9fa9785d7e8515deaf5e1a381a553c37b02a81a20ddd4fa202b33413ac9", + "check_gpg": true + }, + { + "checksum": "sha256:16b34582f757aebb9bc7b0a0475458cbb186238b5b528ef8fdb099cb739ba383", + "check_gpg": true + }, + { + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "checksum": "sha256:d655ee126614010e72bac89b7ecaf38b515647181a22940cb774647442d28beb", + "check_gpg": true + }, + { + "checksum": "sha256:48bfe66d6f07baf1974355e8a3ebbc44f2d9812b823ddfff1c15f35635a8dc4e", + "check_gpg": true + }, + { + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "checksum": "sha256:f7e6debd0279cb07f0c805d90b707c187bb55b9ee34643898eec800b79fa6b1b", + "check_gpg": true + }, + { + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "checksum": "sha256:7bfc1981e5e1fd706c23ba10090dd05fb0828df11aa98a3dc89ee8b1d2663f7a", + "check_gpg": true + }, + { + "checksum": "sha256:638eb361523ce75963c8234fdeb6df8084a62e09a7ff5b00125b507955a28b28", + "check_gpg": true + }, + { + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "checksum": "sha256:2465c0c3b3d9519a3f9ae2ffe3e2c0bc61dca6fcb6ae710a6c7951007f498864", + "check_gpg": true + }, + { + "checksum": "sha256:3f947e1e56d0b0210f9ccbc4483f8b6bfb100cfd79ea1efac3336a8d624ec0d6", + "check_gpg": true + }, + { + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "checksum": "sha256:6710a1b2f28e5ffd0fff3e74a76d84d12a602be79703e53e1a55166f2f7d141c", + "check_gpg": true + }, + { + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "checksum": "sha256:fa0b90c4da7f7ca8bf40055be5641a2c57708931fec5f760a2f8944325669fe9", + "check_gpg": true + }, + { + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "checksum": "sha256:3162a4a9159994002c3c6f5fe6a12160020e8f3484f1406ff5092311ca639548", + "check_gpg": true + }, + { + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "checksum": "sha256:7e2804a4494d4179ed50c0c99da1e30c3a6abf8db889c1412b458943cff0e3e5", + "check_gpg": true + }, + { + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "checksum": "sha256:b00855013100d3796e9ed6d82b1ab2d4dc7f4a3a3fa2e186f6de8523577974a0", + "check_gpg": true + }, + { + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "checksum": "sha256:79277d872ae6035009a1a40e914ec09bca21aefcac9d73dee65880c86387f3c9", + "check_gpg": true + }, + { + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "checksum": "sha256:3c6650fd6e32fdc24b8cf1f7a85ae8232661b47bda7019e49fd0eb474683ff23", + "check_gpg": true + }, + { + "checksum": "sha256:7a7963e2052bfb45b8569f64619dc5cb92fe8aeb78c754b7cf948b9784646785", + "check_gpg": true + }, + { + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "checksum": "sha256:7fa8fbc576f7d54c388fa39fc3ed86bacb7964cac4544c48b3ffabcdcdc27b61", + "check_gpg": true + }, + { + "checksum": "sha256:dea18976861575d40ffca814dee08a225376c7828a5afc9e5d0a383edd3d8907", + "check_gpg": true + }, + { + "checksum": "sha256:a456039834ccc5432949120f1d80b18329b552cf44d1b59ea1b60d2192e7bc5c", + "check_gpg": true + }, + { + "checksum": "sha256:d9acc32cf03ac203066bfa8d6d3f71eaedbad719f3ffc5056a387b548ae958e8", + "check_gpg": true + }, + { + "checksum": "sha256:82e27237686171b812aee7903c11ec4f8dbdb6544e419758fb0fbd61731044b0", + "check_gpg": true + }, + { + "checksum": "sha256:6f699a1e24a6bb76904ef1a588e3b3ef116cad07a5cbad86c6cdb522c00670dd", + "check_gpg": true + }, + { + "checksum": "sha256:0c6624b9391a76c0f9e54c387641bd4ed079c3bfc30e8f890afc4203955b2acb", + "check_gpg": true + }, + { + "checksum": "sha256:59683b6fff42b40d3a3abbdeb928bb18b4cd84700aaeb9b3c76d37044ae94e01", + "check_gpg": true + }, + { + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "checksum": "sha256:74b842ba3352d7c4ada7e991aeadf8749f058a4d00ccc6f79f1c82a281497cb7", + "check_gpg": true + }, + { + "checksum": "sha256:3acd2c8b6ea534811308b3138859b5fa150b89604bb60f16b0650747039d696a", + "check_gpg": true + }, + { + "checksum": "sha256:e0564d34fde9cf1a42e0fd4ba81ea7ce71bcca8823186f0221e56994bef275c6", + "check_gpg": true + }, + { + "checksum": "sha256:078fa234177ae5ae2736c878aa2a2f8ecccf4c7772ab4ad19a2d6ba4f34e8631", + "check_gpg": true + }, + { + "checksum": "sha256:cdd8e0a970aaaa23637f553692d755a0f57282c4494d31094638b6d4633ec523", + "check_gpg": true + }, + { + "checksum": "sha256:5c686be3533457b6ac047ac804aa54f74ee3a455047d3866dcef7a4da9d95fc6", + "check_gpg": true + }, + { + "checksum": "sha256:d01c5733267171fc234d7ab5387c17cb61e9fdec8f9eb792ea63c8ffb5bafb6c", + "check_gpg": true + }, + { + "checksum": "sha256:b6e327a5fca1efc26c920c42d104dbdafd9e4676681bbd1f28dab81c51677db8", + "check_gpg": true + }, + { + "checksum": "sha256:0f817ea59939bdd0311c8da8369f5c037e340443198ccef659696f67bd2ddcd1", + "check_gpg": true + }, + { + "checksum": "sha256:d7ae9cdbdd754c544d766c8e9748f24f580cd3a4c7c6c4d6203060e966299723", + "check_gpg": true + }, + { + "checksum": "sha256:dbded0760a358f62ec416ce37ffd764c725f8e898479b17173e632debc1a06ae", + "check_gpg": true + }, + { + "checksum": "sha256:39e27e147189e0e431527acfca51d9436149fe7c0fee1399289ea9a4862948cc", + "check_gpg": true + }, + { + "checksum": "sha256:01b808f1ea9299c37c80164d05ef1a5c45e05d53bcbd451b4d52e69a47959bc2", + "check_gpg": true + }, + { + "checksum": "sha256:3793552ff28a7026a6299d8d5d8d50a467f27654524c8e438e2058040d7e6d6c", + "check_gpg": true + }, + { + "checksum": "sha256:e8594d934926d149266098dbb6686b604caa4d8255895ebd732d55ca4e7f0248", + "check_gpg": true + }, + { + "checksum": "sha256:a06e1d34df03aaf429d290d5c281356fefe0ad510c229189405b88b3c0f40374", + "check_gpg": true + }, + { + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "checksum": "sha256:98a6386df94fc9595365c3ecbc630708420fa68d1774614a723dec4a55e84b9c", + "check_gpg": true + }, + { + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "checksum": "sha256:c44dbbff4fe503f5f49b71ab17db7848c6c67fe19d9a4cc6cef59cc6dd15f1a6", + "check_gpg": true + }, + { + "checksum": "sha256:aa938dc6f13d0d57ca811b8c299b1017723fa419997b87754f74db770430c2d9", + "check_gpg": true + }, + { + "checksum": "sha256:da77940ecadc9edb5d14aad51e4bf06664e5763fe6e46b20364732ec3aa2e08a", + "check_gpg": true + }, + { + "checksum": "sha256:5f45a2ff1a9c9f3d4fcae463c1ca70b1a16caccc59816ce391f064c9d8b9d8ae", + "check_gpg": true + }, + { + "checksum": "sha256:ab1be3dcea74c7a7fac49f9a1cad4113fded2d3edabb61b29ed8489a737033fe", + "check_gpg": true + }, + { + "checksum": "sha256:4280042747c9027c3252d360fa33d63490aa518858849115b20162a097a37146", + "check_gpg": true + }, + { + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "checksum": "sha256:f94172554b8ceeab97b560d0b05c2e2df4b2e737471adce6eca82fd3209be254", + "check_gpg": true + }, + { + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "checksum": "sha256:5452b96e4b57c275dd41e48d55af1ca4f77ccfb3ae403796e599a039d7382b91", + "check_gpg": true + }, + { + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "checksum": "sha256:708a8fd75f7c6987d66e2d62de664b5a84c6f75fd4e5230e244681897b15a25d", + "check_gpg": true + }, + { + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "checksum": "sha256:dae52ddd215b506d1805b66873194df5043fd758d42960dee68f029eab329b42", + "check_gpg": true + }, + { + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "checksum": "sha256:6327624b7b0d726a3c95f2245619efb1df8e70023fadcc8158afed39f57859e7", + "check_gpg": true + }, + { + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "checksum": "sha256:08b76b0af07db4d3b27776a96bb7d0dc0f02b7219569676ac79036190d731d5b", + "check_gpg": true + }, + { + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "checksum": "sha256:d9d8c21ad40e59b78008f1a569039462e5654a9d4bb08d84cf032e34cf7bde62", + "check_gpg": true + }, + { + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "checksum": "sha256:cb6b773c2ac78142736abd8a8f9eaac122f4647aefd3f003a615baf79abbefbb", + "check_gpg": true + }, + { + "checksum": "sha256:ab7bc1a828168006b88934bea949ab2b29b837b0a431f7da1a12147f64f6ddb5", + "check_gpg": true + }, + { + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "checksum": "sha256:b06fa62d0a585a7bc3b9d3341923736b3ee4b6cc6d7ca83bebcb97225ca86ac9", + "check_gpg": true + }, + { + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "checksum": "sha256:1b5187e9b694e439a059be58d8de5317f04278371d1195bf000b001ba8699197", + "check_gpg": true + }, + { + "checksum": "sha256:e2549a249d537f80f6595816a1094532c3feb0a730585d102c580583cc1dfde4", + "check_gpg": true + }, + { + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "checksum": "sha256:30fab73ee155f03dbbd99c1e30fe59dfba4ae8fdb2e7213451ccc36d6918bfcc", + "check_gpg": true + }, + { + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "checksum": "sha256:c357a350aa169402db3c898c7edcfee333e1d11a44f62bbeaba3fd3d2f31644d", + "check_gpg": true + }, + { + "checksum": "sha256:224100af3ecfc80c416796ec02c7c4dd113a38d42349d763485f3b42f260493f", + "check_gpg": true + }, + { + "checksum": "sha256:cec98aa5fbefcb99715921b493b4f92d34c4eeb823e9c8741aa75e280def89f1", + "check_gpg": true + }, + { + "checksum": "sha256:8852282172440cd618c695356449cbc035be4091b2a0833c785c8e42cc1df0e6", + "check_gpg": true + }, + { + "checksum": "sha256:c1bb77ed45ae47dc068445c6dfa4b70b273a3daf8cd82b9fa7a50e3d59abe3c1", + "check_gpg": true + }, + { + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "checksum": "sha256:2e8d4ee76fa8678b0e4d6c0297b16f96e0116201bf96b36e8924b1b080abcddd", + "check_gpg": true + }, + { + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "checksum": "sha256:185f36b3af9367e6142233af358df22f23ee623697bc6a45c47091013707872e", + "check_gpg": true + }, + { + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "checksum": "sha256:759386be8f49257266ac614432b762b8e486a89aac5d5f7a581a0330efb59c77", + "check_gpg": true + }, + { + "checksum": "sha256:9eb9c1a67c5be04487cc133bdb8498eaf260e4d930a0143d2e1aa772e3d6cf64", + "check_gpg": true + }, + { + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "checksum": "sha256:406aea2bb2a5f83cabee5a50bad08a3516776c3cd42db8b159f926624f61aa42", + "check_gpg": true + }, + { + "checksum": "sha256:6b740563ba5858573ff3c2d2a827aeaf6e7166178e36066755d2cde4cf8a016f", + "check_gpg": true + }, + { + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "checksum": "sha256:5092704c041bb246eaafd478bedface3f99ce8fa233ada5cf96807f67e980e42", + "check_gpg": true + }, + { + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "checksum": "sha256:1230ddb5d92fe538a0526e3a9f05563a111ae4ff1978fc8e18de889974b5b46c", + "check_gpg": true + }, + { + "checksum": "sha256:ef2734017b25f7e9e1abf67315a7d1c97216642b5dfb979c19b1a3f74cff1e54", + "check_gpg": true + }, + { + "checksum": "sha256:377ad20c1681518bff1f40884589bddc4a692506384c7676f072ddf86ae429f9", + "check_gpg": true + }, + { + "checksum": "sha256:2c6dd4f21d9c4bde29f693d32e44f0d1c5dc73d78d013767df531d69bbfc6ed8", + "check_gpg": true + }, + { + "checksum": "sha256:370b74a811249b8f0bdfcd34137507f058a85196775e9d0d2bb244c100d194ae", + "check_gpg": true + }, + { + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "checksum": "sha256:53ae3ecd59ec61852cabbd039c748ed63ceb6a88da98587d4c33323ba4095154", + "check_gpg": true + }, + { + "checksum": "sha256:918518368513d162d772dfc5d16536ad2799276bcba2f47514a1c7098de2b43f", + "check_gpg": true + }, + { + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "checksum": "sha256:a5228fc876cffc7dc79769ada5653cb9bfb80d469fb3c9f0acc14a1a0d15782d", + "check_gpg": true + }, + { + "checksum": "sha256:0aaaaa29cc1bb4d358142db6eb7d12df9252a8166bf61956203878eed210785c", + "check_gpg": true + }, + { + "checksum": "sha256:b8e4cfecbbe7d2d6d9f3003432e826398f6bea21d5aba11a17ee74358cb84a6e", + "check_gpg": true + }, + { + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "checksum": "sha256:7dcd11f03fa0979841bf0afe0a2ac8f360502d0a2dee8322a39115595c2464ec", + "check_gpg": true + }, + { + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "checksum": "sha256:70b5e4e580da72969ad3bb144c15293910b7d679e195c118cee60d8320f01851", + "check_gpg": true + }, + { + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "checksum": "sha256:5b7763510f4badd05a1647e1fadf9dc49044b1cf4d754262d0d6d5ee9a8f3b12", + "check_gpg": true + }, + { + "checksum": "sha256:250a8077296adcd83585002ff36684be416ba1481d7bd9ed96973e37b9137f00", + "check_gpg": true + }, + { + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "checksum": "sha256:cad76a2802c5f355b527df3cabde70bd58b31ec4b7de3b1ac15a429cda5b9b03", + "check_gpg": true + }, + { + "checksum": "sha256:0064a3aeff41fb7345c061956c35e4b9d0b8802954e717491fb6eb51028d22fd", + "check_gpg": true + }, + { + "checksum": "sha256:3cd092e6e03efb4bb49b91dedd52b43f891092d04a2ff040b9f2197ec2082511", + "check_gpg": true + }, + { + "checksum": "sha256:fda078d8edd4e0902246dd3121efb6c57cb8231dbb975380f9249c64163f0d88", + "check_gpg": true + }, + { + "checksum": "sha256:c8fc05dd997477fc80e2f3195e719ca2e569fc8997f05a64a13c52c8358e8239", + "check_gpg": true + }, + { + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "checksum": "sha256:5c68635cb03533a38d4a42f6547c21a1d5f9952351bb01f3cf865d2621a6e634", + "check_gpg": true + }, + { + "checksum": "sha256:a0b6a8d5530f5003f5c8d56211246cd1130a5b4dc1396dc50da70ce0e128b02c", + "check_gpg": true + }, + { + "checksum": "sha256:0560d3b3e915221aad94ddf83169bd680b1f0da9aa8ec8e9360bcb8fe071483e", + "check_gpg": true + }, + { + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "checksum": "sha256:bce152ddd2f05f892e5ce483a7c12606ba7d2c42108402fc9609ada04048e6df", + "check_gpg": true + }, + { + "checksum": "sha256:1c4b186665558747023a60d0d662d3780a1bc49e578062f4b70100c71ab2220c", + "check_gpg": true + }, + { + "checksum": "sha256:03b50a4ea5cf5655c67e2358fabb6e563eec4e7929e7fc6c4e92c92694f60fa0", + "check_gpg": true + }, + { + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "checksum": "sha256:c9df7c58da59500e1717e435c565e221daa344212db8e83eb33b6a9c8e9a67bb", + "check_gpg": true + }, + { + "checksum": "sha256:0b763d946ec7da165107258469e7655707caa6fde0fff49e9e89d747e13eacc1", + "check_gpg": true + }, + { + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "checksum": "sha256:5e24dd39ae59ef7b7a386f28509cc80d8fabb23f0932e52ea365cf064ff76c59", + "check_gpg": true + }, + { + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "checksum": "sha256:f8bdaf5211c6fc72c8f60c7ddd59b8ca124ab26d2670ee6490a7fabb5177d919", + "check_gpg": true + }, + { + "checksum": "sha256:a9ec13abf63c69913acc1ac7070ab315c8b5a58c6006c3dfc5b27662f7f22260", + "check_gpg": true + }, + { + "checksum": "sha256:173a812d859c70f8db7b014d507c5cacb76c62ab5480c44be217f880465f42c7", + "check_gpg": true + }, + { + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "checksum": "sha256:4c5c7f3773c634c054b0a5fc1b40d0a8448b44bb5aff410bfa88facf9e2059ff", + "check_gpg": true + }, + { + "checksum": "sha256:9c849b1d4fd605ae749fd9d090715b6034520af871c23729cd4003f22e0990de", + "check_gpg": true + }, + { + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "checksum": "sha256:09128c1b70cb8ea1a9bfbc6f3314dd5a8ba0c1a1886a82cd0fbe6845d48215dc", + "check_gpg": true + }, + { + "checksum": "sha256:8d6742dce47f8ed65e222864872e919f30c678f5df1e99c134fba8a0fc7f454d", + "check_gpg": true + }, + { + "checksum": "sha256:e7ee4b6d6456cb7da0332f5a6fb8a7c47df977bcf616f12f0455413765367e89", + "check_gpg": true + }, + { + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "checksum": "sha256:776a182ecaab9f86c7e869db2eb2deea1f291caee701cddbd752da8cd3c57458", + "check_gpg": true + }, + { + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "checksum": "sha256:1bd969e0521820374122f5132e5998d9bd2ab185be66565a7266096297419c8e", + "check_gpg": true + }, + { + "checksum": "sha256:c5b5967a094ced90899052a82e2c245529b75ba3f46e0ce1a89cfc95edb935ea", + "check_gpg": true + }, + { + "checksum": "sha256:066f254f9ac7712b44214816de907a87eb8dfd0d2ea9570a7513db9a6617ba26", + "check_gpg": true + }, + { + "checksum": "sha256:0e9a8a0f823bf0ef948862f0ccb62353460bd07931e756c98f23908c1c526578", + "check_gpg": true + }, + { + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "checksum": "sha256:941a9068b8fa524ecac58d37f941b95fbdcd9e38bd87c7f9d1330c5925a52a20", + "check_gpg": true + }, + { + "checksum": "sha256:d9fcdf78bae8bf3f3e7d469686a07fdb337567a7f6159397eee990730eb8cd11", + "check_gpg": true + }, + { + "checksum": "sha256:15dc15a5be210707852f051f4d09949c063a7283edc7d4ca3d4289eedcc0b509", + "check_gpg": true + }, + { + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "checksum": "sha256:59ba5bf69953a5a2e902b0f08b7187b66d84968852d46a3579a059477547d1a0", + "check_gpg": true + }, + { + "checksum": "sha256:dc835194ecfa6ebda81e0a764c953eff3422a61863e9a3e0dc74ea4cae7a4d94", + "check_gpg": true + }, + { + "checksum": "sha256:e1a85d0f6b23482247c81c449d87749cdc8e6b7df737b39aba170634b644da0f", + "check_gpg": true + }, + { + "checksum": "sha256:6aa1e29a4d805fc36c3196788fe78cb4552e2ebec8b3d0f8d32974e6a97025f2", + "check_gpg": true + }, + { + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "checksum": "sha256:aa0007192287faeaecc72d9fa48efdb3108c764d450dc8fea65474476da32c45", + "check_gpg": true + }, + { + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "checksum": "sha256:bafc2680bd298f0fac70854224ef03b7098d4c46ee35e270f6fd58d2e812ff1b", + "check_gpg": true + }, + { + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "checksum": "sha256:233e5f78027b684e5aaac1395cc574aea3039059bf86eb4494422bc74216a396", + "check_gpg": true + }, + { + "checksum": "sha256:563b3741d26b6af963fdb7b0634e0791445a707d0b6093ac71c3224299241639", + "check_gpg": true + }, + { + "checksum": "sha256:017e78c5e23f98d6ee299255fc7be5381dba63d169e3f5dcb1de9d21b5d30ba5", + "check_gpg": true + }, + { + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "checksum": "sha256:d967d6bbb33bf7a295a64807f81875c84e82a8ecc59b6c72fe955141b1660d39", + "check_gpg": true + }, + { + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "checksum": "sha256:a1d1bac6c4710e0a1a6e8a507b06a630dda6687f12642be0847768c14ce7271e", + "check_gpg": true + }, + { + "checksum": "sha256:774d214a379c0b729d7e989f9d5094fdfda7df68c1e792ba9200542032f04c91", + "check_gpg": true + }, + { + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "checksum": "sha256:f0346c485da9a7e8c8d93624f335cbb25790a7f37c6c03e43232517bb73bbacb", + "check_gpg": true + }, + { + "checksum": "sha256:be628d396303d6547b9d7239897fbf4fad7447375cb5e898b394a458f420b550", + "check_gpg": true + }, + { + "checksum": "sha256:839c62cd7fc7e152decded6f28c80b5f7b8f34a5e319057867b38b26512cee67", + "check_gpg": true + }, + { + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "checksum": "sha256:a0c8f83cef355dd98d7750e3d8eb3e9f3e9f8f5e9a3ee441cb4bc4014c647e31", + "check_gpg": true + }, + { + "checksum": "sha256:b1871d8ac1abaf5e809448c5f37e32487f177aee3080d9033efb4b160f755aba", + "check_gpg": true + }, + { + "checksum": "sha256:fe944d9dd89d550d2aa44d33cfeb11c803b074bfcda0dbbad486c392bf1cc9d0", + "check_gpg": true + }, + { + "checksum": "sha256:6cd7444c22d56201f61fed5fd741b44cfaae18d95b811d25c5f0ffe2f8e55a8f", + "check_gpg": true + }, + { + "checksum": "sha256:7115a12fad224b469419e19ee5c0d38322f467fe7a1c441c1b0239b197baac2a", + "check_gpg": true + }, + { + "checksum": "sha256:cbcade4487fbf372b487b9f82ed85e04ff037551c96c4b461abc3716338ff9c4", + "check_gpg": true + }, + { + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "checksum": "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393", + "check_gpg": true + }, + { + "checksum": "sha256:9664aba8dfd6bd6fda669fcf8f6ff04914305a6373b09d8b675322c7337b9c36", + "check_gpg": true + }, + { + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "checksum": "sha256:b3bc3f1c9e8028a177599f1ed9cb6c31d2d6e75111e34623d25e736d3ddcf8fd", + "check_gpg": true + }, + { + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "checksum": "sha256:3efd6a2548813167fe37718546bc768a5aa8ba59aa80edcecd8ba408bec329b0", + "check_gpg": true + }, + { + "checksum": "sha256:4c02e3e1808f0189269b242242468a364007a8f12c6e38afc24b599b2848b0fa", + "check_gpg": true + }, + { + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "checksum": "sha256:4302361b12eefd5574f57bf0c49c0e5bdc738eddda33634af8b35adfb53a52a1", + "check_gpg": true + }, + { + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "checksum": "sha256:cad86777bcb265db0da766952ff63e8d33f0fd4f3b90b22d0a1da587a785db44", + "check_gpg": true + }, + { + "checksum": "sha256:67419432fe7d373f8e5ddaa7b0dd1c25389608bf2f4ee76dbabcc2d96eb8c9d0", + "check_gpg": true + }, + { + "checksum": "sha256:c99db07c2548246f6b2ec98c1d2b536e40b2f4dbba39f3430044868a27985732", + "check_gpg": true + }, + { + "checksum": "sha256:e1133a81512bfba8d4bf06bc12aafee7fe13d6319fc8690b81e6f46d978930eb", + "check_gpg": true + }, + { + "checksum": "sha256:3cf4fcd2fe43e6477d5f1c05167c669c247dcbeea1ab37bf3b7d42dcab482565", + "check_gpg": true + }, + { + "checksum": "sha256:226bb890cc85bfc60d874a9cb13cb7f7f1e90d90308c7726e25e14cee5487e66", + "check_gpg": true + }, + { + "checksum": "sha256:142c67cdc69366820a7fc7567e40567b545b52f279d1ff992e4787d3c1ea4956", + "check_gpg": true + }, + { + "checksum": "sha256:d29207af6ff12bec1a5b9712550f2faf7efbff75c597cc2e84b6c9d0dfe2de68", + "check_gpg": true + }, + { + "checksum": "sha256:ced1d02dd424b1d087347d452420e17ba83af2b926041c794471798dfa5f5868", + "check_gpg": true + }, + { + "checksum": "sha256:e308e1ebc85889742a002fd9892d71894fd6fae473320fbc7b1ffb94248602cd", + "check_gpg": true + }, + { + "checksum": "sha256:8d3bdefac6c0f39e66e092d62b37efa3076976ae66def1f9dd1f217022406efa", + "check_gpg": true + }, + { + "checksum": "sha256:be0181770c94141852b6bb618baf56e7b8df9f70524b0c2e0e391e550285231f", + "check_gpg": true + }, + { + "checksum": "sha256:d1cc79976965be3fe769cb8c23a281064816eaa195caf6057b8d1da0e9ff7ae5", + "check_gpg": true + }, + { + "checksum": "sha256:42edf6b8e8be5e64f7e0f9714c5b199a364393c141cb170f6272ab2e9e0e4d88", + "check_gpg": true + }, + { + "checksum": "sha256:7bc2e2a25b04b52a4ec5de2858e75eb07f16495d4de5f7ce926777130302cfe3", + "check_gpg": true + }, + { + "checksum": "sha256:105beb1a237e66802e64e620f79b357dfc8f3bb8952ac2f293548f1d68ca40b1", + "check_gpg": true + }, + { + "checksum": "sha256:19ca7ab9cb2e39ec452ed1424f828ec464266094e31903301680d5a5d0e2ac2c", + "check_gpg": true + }, + { + "checksum": "sha256:02598f73a65df569906ad68fc51e6e2525e35797c7e814fc6cf42b787f1d1389", + "check_gpg": true + }, + { + "checksum": "sha256:1824bc3233b76fabb2305d11bd9bc905cb8e8d7f44006f253164b64808be4b39", + "check_gpg": true + }, + { + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "checksum": "sha256:34321e09964f724b712ed709115f794b1953f4a4d472d655bec0993d27c51a22", + "check_gpg": true + }, + { + "checksum": "sha256:c11eba3a7ae0ee7ceaea4bbf78edf9a1c3c5d9629b3f40167f5fb8004b2c19a0", + "check_gpg": true + }, + { + "checksum": "sha256:2e0b39dbf3b7e68a06f321a04797d4e521b9b484ffc8d6d53f7662613e077065", + "check_gpg": true + }, + { + "checksum": "sha256:cff4bc30873c62698e4bc2f519bb0aa6814534d7ce99f1ba757dd345b881505f", + "check_gpg": true + }, + { + "checksum": "sha256:71fbed9d1b1f6965b42a5c87c98732bed84a8a2efb43c2218b4d1c59e9eaf190", + "check_gpg": true + }, + { + "checksum": "sha256:947fee92d0c147d832bbb3ab53e0b96817d03c38260429a4ff01856324b160da", + "check_gpg": true + }, + { + "checksum": "sha256:75f95d532446862a2e3b03840135698df48a216359265b19449ed4aa9c8c9c11", + "check_gpg": true + }, + { + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "checksum": "sha256:8e4f8fed6f2fdf05e85fc84023778dbf23e09f1dc2f6a0940860886d3f59831b", + "check_gpg": true + }, + { + "checksum": "sha256:44c659fb58e1ee64f5d77b35459dc43a0fded79c8a6e2278a2c9c71461792ff1", + "check_gpg": true + }, + { + "checksum": "sha256:bfbd05db004755c45f7ec31be67b02d9c7fa0c9b1bb060bb2ffe85b3f2b5d811", + "check_gpg": true + }, + { + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "checksum": "sha256:ca82090f18d47e454cc512e832bf3ec771edf65299e3c1d56d5df9fab0428869", + "check_gpg": true + }, + { + "checksum": "sha256:98f622a37cb22857fdce63d8c97d9711c74cdbd3451e588e2b519532db55a5a2", + "check_gpg": true + }, + { + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "checksum": "sha256:5c0cf0adf7a3ad24ddde58f298ebf4ce741bccdfc8eff0103644115c837f80d6", + "check_gpg": true + }, + { + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + }, + { + "checksum": "sha256:7dbe1fb48dad46fe75609974503f5647b644a9dc2c88b785aabd83b4eda0b881", + "check_gpg": true + }, + { + "checksum": "sha256:9ed3ad948a0dada7710d4b8b2053d4716dc0754f5648a74f4d78b59b737529dc", + "check_gpg": true + } + ] + } + }, + { + "name": "org.osbuild.fix-bls", + "options": {} + }, + { + "name": "org.osbuild.fstab", + "options": { + "filesystems": [ + { + "uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "vfs_type": "xfs", + "path": "/", + "options": "defaults" + }, + { + "uuid": "7B77-95E7", + "vfs_type": "vfat", + "path": "/boot/efi", + "options": "defaults,uid=0,gid=0,umask=077,shortname=winnt", + "passno": 2 + } + ] + } + }, + { + "name": "org.osbuild.grub2", + "options": { + "root_fs_uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "kernel_opts": "ro net.ifnames=0", + "legacy": "i386-pc", + "uefi": { + "vendor": "centos" + } + } + }, + { + "name": "org.osbuild.locale", + "options": { + "language": "en_US" + } + }, + { + "name": "org.osbuild.timezone", + "options": { + "zone": "America/New_York" + } + }, + { + "name": "org.osbuild.users", + "options": { + "users": { + "redhat": { + "key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC61wMCjOSHwbVb4VfVyl5sn497qW4PsdQ7Ty7aD6wDNZ/QjjULkDV/yW5WjDlDQ7UqFH0Sr7vywjqDizUAqK7zM5FsUKsUXWHWwg/ehKg8j9xKcMv11AkFoUoujtfAujnKODkk58XSA9whPr7qcw3vPrmog680pnMSzf9LC7J6kXfs6lkoKfBh9VnlxusCrw2yg0qI1fHAZBLPx7mW6+me71QZsS6sVz8v8KXyrXsKTdnF50FjzHcK9HXDBtSJS5wA3fkcRYymJe0o6WMWNdgSRVpoSiWaHHmFgdMUJaYoCfhXzyl7LtNb3Q+Sveg+tJK7JaRXBLMUllOlJ6ll5Hod root@localhost" + } + } + } + }, + { + "name": "org.osbuild.selinux", + "options": { + "file_contexts": "etc/selinux/targeted/contexts/files/file_contexts" + } + }, + { + "name": "org.osbuild.sysconfig", + "options": { + "kernel": { + "update_default": true, + "default_kernel": "kernel" + }, + "network": { + "networking": true, + "no_zero_conf": true + } + } + } + ], + "assembler": { + "name": "org.osbuild.qemu", + "options": { + "bootloader": { + "type": "grub2" + }, + "format": "vmdk", + "filename": "disk.vmdk", + "size": 4294967296, + "ptuuid": "D209C89E-EA5E-4FBD-B161-B461CCE297E0", + "pttype": "gpt", + "partitions": [ + { + "start": 2048, + "size": 2048, + "type": "21686148-6449-6E6F-744E-656564454649", + "bootable": true, + "uuid": "FAC7F1FB-3E8D-4137-A512-961DE09A5549" + }, + { + "start": 4096, + "size": 204800, + "type": "C12A7328-F81F-11D2-BA4B-00A0C93EC93B", + "uuid": "68B2905B-DF3E-4FB3-80FA-49D1E773AA33", + "filesystem": { + "type": "vfat", + "uuid": "7B77-95E7", + "mountpoint": "/boot/efi" + } + }, + { + "start": 208896, + "type": "0FC63DAF-8483-4772-8E79-3D69D8477DE4", + "uuid": "6264D520-3FB9-423F-8AB8-7A0A8E3D3562", + "filesystem": { + "type": "xfs", + "uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "label": "root", + "mountpoint": "/" + } + } + ] + } + } + } + }, + "rpmmd": { + "build-packages": [ + { + "name": "acl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/acl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "name": "audit-libs", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "name": "basesystem", + "epoch": 0, + "version": "11", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/basesystem-11-5.el8.noarch.rpm", + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "name": "bash", + "epoch": 0, + "version": "4.4.19", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bash-4.4.19-14.el8.x86_64.rpm", + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "name": "brotli", + "epoch": 0, + "version": "1.0.6", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/brotli-1.0.6-3.el8.x86_64.rpm", + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "name": "bzip2-libs", + "epoch": 0, + "version": "1.0.6", + "release": "26.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.6-26.el8.x86_64.rpm", + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "name": "ca-certificates", + "epoch": 0, + "version": "2020.2.41", + "release": "80.0.el8_2", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ca-certificates-2020.2.41-80.0.el8_2.noarch.rpm", + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "name": "centos-gpg-keys", + "epoch": 1, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-gpg-keys-8-2.el8.noarch.rpm", + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "name": "centos-stream-release", + "epoch": 0, + "version": "8.4", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-release-8.4-1.el8.noarch.rpm", + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "name": "centos-stream-repos", + "epoch": 0, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-repos-8-2.el8.noarch.rpm", + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "name": "chkconfig", + "epoch": 0, + "version": "1.13", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chkconfig-1.13-2.el8.x86_64.rpm", + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "name": "coreutils", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "name": "coreutils-common", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-common-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "name": "cpio", + "epoch": 0, + "version": "2.12", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cpio-2.12-10.el8.x86_64.rpm", + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "name": "cracklib", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "name": "cracklib-dicts", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "name": "crypto-policies", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "name": "crypto-policies-scripts", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-scripts-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "name": "cryptsetup-libs", + "epoch": 0, + "version": "2.3.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.3.3-2.el8.x86_64.rpm", + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "name": "curl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/curl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "name": "cyrus-sasl-lib", + "epoch": 0, + "version": "2.1.27", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-5.el8.x86_64.rpm", + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "name": "dbus", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "name": "dbus-common", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-common-1.12.8-12.el8.noarch.rpm", + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "name": "dbus-daemon", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-daemon-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "name": "dbus-libs", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-libs-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "name": "dbus-tools", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-tools-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "name": "device-mapper", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "name": "device-mapper-libs", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "name": "diffutils", + "epoch": 0, + "version": "3.6", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/diffutils-3.6-6.el8.x86_64.rpm", + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "name": "dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "name": "dnf-data", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-data-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "name": "dosfstools", + "epoch": 0, + "version": "4.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dosfstools-4.1-6.el8.x86_64.rpm", + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "name": "dracut", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "name": "e2fsprogs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "name": "e2fsprogs-libs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "name": "elfutils-debuginfod-client", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "name": "elfutils-default-yama-scope", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.182-3.el8.noarch.rpm", + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "name": "elfutils-libelf", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libelf-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "name": "elfutils-libs", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libs-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "name": "expat", + "epoch": 0, + "version": "2.2.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/expat-2.2.5-4.el8.x86_64.rpm", + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "name": "file", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "name": "file-libs", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-libs-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "name": "filesystem", + "epoch": 0, + "version": "3.8", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/filesystem-3.8-4.el8.x86_64.rpm", + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "name": "findutils", + "epoch": 1, + "version": "4.6.0", + "release": "20.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/findutils-4.6.0-20.el8.x86_64.rpm", + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "name": "freetype", + "epoch": 0, + "version": "2.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/freetype-2.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "name": "fuse-libs", + "epoch": 0, + "version": "2.9.7", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-libs-2.9.7-12.el8.x86_64.rpm", + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "name": "gawk", + "epoch": 0, + "version": "4.2.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gawk-4.2.1-2.el8.x86_64.rpm", + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "name": "gdbm", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "name": "gdbm-libs", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-libs-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "name": "gettext", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "name": "gettext-libs", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-libs-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "name": "glib2", + "epoch": 0, + "version": "2.56.4", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib2-2.56.4-9.el8.x86_64.rpm", + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "name": "glibc", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "name": "glibc-all-langpacks", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-all-langpacks-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:39ad53fbac39fb5c813364847fd73affc7d1a334e1ff9424265ed6c6c34149af", + "check_gpg": true + }, + { + "name": "glibc-common", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-common-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "name": "gmp", + "epoch": 1, + "version": "6.1.2", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gmp-6.1.2-10.el8.x86_64.rpm", + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "name": "gnupg2", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "name": "gnupg2-smime", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-smime-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "name": "gnutls", + "epoch": 0, + "version": "3.6.14", + "release": "7.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnutls-3.6.14-7.el8_3.x86_64.rpm", + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "name": "gpgme", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gpgme-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "name": "grep", + "epoch": 0, + "version": "3.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grep-3.1-6.el8.x86_64.rpm", + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "name": "grub2-common", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-common-2.02-93.el8.noarch.rpm", + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "name": "grub2-pc", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "name": "grub2-pc-modules", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-modules-2.02-93.el8.noarch.rpm", + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "name": "grub2-tools", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "name": "grub2-tools-extra", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-extra-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "name": "grub2-tools-minimal", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-minimal-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "name": "grubby", + "epoch": 0, + "version": "8.40", + "release": "41.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grubby-8.40-41.el8.x86_64.rpm", + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "name": "gzip", + "epoch": 0, + "version": "1.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gzip-1.9-12.el8.x86_64.rpm", + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "name": "hardlink", + "epoch": 1, + "version": "1.3", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hardlink-1.3-6.el8.x86_64.rpm", + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "name": "hwdata", + "epoch": 0, + "version": "0.314", + "release": "8.7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hwdata-0.314-8.7.el8.noarch.rpm", + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "name": "ima-evm-utils", + "epoch": 0, + "version": "1.3.2", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ima-evm-utils-1.3.2-11.el8.x86_64.rpm", + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "name": "info", + "epoch": 0, + "version": "6.5", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/info-6.5-6.el8.x86_64.rpm", + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "name": "iptables-libs", + "epoch": 0, + "version": "1.8.4", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-libs-1.8.4-17.el8.x86_64.rpm", + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "name": "json-c", + "epoch": 0, + "version": "0.13.1", + "release": "0.4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-c-0.13.1-0.4.el8.x86_64.rpm", + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "name": "kbd", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-2.0.4-10.el8.x86_64.rpm", + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "name": "kbd-legacy", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-legacy-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "name": "kbd-misc", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-misc-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "name": "keyutils-libs", + "epoch": 0, + "version": "1.5.10", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-libs-1.5.10-6.el8.x86_64.rpm", + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "name": "kmod", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-25-17.el8.x86_64.rpm", + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "name": "kmod-libs", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-libs-25-17.el8.x86_64.rpm", + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "name": "kpartx", + "epoch": 0, + "version": "0.8.4", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kpartx-0.8.4-8.el8.x86_64.rpm", + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "name": "krb5-libs", + "epoch": 0, + "version": "1.18.2", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/krb5-libs-1.18.2-8.el8.x86_64.rpm", + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "name": "libacl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libacl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "name": "libaio", + "epoch": 0, + "version": "0.3.112", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libaio-0.3.112-1.el8.x86_64.rpm", + "checksum": "sha256:2c63399bee449fb6e921671a9bbf3356fda73f890b578820f7d926202e98a479", + "check_gpg": true + }, + { + "name": "libarchive", + "epoch": 0, + "version": "3.3.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libarchive-3.3.3-1.el8.x86_64.rpm", + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "name": "libassuan", + "epoch": 0, + "version": "2.5.1", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libassuan-2.5.1-3.el8.x86_64.rpm", + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "name": "libattr", + "epoch": 0, + "version": "2.4.48", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libattr-2.4.48-3.el8.x86_64.rpm", + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "name": "libblkid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libblkid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "name": "libcap", + "epoch": 0, + "version": "2.26", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-2.26-4.el8.x86_64.rpm", + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "name": "libcap-ng", + "epoch": 0, + "version": "0.7.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-ng-0.7.9-5.el8.x86_64.rpm", + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "name": "libcom_err", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcom_err-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "name": "libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "name": "libcroco", + "epoch": 0, + "version": "0.6.12", + "release": "4.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcroco-0.6.12-4.el8_2.1.x86_64.rpm", + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "name": "libcurl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcurl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "name": "libdb", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "name": "libdb-utils", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-utils-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "name": "libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "name": "libevent", + "epoch": 0, + "version": "2.1.8", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libevent-2.1.8-5.el8.x86_64.rpm", + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "name": "libfdisk", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libfdisk-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "name": "libffi", + "epoch": 0, + "version": "3.1", + "release": "22.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libffi-3.1-22.el8.x86_64.rpm", + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "name": "libgcc", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcc-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "name": "libgcrypt", + "epoch": 0, + "version": "1.8.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcrypt-1.8.5-4.el8.x86_64.rpm", + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "name": "libgomp", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgomp-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "name": "libgpg-error", + "epoch": 0, + "version": "1.31", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgpg-error-1.31-1.el8.x86_64.rpm", + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "name": "libibverbs", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libibverbs-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "name": "libidn2", + "epoch": 0, + "version": "2.2.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libidn2-2.2.0-1.el8.x86_64.rpm", + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "name": "libkcapi", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "name": "libkcapi-hmaccalc", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-hmaccalc-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "name": "libksba", + "epoch": 0, + "version": "1.3.5", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libksba-1.3.5-7.el8.x86_64.rpm", + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "name": "libmetalink", + "epoch": 0, + "version": "0.1.3", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmetalink-0.1.3-7.el8.x86_64.rpm", + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "name": "libmodulemd", + "epoch": 0, + "version": "2.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodulemd-2.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "name": "libmount", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmount-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "name": "libnghttp2", + "epoch": 0, + "version": "1.33.0", + "release": "3.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnghttp2-1.33.0-3.el8_2.1.x86_64.rpm", + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "name": "libnl3", + "epoch": 0, + "version": "3.5.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-3.5.0-1.el8.x86_64.rpm", + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "name": "libnsl2", + "epoch": 0, + "version": "1.2.0", + "release": "2.20180605git4a062cf.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64.rpm", + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "name": "libpcap", + "epoch": 14, + "version": "1.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpcap-1.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "name": "libpng", + "epoch": 2, + "version": "1.6.34", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpng-1.6.34-5.el8.x86_64.rpm", + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "name": "libpsl", + "epoch": 0, + "version": "0.20.2", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpsl-0.20.2-6.el8.x86_64.rpm", + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "name": "libpwquality", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "name": "librepo", + "epoch": 0, + "version": "1.12.0", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/librepo-1.12.0-3.el8.x86_64.rpm", + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "name": "libreport-filesystem", + "epoch": 0, + "version": "2.9.5", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libreport-filesystem-2.9.5-15.el8.x86_64.rpm", + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "name": "libseccomp", + "epoch": 0, + "version": "2.4.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libseccomp-2.4.3-1.el8.x86_64.rpm", + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "name": "libsecret", + "epoch": 0, + "version": "0.18.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsecret-0.18.6-1.el8.x86_64.rpm", + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "name": "libselinux", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "name": "libselinux-utils", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-utils-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "name": "libsemanage", + "epoch": 0, + "version": "2.9", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsemanage-2.9-6.el8.x86_64.rpm", + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "name": "libsepol", + "epoch": 0, + "version": "2.9", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsepol-2.9-2.el8.x86_64.rpm", + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "name": "libsigsegv", + "epoch": 0, + "version": "2.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsigsegv-2.11-5.el8.x86_64.rpm", + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "name": "libsmartcols", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmartcols-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "name": "libsolv", + "epoch": 0, + "version": "0.7.16", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsolv-0.7.16-2.el8.x86_64.rpm", + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "name": "libss", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libss-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "name": "libssh", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-0.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "name": "libssh-config", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-config-0.9.4-2.el8.noarch.rpm", + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "name": "libstdc++", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstdc++-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "name": "libtasn1", + "epoch": 0, + "version": "4.13", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtasn1-4.13-3.el8.x86_64.rpm", + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "name": "libtirpc", + "epoch": 0, + "version": "1.1.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtirpc-1.1.4-4.el8.x86_64.rpm", + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "name": "libunistring", + "epoch": 0, + "version": "0.9.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libunistring-0.9.9-3.el8.x86_64.rpm", + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "name": "libusbx", + "epoch": 0, + "version": "1.0.23", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libusbx-1.0.23-4.el8.x86_64.rpm", + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "name": "libutempter", + "epoch": 0, + "version": "1.1.6", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libutempter-1.1.6-14.el8.x86_64.rpm", + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "name": "libuuid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuuid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "name": "libverto", + "epoch": 0, + "version": "0.3.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-0.3.0-5.el8.x86_64.rpm", + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "name": "libxcrypt", + "epoch": 0, + "version": "4.1.1", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxcrypt-4.1.1-4.el8.x86_64.rpm", + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "name": "libxml2", + "epoch": 0, + "version": "2.9.7", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxml2-2.9.7-9.el8.x86_64.rpm", + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "name": "libyaml", + "epoch": 0, + "version": "0.1.7", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libyaml-0.1.7-5.el8.x86_64.rpm", + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "name": "libzstd", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libzstd-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "name": "lua-libs", + "epoch": 0, + "version": "5.3.4", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lua-libs-5.3.4-11.el8.x86_64.rpm", + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "name": "lz4-libs", + "epoch": 0, + "version": "1.8.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lz4-libs-1.8.3-2.el8.x86_64.rpm", + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "name": "memstrack", + "epoch": 0, + "version": "0.1.11", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/memstrack-0.1.11-1.el8.x86_64.rpm", + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "name": "mpfr", + "epoch": 0, + "version": "3.1.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mpfr-3.1.6-1.el8.x86_64.rpm", + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "name": "ncurses", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "name": "ncurses-base", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-base-6.1-7.20180224.el8.noarch.rpm", + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "name": "ncurses-libs", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-libs-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "name": "nettle", + "epoch": 0, + "version": "3.4.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nettle-3.4.1-2.el8.x86_64.rpm", + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "name": "npth", + "epoch": 0, + "version": "1.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/npth-1.5-4.el8.x86_64.rpm", + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "name": "openldap", + "epoch": 0, + "version": "2.4.46", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openldap-2.4.46-16.el8.x86_64.rpm", + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "name": "openssl", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "name": "openssl-libs", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-libs-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "name": "openssl-pkcs11", + "epoch": 0, + "version": "0.4.10", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-pkcs11-0.4.10-2.el8.x86_64.rpm", + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "name": "os-prober", + "epoch": 0, + "version": "1.74", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/os-prober-1.74-6.el8.x86_64.rpm", + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "name": "p11-kit", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "name": "p11-kit-trust", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-trust-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "name": "pam", + "epoch": 0, + "version": "1.3.1", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pam-1.3.1-14.el8.x86_64.rpm", + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "name": "pciutils", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "name": "pciutils-libs", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-libs-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "name": "pcre", + "epoch": 0, + "version": "8.42", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre-8.42-4.el8.x86_64.rpm", + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "name": "pcre2", + "epoch": 0, + "version": "10.32", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre2-10.32-2.el8.x86_64.rpm", + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "name": "pigz", + "epoch": 0, + "version": "2.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pigz-2.4-4.el8.x86_64.rpm", + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "name": "platform-python", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "name": "platform-python-pip", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-pip-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "name": "platform-python-setuptools", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-setuptools-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "name": "policycoreutils", + "epoch": 0, + "version": "2.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-2.9-12.el8.x86_64.rpm", + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "name": "popt", + "epoch": 0, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/popt-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "name": "procps-ng", + "epoch": 0, + "version": "3.3.15", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/procps-ng-3.3.15-6.el8.x86_64.rpm", + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "name": "publicsuffix-list-dafsa", + "epoch": 0, + "version": "20180723", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20180723-1.el8.noarch.rpm", + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "name": "python3-dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "name": "python3-gpg", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gpg-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "name": "python3-hawkey", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-hawkey-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "name": "python3-iniparse", + "epoch": 0, + "version": "0.4", + "release": "31.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-iniparse-0.4-31.el8.noarch.rpm", + "checksum": "sha256:5c0957decce3babef9864904be13190b0072aef720e9f4ca820bab6c02a20178", + "check_gpg": true + }, + { + "name": "python3-libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "name": "python3-libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "name": "python3-libs", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libs-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "name": "python3-pip-wheel", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pip-wheel-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "name": "python3-rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "name": "python3-setuptools", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:c6f27b6e01d80e756408e3c1451e4af00e7d02da0aa24402644c0785118753fe", + "check_gpg": true + }, + { + "name": "python3-setuptools-wheel", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "name": "python3-six", + "epoch": 0, + "version": "1.11.0", + "release": "8.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-six-1.11.0-8.el8.noarch.rpm", + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "name": "rdma-core", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rdma-core-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "name": "readline", + "epoch": 0, + "version": "7.0", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/readline-7.0-10.el8.x86_64.rpm", + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "name": "rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "name": "rpm-build-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-build-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "name": "rpm-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "name": "rpm-plugin-selinux", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "name": "rpm-plugin-systemd-inhibit", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "name": "sed", + "epoch": 0, + "version": "4.5", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sed-4.5-2.el8.x86_64.rpm", + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "name": "selinux-policy", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "name": "selinux-policy-targeted", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-targeted-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "name": "setup", + "epoch": 0, + "version": "2.12.2", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/setup-2.12.2-6.el8.noarch.rpm", + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "name": "shadow-utils", + "epoch": 2, + "version": "4.6", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shadow-utils-4.6-12.el8.x86_64.rpm", + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "name": "shared-mime-info", + "epoch": 0, + "version": "1.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shared-mime-info-1.9-3.el8.x86_64.rpm", + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "name": "sqlite-libs", + "epoch": 0, + "version": "3.26.0", + "release": "13.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sqlite-libs-3.26.0-13.el8.x86_64.rpm", + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "name": "systemd", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-239-44.el8.x86_64.rpm", + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "name": "systemd-libs", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-libs-239-44.el8.x86_64.rpm", + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "name": "systemd-pam", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-pam-239-44.el8.x86_64.rpm", + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "name": "systemd-udev", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-udev-239-44.el8.x86_64.rpm", + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "name": "tar", + "epoch": 2, + "version": "1.30", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tar-1.30-5.el8.x86_64.rpm", + "checksum": "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393", + "check_gpg": true + }, + { + "name": "tpm2-tss", + "epoch": 0, + "version": "2.3.2", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tpm2-tss-2.3.2-3.el8.x86_64.rpm", + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "name": "trousers", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "name": "trousers-lib", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-lib-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "name": "tzdata", + "epoch": 0, + "version": "2021a", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tzdata-2021a-1.el8.noarch.rpm", + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "name": "util-linux", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/util-linux-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "name": "which", + "epoch": 0, + "version": "2.21", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/which-2.21-12.el8.x86_64.rpm", + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "name": "xfsprogs", + "epoch": 0, + "version": "5.0.0", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xfsprogs-5.0.0-8.el8.x86_64.rpm", + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "name": "xz", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "name": "xz-libs", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-libs-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "name": "zlib", + "epoch": 0, + "version": "1.2.11", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/zlib-1.2.11-17.el8.x86_64.rpm", + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "name": "libxkbcommon", + "epoch": 0, + "version": "0.9.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxkbcommon-0.9.1-1.el8.x86_64.rpm", + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "name": "pinentry", + "epoch": 0, + "version": "1.1.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pinentry-1.1.0-2.el8.x86_64.rpm", + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "name": "python3-pip", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-pip-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:a2418e8e12144d4e84965298e7bbefedc876c0d0d93771afb9b5c6c2eb139dc0", + "check_gpg": true + }, + { + "name": "python3-unbound", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-unbound-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "name": "python36", + "epoch": 0, + "version": "3.6.8", + "release": "2.module_el8.4.0+666+456f5f48", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python36-3.6.8-2.module_el8.4.0+666+456f5f48.x86_64.rpm", + "checksum": "sha256:df417aae69f2ba5bd4324a14dcfd30dfbfefba440085bbf916c5ef19286cba20", + "check_gpg": true + }, + { + "name": "qemu-img", + "epoch": 15, + "version": "4.2.0", + "release": "35.module_el8.4.0+547+a85d02ba", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/qemu-img-4.2.0-35.module_el8.4.0+547+a85d02ba.x86_64.rpm", + "checksum": "sha256:f6f7907ccf8faa83a93e6d48801970aa45181a3a3c05ad7102b540a07534e318", + "check_gpg": true + }, + { + "name": "unbound-libs", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/unbound-libs-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "name": "xkeyboard-config", + "epoch": 0, + "version": "2.28", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xkeyboard-config-2.28-1.el8.noarch.rpm", + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + } + ], + "packages": [ + { + "name": "ModemManager-glib", + "epoch": 0, + "version": "1.10.8", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ModemManager-glib-1.10.8-2.el8.x86_64.rpm", + "checksum": "sha256:508e9470ed648c28c1ef5a4a74072b188daa795f2369d10929f1ddbb5d3b5a3f", + "check_gpg": true + }, + { + "name": "NetworkManager", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:1d130b0daf86899c3987d59567303ce7ae44c3273f2d8d0f0625bef7e6bad16d", + "check_gpg": true + }, + { + "name": "NetworkManager-libnm", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-libnm-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:41d9c9f8e17c83f73e51e90f02e08927bb9c836d033815c6cdddc6da44e321f0", + "check_gpg": true + }, + { + "name": "NetworkManager-team", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-team-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:f60f24ba76f7f9d9f42421153d296a279fb616165a27cf2c71657a901a425bb1", + "check_gpg": true + }, + { + "name": "NetworkManager-tui", + "epoch": 1, + "version": "1.30.0", + "release": "0.9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/NetworkManager-tui-1.30.0-0.9.el8.x86_64.rpm", + "checksum": "sha256:657db08f58b6776f48fda17d2b734a26918b431253f9e4eba9fd5a46d9f89aef", + "check_gpg": true + }, + { + "name": "acl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/acl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:227de6071cd3aeca7e10ad386beaf38737d081e06350d02208a3f6a2c9710385", + "check_gpg": true + }, + { + "name": "audit", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:b0149d85f0172e98866ff2483660af2cf6c6fa0c8f9cab2c51cc2af479c9e319", + "check_gpg": true + }, + { + "name": "audit-libs", + "epoch": 0, + "version": "3.0", + "release": "0.17.20191104git1c2f876.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64.rpm", + "checksum": "sha256:e7da6b155db78fb2015c40663fec6e475a44b21b1c2124496cf23f862e021db8", + "check_gpg": true + }, + { + "name": "authselect", + "epoch": 0, + "version": "1.2.2", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-1.2.2-1.el8.x86_64.rpm", + "checksum": "sha256:cb5072917ce75dbde8fe474fa872db85da5dbac59cc1eb4a9125e7b6280f254e", + "check_gpg": true + }, + { + "name": "authselect-libs", + "epoch": 0, + "version": "1.2.2", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/authselect-libs-1.2.2-1.el8.x86_64.rpm", + "checksum": "sha256:a217b0fbe9757a0225b66d16c1668cdf5cb2aa69c68b89e79783abd507f2e7bf", + "check_gpg": true + }, + { + "name": "basesystem", + "epoch": 0, + "version": "11", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/basesystem-11-5.el8.noarch.rpm", + "checksum": "sha256:48226934763e4c412c1eb65df314e6879720b4b1ebcb3d07c126c9526639cb68", + "check_gpg": true + }, + { + "name": "bash", + "epoch": 0, + "version": "4.4.19", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bash-4.4.19-14.el8.x86_64.rpm", + "checksum": "sha256:dfa496aff0d2d632d7c6ea114cd57d44f61fea610ddc61d130f95ab38ee84d97", + "check_gpg": true + }, + { + "name": "bind-export-libs", + "epoch": 32, + "version": "9.11.26", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bind-export-libs-9.11.26-2.el8.x86_64.rpm", + "checksum": "sha256:2d4cf3bd8b8046adfa869fbb5b472294469457f6445db36abcc227959be9adeb", + "check_gpg": true + }, + { + "name": "biosdevname", + "epoch": 0, + "version": "0.7.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/biosdevname-0.7.3-2.el8.x86_64.rpm", + "checksum": "sha256:0caa72888379f82fae1bc8f448bcf0dbaead20e92f2ef4c714afadf8979c3181", + "check_gpg": true + }, + { + "name": "brotli", + "epoch": 0, + "version": "1.0.6", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/brotli-1.0.6-3.el8.x86_64.rpm", + "checksum": "sha256:e4827f4a11cc1a0b14585f9f2984de80a185d2fd823be03dd128b04c7f0576c4", + "check_gpg": true + }, + { + "name": "bubblewrap", + "epoch": 0, + "version": "0.4.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bubblewrap-0.4.0-1.el8.x86_64.rpm", + "checksum": "sha256:9e78ec1230b9ec69ef8e3ad0484cbe3b5c36cfc214d90f890a49093b22df2948", + "check_gpg": true + }, + { + "name": "bzip2-libs", + "epoch": 0, + "version": "1.0.6", + "release": "26.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/bzip2-libs-1.0.6-26.el8.x86_64.rpm", + "checksum": "sha256:19d66d152b745dbd49cea9d21c52aec0ec4d4321edef97a342acd3542404fa31", + "check_gpg": true + }, + { + "name": "c-ares", + "epoch": 0, + "version": "1.13.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/c-ares-1.13.0-5.el8.x86_64.rpm", + "checksum": "sha256:9d160cdfba107ddc0613e169311bf57077c04e71a052a57704f3bdb64729d565", + "check_gpg": true + }, + { + "name": "ca-certificates", + "epoch": 0, + "version": "2020.2.41", + "release": "80.0.el8_2", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ca-certificates-2020.2.41-80.0.el8_2.noarch.rpm", + "checksum": "sha256:dc984aefb28c2d11ff6f6f1a794d04d300744ea0cfc9b869368f2f1acfc419be", + "check_gpg": true + }, + { + "name": "centos-gpg-keys", + "epoch": 1, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-gpg-keys-8-2.el8.noarch.rpm", + "checksum": "sha256:842ff55b80ac9a5c3357bf52646a5761a4c4786bb3e64b56d8fa5d8fe34ef8bb", + "check_gpg": true + }, + { + "name": "centos-stream-release", + "epoch": 0, + "version": "8.4", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-release-8.4-1.el8.noarch.rpm", + "checksum": "sha256:41631cbbaf20823fa0204b73d4fe9982297174115e07f8fceffcf841266596e8", + "check_gpg": true + }, + { + "name": "centos-stream-repos", + "epoch": 0, + "version": "8", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/centos-stream-repos-8-2.el8.noarch.rpm", + "checksum": "sha256:a82958266d292f4725fc1981ea57a861b7fc7feeb7a9551d0b61b98ca51a5662", + "check_gpg": true + }, + { + "name": "chkconfig", + "epoch": 0, + "version": "1.13", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chkconfig-1.13-2.el8.x86_64.rpm", + "checksum": "sha256:3dc85890e8f71c82ffd9601071a4b6686ba3152e1b4337cc00223730dbe7457a", + "check_gpg": true + }, + { + "name": "chrony", + "epoch": 0, + "version": "3.5", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/chrony-3.5-1.el8.x86_64.rpm", + "checksum": "sha256:5f3d3d3b27b7df75738d1ee31112c60d39c54b8d7f92b6900606187f6cffce1d", + "check_gpg": true + }, + { + "name": "coreutils", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:fe54d33d6cb010c91f548ecafcfe75d1630827f643670a28b7ff316fe73a0d16", + "check_gpg": true + }, + { + "name": "coreutils-common", + "epoch": 0, + "version": "8.30", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/coreutils-common-8.30-8.el8.x86_64.rpm", + "checksum": "sha256:a917411d02892f4f05aa48e5648e9feaa80fda485ab8606011069b6775d8cade", + "check_gpg": true + }, + { + "name": "cpio", + "epoch": 0, + "version": "2.12", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cpio-2.12-10.el8.x86_64.rpm", + "checksum": "sha256:10e88a1794107ea61f1441273be906704d66802b21800b0840a2870cad8b4d63", + "check_gpg": true + }, + { + "name": "cracklib", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:dbbc9e20caabc30070354d91f61f383081f6d658e09d3c09e6df8764559e5aca", + "check_gpg": true + }, + { + "name": "cracklib-dicts", + "epoch": 0, + "version": "2.9.6", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cracklib-dicts-2.9.6-15.el8.x86_64.rpm", + "checksum": "sha256:f1ce23ee43c747a35367dada19ca200a7758c50955ccc44aa946b86b647077ca", + "check_gpg": true + }, + { + "name": "cronie", + "epoch": 0, + "version": "1.5.2", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-1.5.2-4.el8.x86_64.rpm", + "checksum": "sha256:63a6b7765828081cc88b36d10c68621acbebf02a7c2e7d7f1a1217c8742ea6ae", + "check_gpg": true + }, + { + "name": "cronie-anacron", + "epoch": 0, + "version": "1.5.2", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cronie-anacron-1.5.2-4.el8.x86_64.rpm", + "checksum": "sha256:71fcbbec3aa152bc1427cb4d597375b008438f6259b20cfcb68fff21eef80f91", + "check_gpg": true + }, + { + "name": "crontabs", + "epoch": 0, + "version": "1.11", + "release": "17.20190603git.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crontabs-1.11-17.20190603git.el8.noarch.rpm", + "checksum": "sha256:bcf25aae89f7368b16346bc1ec92850175bcc2312bf7a5e74bc3c512bcd345b0", + "check_gpg": true + }, + { + "name": "crypto-policies", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:59e37dbb0f4e3451487722a9a7ad7fe4347b76b79f40ac4c8601ee132601156e", + "check_gpg": true + }, + { + "name": "crypto-policies-scripts", + "epoch": 0, + "version": "20200713", + "release": "1.git51d1222.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/crypto-policies-scripts-20200713-1.git51d1222.el8.noarch.rpm", + "checksum": "sha256:0c8042db11abc9d5338b70715ba58f92d5458e02eb6219a52b45e105d859442b", + "check_gpg": true + }, + { + "name": "cryptsetup-libs", + "epoch": 0, + "version": "2.3.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cryptsetup-libs-2.3.3-2.el8.x86_64.rpm", + "checksum": "sha256:590a558aa6d8ada5193852728703e22afba68d300dc6ea7244f438dad046c913", + "check_gpg": true + }, + { + "name": "curl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/curl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:51fdf97c00f76054ca2a795e077dc0ecb053f45a06052da9ab383578de796c75", + "check_gpg": true + }, + { + "name": "cyrus-sasl-lib", + "epoch": 0, + "version": "2.1.27", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/cyrus-sasl-lib-2.1.27-5.el8.x86_64.rpm", + "checksum": "sha256:c421b9c029abac796ade606f96d638e06a6d4ce5c2d499abd05812c306d25143", + "check_gpg": true + }, + { + "name": "dbus", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:4c0626dc5074eef0ffea5a42ca2b4f5b8f29981fa7df4888282b3b4320ea984f", + "check_gpg": true + }, + { + "name": "dbus-common", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-common-1.12.8-12.el8.noarch.rpm", + "checksum": "sha256:98f17a8e1f291dd9969546cdbef414d3e2598b43ef436dbf8049c0179ec97c10", + "check_gpg": true + }, + { + "name": "dbus-daemon", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-daemon-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:fbfdfe33f46c89135a3e1fe40b826078501db1e970fb55652956c7af54b09f54", + "check_gpg": true + }, + { + "name": "dbus-glib", + "epoch": 0, + "version": "0.110", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-glib-0.110-2.el8.x86_64.rpm", + "checksum": "sha256:f86fec6c6a844fbbfbf7c806d79dd7e72e4eef9c804472547a6d3ecf34cddca6", + "check_gpg": true + }, + { + "name": "dbus-libs", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-libs-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:39d2546b9a07514d7a6054c778c5f8509fc70b9709f04ac0afcd00c89b368ccd", + "check_gpg": true + }, + { + "name": "dbus-tools", + "epoch": 1, + "version": "1.12.8", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dbus-tools-1.12.8-12.el8.x86_64.rpm", + "checksum": "sha256:b2116f6dc17966a76bd584e6ed75b54186cee544eabb75a2f8d9ed70342a92da", + "check_gpg": true + }, + { + "name": "device-mapper", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:946d2fc5f8fbb544775937b9daf317ee09dfbec9309adddd3a76db5027838f7e", + "check_gpg": true + }, + { + "name": "device-mapper-libs", + "epoch": 8, + "version": "1.02.175", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/device-mapper-libs-1.02.175-3.el8.x86_64.rpm", + "checksum": "sha256:65e9a6bb93122d984c97a643e663ddda970e4c8a66e7b442b1441c977cb3eed3", + "check_gpg": true + }, + { + "name": "dhcp-client", + "epoch": 12, + "version": "4.3.6", + "release": "44.0.1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-client-4.3.6-44.0.1.el8.x86_64.rpm", + "checksum": "sha256:084c55bef75a2ce2ab67aa4eeb6726ca59ea6d7c2b23bc6e4084f11aac7e17f8", + "check_gpg": true + }, + { + "name": "dhcp-common", + "epoch": 12, + "version": "4.3.6", + "release": "44.0.1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-common-4.3.6-44.0.1.el8.noarch.rpm", + "checksum": "sha256:7ec48db9e1e9896f29a16cbea53cdeecdd7dd2bc278c06721ebca2e71e9dcd6d", + "check_gpg": true + }, + { + "name": "dhcp-libs", + "epoch": 12, + "version": "4.3.6", + "release": "44.0.1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dhcp-libs-4.3.6-44.0.1.el8.x86_64.rpm", + "checksum": "sha256:436e93b4c072f8b6f90f41a037d017406be10c18efafc8c634f6da59bbac1105", + "check_gpg": true + }, + { + "name": "diffutils", + "epoch": 0, + "version": "3.6", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/diffutils-3.6-6.el8.x86_64.rpm", + "checksum": "sha256:c515d78c64a93d8b469593bff5800eccd50f24b16697ab13bdce81238c38eb77", + "check_gpg": true + }, + { + "name": "dmidecode", + "epoch": 1, + "version": "3.2", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dmidecode-3.2-8.el8.x86_64.rpm", + "checksum": "sha256:b2cd2dc5cf9c1c118053e7e650c6d910b1d37e810a38d90de27d80a04b702e39", + "check_gpg": true + }, + { + "name": "dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:ea54968dc5c9cf1625ebc94f2fd8f97e308c0e543c0a1030f1cc686318d5bbc8", + "check_gpg": true + }, + { + "name": "dnf-data", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-data-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:7a589441be3769d0df842a13709a2a39170deab50320d4d4cf568cf96527a849", + "check_gpg": true + }, + { + "name": "dnf-plugins-core", + "epoch": 0, + "version": "4.0.18", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dnf-plugins-core-4.0.18-3.el8.noarch.rpm", + "checksum": "sha256:c4a5df7ec884bdcc929e73e066c7def89cfb8cf53306ffcf9f33a5c9e4ae84c7", + "check_gpg": true + }, + { + "name": "dosfstools", + "epoch": 0, + "version": "4.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dosfstools-4.1-6.el8.x86_64.rpm", + "checksum": "sha256:40676b73567e195228ba2a8bb53692f88f88d43612564613fb168383eee57f6a", + "check_gpg": true + }, + { + "name": "dracut", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:a93e68a2ded611747737276e4ea3f2c204ffd6d81cce0461c5ebf908a41ad34b", + "check_gpg": true + }, + { + "name": "dracut-config-generic", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-config-generic-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:760141c74870a93505dbba2174034287b6a97b9bb2b12c5ca2b7af056773b45b", + "check_gpg": true + }, + { + "name": "dracut-network", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-network-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:4a28d9fa9785d7e8515deaf5e1a381a553c37b02a81a20ddd4fa202b33413ac9", + "check_gpg": true + }, + { + "name": "dracut-squash", + "epoch": 0, + "version": "049", + "release": "133.git20210112.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/dracut-squash-049-133.git20210112.el8.x86_64.rpm", + "checksum": "sha256:16b34582f757aebb9bc7b0a0475458cbb186238b5b528ef8fdb099cb739ba383", + "check_gpg": true + }, + { + "name": "e2fsprogs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:4f516964647313ae8a2c5135ea587bcadd43208cd6750fdae79e163dd22b5808", + "check_gpg": true + }, + { + "name": "e2fsprogs-libs", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/e2fsprogs-libs-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:7e93568cf1862b4d83f3217c327359dd613473067b1e43e88fb538c7ef39576e", + "check_gpg": true + }, + { + "name": "efi-filesystem", + "epoch": 0, + "version": "3", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efi-filesystem-3-3.el8.noarch.rpm", + "checksum": "sha256:d655ee126614010e72bac89b7ecaf38b515647181a22940cb774647442d28beb", + "check_gpg": true + }, + { + "name": "efivar-libs", + "epoch": 0, + "version": "37", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/efivar-libs-37-4.el8.x86_64.rpm", + "checksum": "sha256:48bfe66d6f07baf1974355e8a3ebbc44f2d9812b823ddfff1c15f35635a8dc4e", + "check_gpg": true + }, + { + "name": "elfutils-debuginfod-client", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-debuginfod-client-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:dffc8ca60da043a118fd13dbea1e585d82b9be8750b4acb7a959f641950db838", + "check_gpg": true + }, + { + "name": "elfutils-default-yama-scope", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-default-yama-scope-0.182-3.el8.noarch.rpm", + "checksum": "sha256:082944da91f3aed2f366f643d935d321029dacf74e0817e40fe47bdce9d31805", + "check_gpg": true + }, + { + "name": "elfutils-libelf", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libelf-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:73dd673dc5e822cd1c455878fb32402b53f312f490e9ba0a0e511263cccb190c", + "check_gpg": true + }, + { + "name": "elfutils-libs", + "epoch": 0, + "version": "0.182", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/elfutils-libs-0.182-3.el8.x86_64.rpm", + "checksum": "sha256:00d0e2cf46eff663d7be13b910c130cb6fd49571dfcd96d66396025973211381", + "check_gpg": true + }, + { + "name": "ethtool", + "epoch": 2, + "version": "5.8", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ethtool-5.8-5.el8.x86_64.rpm", + "checksum": "sha256:f7e6debd0279cb07f0c805d90b707c187bb55b9ee34643898eec800b79fa6b1b", + "check_gpg": true + }, + { + "name": "expat", + "epoch": 0, + "version": "2.2.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/expat-2.2.5-4.el8.x86_64.rpm", + "checksum": "sha256:0c451ef9a9cd603a35aaab1a6c4aba83103332bed7c2b7393c48631f9bb50158", + "check_gpg": true + }, + { + "name": "file", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:05ebfbf1d6cd01f816f63f28fa5d426ec595d4b04bba25abdf37bb82b77443b6", + "check_gpg": true + }, + { + "name": "file-libs", + "epoch": 0, + "version": "5.33", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/file-libs-5.33-16.el8.x86_64.rpm", + "checksum": "sha256:47308f9411fbad95207729fdde1b169a1e38d8d705916da91406665f7d4d8cc0", + "check_gpg": true + }, + { + "name": "filesystem", + "epoch": 0, + "version": "3.8", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/filesystem-3.8-4.el8.x86_64.rpm", + "checksum": "sha256:2d6c32fa6f13ae78b1d4a0e8623a595882bf6e21dee16c5949d9715b8c96fb3c", + "check_gpg": true + }, + { + "name": "findutils", + "epoch": 1, + "version": "4.6.0", + "release": "20.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/findutils-4.6.0-20.el8.x86_64.rpm", + "checksum": "sha256:811eb112646b7d87773c65af47efdca975468f3e5df44aa9944e30de24d83890", + "check_gpg": true + }, + { + "name": "firewalld", + "epoch": 0, + "version": "0.8.2", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/firewalld-0.8.2-6.el8.noarch.rpm", + "checksum": "sha256:7bfc1981e5e1fd706c23ba10090dd05fb0828df11aa98a3dc89ee8b1d2663f7a", + "check_gpg": true + }, + { + "name": "firewalld-filesystem", + "epoch": 0, + "version": "0.8.2", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/firewalld-filesystem-0.8.2-6.el8.noarch.rpm", + "checksum": "sha256:638eb361523ce75963c8234fdeb6df8084a62e09a7ff5b00125b507955a28b28", + "check_gpg": true + }, + { + "name": "freetype", + "epoch": 0, + "version": "2.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/freetype-2.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:1b570d695ac7dbe4929916f4b637558066bff68218cb04f5b1819edb7761181c", + "check_gpg": true + }, + { + "name": "fuse", + "epoch": 0, + "version": "2.9.7", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-2.9.7-12.el8.x86_64.rpm", + "checksum": "sha256:2465c0c3b3d9519a3f9ae2ffe3e2c0bc61dca6fcb6ae710a6c7951007f498864", + "check_gpg": true + }, + { + "name": "fuse-common", + "epoch": 0, + "version": "3.2.1", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-common-3.2.1-12.el8.x86_64.rpm", + "checksum": "sha256:3f947e1e56d0b0210f9ccbc4483f8b6bfb100cfd79ea1efac3336a8d624ec0d6", + "check_gpg": true + }, + { + "name": "fuse-libs", + "epoch": 0, + "version": "2.9.7", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fuse-libs-2.9.7-12.el8.x86_64.rpm", + "checksum": "sha256:6c6c98e2ddc2210ca377b0ef0c6bb694abd23f33413acadaedc1760da5bcc079", + "check_gpg": true + }, + { + "name": "fwupd", + "epoch": 0, + "version": "1.5.5", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/fwupd-1.5.5-1.el8.x86_64.rpm", + "checksum": "sha256:6710a1b2f28e5ffd0fff3e74a76d84d12a602be79703e53e1a55166f2f7d141c", + "check_gpg": true + }, + { + "name": "gawk", + "epoch": 0, + "version": "4.2.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gawk-4.2.1-2.el8.x86_64.rpm", + "checksum": "sha256:bc0d36db80589a9797b8c343cd80f5ad5f42b9afc88f8a46666dc1d8f5317cfe", + "check_gpg": true + }, + { + "name": "gdbm", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:76d81e433a5291df491d2e289de9b33d4e5b98dcf48fd0a003c2767415d3e0aa", + "check_gpg": true + }, + { + "name": "gdbm-libs", + "epoch": 1, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdbm-libs-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3a3cb5a11f8e844cd1bf7c0e7bb6c12cc63e743029df50916ce7e6a9f8a4e169", + "check_gpg": true + }, + { + "name": "gdisk", + "epoch": 0, + "version": "1.0.3", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gdisk-1.0.3-6.el8.x86_64.rpm", + "checksum": "sha256:fa0b90c4da7f7ca8bf40055be5641a2c57708931fec5f760a2f8944325669fe9", + "check_gpg": true + }, + { + "name": "gettext", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:829c842bbd79dca18d37198414626894c44e5b8faf0cce0054ca0ba6623ae136", + "check_gpg": true + }, + { + "name": "gettext-libs", + "epoch": 0, + "version": "0.19.8.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gettext-libs-0.19.8.1-17.el8.x86_64.rpm", + "checksum": "sha256:ade52756aaf236e77dadd6cf97716821141c2759129ca7808524ab79607bb4c4", + "check_gpg": true + }, + { + "name": "glib2", + "epoch": 0, + "version": "2.56.4", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glib2-2.56.4-9.el8.x86_64.rpm", + "checksum": "sha256:b75c775ad18e38fb689d44c41a157a69367704bf717cd8915115f757df6bcb05", + "check_gpg": true + }, + { + "name": "glibc", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:8ee4e92616d3639a5bba9baf096f8af88bd0f6919a5732750e53800e566de86d", + "check_gpg": true + }, + { + "name": "glibc-common", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-common-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:43ffcc56299703b2e3f942debe0cef7f3c36c000799eb1aeea069d04e8da4c4f", + "check_gpg": true + }, + { + "name": "glibc-langpack-en", + "epoch": 0, + "version": "2.28", + "release": "147.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/glibc-langpack-en-2.28-147.el8.x86_64.rpm", + "checksum": "sha256:3162a4a9159994002c3c6f5fe6a12160020e8f3484f1406ff5092311ca639548", + "check_gpg": true + }, + { + "name": "gmp", + "epoch": 1, + "version": "6.1.2", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gmp-6.1.2-10.el8.x86_64.rpm", + "checksum": "sha256:3b96e2c7d5cd4b49bfde8e52c8af6ff595c91438e50856e468f14a049d8511e2", + "check_gpg": true + }, + { + "name": "gnupg2", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:42842cc39272d095d01d076982d4e9aa4888c7b2a1c26ebed6fb6ef9a02680ba", + "check_gpg": true + }, + { + "name": "gnupg2-smime", + "epoch": 0, + "version": "2.2.20", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnupg2-smime-2.2.20-2.el8.x86_64.rpm", + "checksum": "sha256:6915c93018c0863da2867a53faac9e46598297559f703d2ea15e701145761cfd", + "check_gpg": true + }, + { + "name": "gnutls", + "epoch": 0, + "version": "3.6.14", + "release": "7.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gnutls-3.6.14-7.el8_3.x86_64.rpm", + "checksum": "sha256:aae63dc3834547f7376175ce38ac2b36038d2c069fb975c1cae36f941a0ba790", + "check_gpg": true + }, + { + "name": "gobject-introspection", + "epoch": 0, + "version": "1.56.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gobject-introspection-1.56.1-1.el8.x86_64.rpm", + "checksum": "sha256:7e2804a4494d4179ed50c0c99da1e30c3a6abf8db889c1412b458943cff0e3e5", + "check_gpg": true + }, + { + "name": "gpgme", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gpgme-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:62a25d496ec9eefb5422a835f141762429a301a5654279e71c7c6f2371854fff", + "check_gpg": true + }, + { + "name": "grep", + "epoch": 0, + "version": "3.1", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grep-3.1-6.el8.x86_64.rpm", + "checksum": "sha256:3f8ffe48bb481a5db7cbe42bf73b839d872351811e5df41b2f6697c61a030487", + "check_gpg": true + }, + { + "name": "groff-base", + "epoch": 0, + "version": "1.22.3", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/groff-base-1.22.3-18.el8.x86_64.rpm", + "checksum": "sha256:b00855013100d3796e9ed6d82b1ab2d4dc7f4a3a3fa2e186f6de8523577974a0", + "check_gpg": true + }, + { + "name": "grub2-common", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-common-2.02-93.el8.noarch.rpm", + "checksum": "sha256:9fbdf8429153f287b6f6166a706298e7a4f4a9457cf682f4d79f2526af827c28", + "check_gpg": true + }, + { + "name": "grub2-efi-x64", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-efi-x64-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:79277d872ae6035009a1a40e914ec09bca21aefcac9d73dee65880c86387f3c9", + "check_gpg": true + }, + { + "name": "grub2-pc", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:d3c1a36cf4e9e97e4ef1a20b0b4db17eee505412626e12d1b9fcd126726bb755", + "check_gpg": true + }, + { + "name": "grub2-pc-modules", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-pc-modules-2.02-93.el8.noarch.rpm", + "checksum": "sha256:c904657e61ab3695f01846b89acd0164b03ba8a733ff2435ec1df41eefaa4d48", + "check_gpg": true + }, + { + "name": "grub2-tools", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:185867406a410759d2b70c32188f53ddb83797de24893b5b1bf9f5dcec9e21c7", + "check_gpg": true + }, + { + "name": "grub2-tools-extra", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-extra-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:f1194ffb3a5de0edd29f6a2a57558f05f68087db4a467494037ef0445a14e452", + "check_gpg": true + }, + { + "name": "grub2-tools-minimal", + "epoch": 1, + "version": "2.02", + "release": "93.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grub2-tools-minimal-2.02-93.el8.x86_64.rpm", + "checksum": "sha256:a5ac21cd057945a1e42536c163bd0e6ae08dbfcd392dc772060be1fd1be142e6", + "check_gpg": true + }, + { + "name": "grubby", + "epoch": 0, + "version": "8.40", + "release": "41.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/grubby-8.40-41.el8.x86_64.rpm", + "checksum": "sha256:188c15ed6c943e47dd53002c2a2275b6c2a465db7901dcedbfaef225c607e64b", + "check_gpg": true + }, + { + "name": "gzip", + "epoch": 0, + "version": "1.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/gzip-1.9-12.el8.x86_64.rpm", + "checksum": "sha256:6d995888083240517e8eb5e0c8d8c22e63ac46de3b4bcd3c61e14959558800dd", + "check_gpg": true + }, + { + "name": "hardlink", + "epoch": 1, + "version": "1.3", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hardlink-1.3-6.el8.x86_64.rpm", + "checksum": "sha256:c019e648a047a07284cb870b5fe4bc2a4b65937dbbf0c51699144ee305297bba", + "check_gpg": true + }, + { + "name": "hdparm", + "epoch": 0, + "version": "9.54", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hdparm-9.54-3.el8.x86_64.rpm", + "checksum": "sha256:3c6650fd6e32fdc24b8cf1f7a85ae8232661b47bda7019e49fd0eb474683ff23", + "check_gpg": true + }, + { + "name": "hostname", + "epoch": 0, + "version": "3.20", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hostname-3.20-6.el8.x86_64.rpm", + "checksum": "sha256:7a7963e2052bfb45b8569f64619dc5cb92fe8aeb78c754b7cf948b9784646785", + "check_gpg": true + }, + { + "name": "hwdata", + "epoch": 0, + "version": "0.314", + "release": "8.7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/hwdata-0.314-8.7.el8.noarch.rpm", + "checksum": "sha256:5ddc26cdcc73e48a8155df584c0947ffd1d1db7cbd5b8aad0e46d71a14fa355f", + "check_gpg": true + }, + { + "name": "ima-evm-utils", + "epoch": 0, + "version": "1.3.2", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ima-evm-utils-1.3.2-11.el8.x86_64.rpm", + "checksum": "sha256:3d43bd180f3dd3eaa619ade11b59924e9ecb9c4f517ce773efd391b5d59aa210", + "check_gpg": true + }, + { + "name": "info", + "epoch": 0, + "version": "6.5", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/info-6.5-6.el8.x86_64.rpm", + "checksum": "sha256:611da4957e11f4621f53b5d7d491bcba09854de4fad8a5be34e762f4f36b1102", + "check_gpg": true + }, + { + "name": "initscripts", + "epoch": 0, + "version": "10.00.12", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/initscripts-10.00.12-1.el8.x86_64.rpm", + "checksum": "sha256:7fa8fbc576f7d54c388fa39fc3ed86bacb7964cac4544c48b3ffabcdcdc27b61", + "check_gpg": true + }, + { + "name": "ipcalc", + "epoch": 0, + "version": "0.2.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipcalc-0.2.4-4.el8.x86_64.rpm", + "checksum": "sha256:dea18976861575d40ffca814dee08a225376c7828a5afc9e5d0a383edd3d8907", + "check_gpg": true + }, + { + "name": "iproute", + "epoch": 0, + "version": "5.9.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iproute-5.9.0-2.el8.x86_64.rpm", + "checksum": "sha256:a456039834ccc5432949120f1d80b18329b552cf44d1b59ea1b60d2192e7bc5c", + "check_gpg": true + }, + { + "name": "iprutils", + "epoch": 0, + "version": "2.4.19", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iprutils-2.4.19-1.el8.x86_64.rpm", + "checksum": "sha256:d9acc32cf03ac203066bfa8d6d3f71eaedbad719f3ffc5056a387b548ae958e8", + "check_gpg": true + }, + { + "name": "ipset", + "epoch": 0, + "version": "7.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipset-7.1-1.el8.x86_64.rpm", + "checksum": "sha256:82e27237686171b812aee7903c11ec4f8dbdb6544e419758fb0fbd61731044b0", + "check_gpg": true + }, + { + "name": "ipset-libs", + "epoch": 0, + "version": "7.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ipset-libs-7.1-1.el8.x86_64.rpm", + "checksum": "sha256:6f699a1e24a6bb76904ef1a588e3b3ef116cad07a5cbad86c6cdb522c00670dd", + "check_gpg": true + }, + { + "name": "iptables", + "epoch": 0, + "version": "1.8.4", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-1.8.4-17.el8.x86_64.rpm", + "checksum": "sha256:0c6624b9391a76c0f9e54c387641bd4ed079c3bfc30e8f890afc4203955b2acb", + "check_gpg": true + }, + { + "name": "iptables-ebtables", + "epoch": 0, + "version": "1.8.4", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-ebtables-1.8.4-17.el8.x86_64.rpm", + "checksum": "sha256:59683b6fff42b40d3a3abbdeb928bb18b4cd84700aaeb9b3c76d37044ae94e01", + "check_gpg": true + }, + { + "name": "iptables-libs", + "epoch": 0, + "version": "1.8.4", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iptables-libs-1.8.4-17.el8.x86_64.rpm", + "checksum": "sha256:dbe715a7501265ae1f7a26728315cefe662c3cede921f4bd37aa63f17aa8430c", + "check_gpg": true + }, + { + "name": "iputils", + "epoch": 0, + "version": "20180629", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iputils-20180629-6.el8.x86_64.rpm", + "checksum": "sha256:74b842ba3352d7c4ada7e991aeadf8749f058a4d00ccc6f79f1c82a281497cb7", + "check_gpg": true + }, + { + "name": "irqbalance", + "epoch": 2, + "version": "1.4.0", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/irqbalance-1.4.0-6.el8.x86_64.rpm", + "checksum": "sha256:3acd2c8b6ea534811308b3138859b5fa150b89604bb60f16b0650747039d696a", + "check_gpg": true + }, + { + "name": "iwl100-firmware", + "epoch": 0, + "version": "39.31.5.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl100-firmware-39.31.5.1-102.el8.1.noarch.rpm", + "checksum": "sha256:e0564d34fde9cf1a42e0fd4ba81ea7ce71bcca8823186f0221e56994bef275c6", + "check_gpg": true + }, + { + "name": "iwl1000-firmware", + "epoch": 1, + "version": "39.31.5.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl1000-firmware-39.31.5.1-102.el8.1.noarch.rpm", + "checksum": "sha256:078fa234177ae5ae2736c878aa2a2f8ecccf4c7772ab4ad19a2d6ba4f34e8631", + "check_gpg": true + }, + { + "name": "iwl105-firmware", + "epoch": 0, + "version": "18.168.6.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl105-firmware-18.168.6.1-102.el8.1.noarch.rpm", + "checksum": "sha256:cdd8e0a970aaaa23637f553692d755a0f57282c4494d31094638b6d4633ec523", + "check_gpg": true + }, + { + "name": "iwl135-firmware", + "epoch": 0, + "version": "18.168.6.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl135-firmware-18.168.6.1-102.el8.1.noarch.rpm", + "checksum": "sha256:5c686be3533457b6ac047ac804aa54f74ee3a455047d3866dcef7a4da9d95fc6", + "check_gpg": true + }, + { + "name": "iwl2000-firmware", + "epoch": 0, + "version": "18.168.6.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl2000-firmware-18.168.6.1-102.el8.1.noarch.rpm", + "checksum": "sha256:d01c5733267171fc234d7ab5387c17cb61e9fdec8f9eb792ea63c8ffb5bafb6c", + "check_gpg": true + }, + { + "name": "iwl2030-firmware", + "epoch": 0, + "version": "18.168.6.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl2030-firmware-18.168.6.1-102.el8.1.noarch.rpm", + "checksum": "sha256:b6e327a5fca1efc26c920c42d104dbdafd9e4676681bbd1f28dab81c51677db8", + "check_gpg": true + }, + { + "name": "iwl3160-firmware", + "epoch": 1, + "version": "25.30.13.0", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl3160-firmware-25.30.13.0-102.el8.1.noarch.rpm", + "checksum": "sha256:0f817ea59939bdd0311c8da8369f5c037e340443198ccef659696f67bd2ddcd1", + "check_gpg": true + }, + { + "name": "iwl5000-firmware", + "epoch": 0, + "version": "8.83.5.1_1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl5000-firmware-8.83.5.1_1-102.el8.1.noarch.rpm", + "checksum": "sha256:d7ae9cdbdd754c544d766c8e9748f24f580cd3a4c7c6c4d6203060e966299723", + "check_gpg": true + }, + { + "name": "iwl5150-firmware", + "epoch": 0, + "version": "8.24.2.2", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl5150-firmware-8.24.2.2-102.el8.1.noarch.rpm", + "checksum": "sha256:dbded0760a358f62ec416ce37ffd764c725f8e898479b17173e632debc1a06ae", + "check_gpg": true + }, + { + "name": "iwl6000-firmware", + "epoch": 0, + "version": "9.221.4.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl6000-firmware-9.221.4.1-102.el8.1.noarch.rpm", + "checksum": "sha256:39e27e147189e0e431527acfca51d9436149fe7c0fee1399289ea9a4862948cc", + "check_gpg": true + }, + { + "name": "iwl6000g2a-firmware", + "epoch": 0, + "version": "18.168.6.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl6000g2a-firmware-18.168.6.1-102.el8.1.noarch.rpm", + "checksum": "sha256:01b808f1ea9299c37c80164d05ef1a5c45e05d53bcbd451b4d52e69a47959bc2", + "check_gpg": true + }, + { + "name": "iwl6050-firmware", + "epoch": 0, + "version": "41.28.5.1", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl6050-firmware-41.28.5.1-102.el8.1.noarch.rpm", + "checksum": "sha256:3793552ff28a7026a6299d8d5d8d50a467f27654524c8e438e2058040d7e6d6c", + "check_gpg": true + }, + { + "name": "iwl7260-firmware", + "epoch": 1, + "version": "25.30.13.0", + "release": "102.el8.1", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/iwl7260-firmware-25.30.13.0-102.el8.1.noarch.rpm", + "checksum": "sha256:e8594d934926d149266098dbb6686b604caa4d8255895ebd732d55ca4e7f0248", + "check_gpg": true + }, + { + "name": "jansson", + "epoch": 0, + "version": "2.11", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/jansson-2.11-3.el8.x86_64.rpm", + "checksum": "sha256:a06e1d34df03aaf429d290d5c281356fefe0ad510c229189405b88b3c0f40374", + "check_gpg": true + }, + { + "name": "json-c", + "epoch": 0, + "version": "0.13.1", + "release": "0.4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-c-0.13.1-0.4.el8.x86_64.rpm", + "checksum": "sha256:17c326515307327d6b4b518886ee61f42d856688853e3260bc2f0049930fd798", + "check_gpg": true + }, + { + "name": "json-glib", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/json-glib-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:98a6386df94fc9595365c3ecbc630708420fa68d1774614a723dec4a55e84b9c", + "check_gpg": true + }, + { + "name": "kbd", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-2.0.4-10.el8.x86_64.rpm", + "checksum": "sha256:06e3b40456f9be68076d03cf7181cbe0d73bf0a9424ab9e3abb7abf634ad3c47", + "check_gpg": true + }, + { + "name": "kbd-legacy", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-legacy-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:a3ef96219165bfc64d4f5d50f51fbd43e803c500619240ffe4db1f9f8e337f83", + "check_gpg": true + }, + { + "name": "kbd-misc", + "epoch": 0, + "version": "2.0.4", + "release": "10.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kbd-misc-2.0.4-10.el8.noarch.rpm", + "checksum": "sha256:ef86061338fa321c959cadc75ecbdfd405eebaa1042eec9d9c737d4d9d92568f", + "check_gpg": true + }, + { + "name": "kernel", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:c44dbbff4fe503f5f49b71ab17db7848c6c67fe19d9a4cc6cef59cc6dd15f1a6", + "check_gpg": true + }, + { + "name": "kernel-core", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-core-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:aa938dc6f13d0d57ca811b8c299b1017723fa419997b87754f74db770430c2d9", + "check_gpg": true + }, + { + "name": "kernel-modules", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-modules-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:da77940ecadc9edb5d14aad51e4bf06664e5763fe6e46b20364732ec3aa2e08a", + "check_gpg": true + }, + { + "name": "kernel-tools", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:5f45a2ff1a9c9f3d4fcae463c1ca70b1a16caccc59816ce391f064c9d8b9d8ae", + "check_gpg": true + }, + { + "name": "kernel-tools-libs", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kernel-tools-libs-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:ab1be3dcea74c7a7fac49f9a1cad4113fded2d3edabb61b29ed8489a737033fe", + "check_gpg": true + }, + { + "name": "kexec-tools", + "epoch": 0, + "version": "2.0.20", + "release": "45.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kexec-tools-2.0.20-45.el8.x86_64.rpm", + "checksum": "sha256:4280042747c9027c3252d360fa33d63490aa518858849115b20162a097a37146", + "check_gpg": true + }, + { + "name": "keyutils-libs", + "epoch": 0, + "version": "1.5.10", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/keyutils-libs-1.5.10-6.el8.x86_64.rpm", + "checksum": "sha256:ae82944445464108e4932d18d4f915cc5e0b4763feb7337b2db7a3fdb77839e3", + "check_gpg": true + }, + { + "name": "kmod", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-25-17.el8.x86_64.rpm", + "checksum": "sha256:0f5d8f7cd0af42a94cfd5c1e145207866d64f00cdc5c3b4385d521a242d3c224", + "check_gpg": true + }, + { + "name": "kmod-libs", + "epoch": 0, + "version": "25", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kmod-libs-25-17.el8.x86_64.rpm", + "checksum": "sha256:16391db2cdd98717bcd5500c5b6adda9ca7c543a56541736b4d5fbc40176dd16", + "check_gpg": true + }, + { + "name": "kpartx", + "epoch": 0, + "version": "0.8.4", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/kpartx-0.8.4-8.el8.x86_64.rpm", + "checksum": "sha256:1b609a3376661c274c5078d963eb3b2c381a7f36aa81f52b6eff5e0afdffecaf", + "check_gpg": true + }, + { + "name": "krb5-libs", + "epoch": 0, + "version": "1.18.2", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/krb5-libs-1.18.2-8.el8.x86_64.rpm", + "checksum": "sha256:c238b132b85347896ddda59e5bc5c2ed831403d23f7c4dcfdf27f2845beadfd7", + "check_gpg": true + }, + { + "name": "less", + "epoch": 0, + "version": "530", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/less-530-1.el8.x86_64.rpm", + "checksum": "sha256:f94172554b8ceeab97b560d0b05c2e2df4b2e737471adce6eca82fd3209be254", + "check_gpg": true + }, + { + "name": "libacl", + "epoch": 0, + "version": "2.2.53", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libacl-2.2.53-1.el8.x86_64.rpm", + "checksum": "sha256:4973664648b7ed9278bf29074ec6a60a9f660aa97c23a283750483f64429d5bb", + "check_gpg": true + }, + { + "name": "libarchive", + "epoch": 0, + "version": "3.3.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libarchive-3.3.3-1.el8.x86_64.rpm", + "checksum": "sha256:57e908e16c0b5e63d0d97902e80660aa26543e0a17a5b78a41528889ea9cefb5", + "check_gpg": true + }, + { + "name": "libassuan", + "epoch": 0, + "version": "2.5.1", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libassuan-2.5.1-3.el8.x86_64.rpm", + "checksum": "sha256:b49e8c674e462e3f494e825c5fca64002008cbf7a47bf131aa98b7f41678a6eb", + "check_gpg": true + }, + { + "name": "libattr", + "epoch": 0, + "version": "2.4.48", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libattr-2.4.48-3.el8.x86_64.rpm", + "checksum": "sha256:a02e1344ccde1747501ceeeff37df4f18149fb79b435aa22add08cff6bab3a5a", + "check_gpg": true + }, + { + "name": "libbasicobjects", + "epoch": 0, + "version": "0.1.1", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libbasicobjects-0.1.1-39.el8.x86_64.rpm", + "checksum": "sha256:5452b96e4b57c275dd41e48d55af1ca4f77ccfb3ae403796e599a039d7382b91", + "check_gpg": true + }, + { + "name": "libblkid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libblkid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:157850de585a2de6b5c4b55cd7201975d22a44e0acdf431bc552ede4efe37871", + "check_gpg": true + }, + { + "name": "libcap", + "epoch": 0, + "version": "2.26", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-2.26-4.el8.x86_64.rpm", + "checksum": "sha256:cfd15d82bb8e25b54c338f1eeb9e3b948edde7d73afb874e4a8a24171386fcb9", + "check_gpg": true + }, + { + "name": "libcap-ng", + "epoch": 0, + "version": "0.7.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcap-ng-0.7.9-5.el8.x86_64.rpm", + "checksum": "sha256:bc449afb5b82f36c4b9a03343b83c09ed76308bcc1adc285a62f6aab39774af4", + "check_gpg": true + }, + { + "name": "libcollection", + "epoch": 0, + "version": "0.7.0", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcollection-0.7.0-39.el8.x86_64.rpm", + "checksum": "sha256:708a8fd75f7c6987d66e2d62de664b5a84c6f75fd4e5230e244681897b15a25d", + "check_gpg": true + }, + { + "name": "libcom_err", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcom_err-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:664f8ab5e05d046ca3d6a946046775ab4c7af70ad763fac506b931f4b221a9a0", + "check_gpg": true + }, + { + "name": "libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:a39f3e868ecfe7edaa2874a1a9a0c098f970b111f2e21317adec74ca5358f7b8", + "check_gpg": true + }, + { + "name": "libcroco", + "epoch": 0, + "version": "0.6.12", + "release": "4.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcroco-0.6.12-4.el8_2.1.x86_64.rpm", + "checksum": "sha256:87f2a4d80cf4f6a958f3662c6a382edefc32a5ad2c364a7f3c40337cf2b1e8ba", + "check_gpg": true + }, + { + "name": "libcurl", + "epoch": 0, + "version": "7.61.1", + "release": "18.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libcurl-7.61.1-18.el8.x86_64.rpm", + "checksum": "sha256:82209c177f241996e56978b1de4c6c30daeec43836042abfb65c8895b93d0b1c", + "check_gpg": true + }, + { + "name": "libdaemon", + "epoch": 0, + "version": "0.14", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdaemon-0.14-15.el8.x86_64.rpm", + "checksum": "sha256:dae52ddd215b506d1805b66873194df5043fd758d42960dee68f029eab329b42", + "check_gpg": true + }, + { + "name": "libdb", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:195dd3e3ba3366453faf28d3602b18a070fc3447cddd6ec45fe758490350aa0b", + "check_gpg": true + }, + { + "name": "libdb-utils", + "epoch": 0, + "version": "5.3.28", + "release": "40.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdb-utils-5.3.28-40.el8.x86_64.rpm", + "checksum": "sha256:dff9459fe9602a6ae36b0f34b738c77121cb7f0a89fdce3a8a48ec78002f01c0", + "check_gpg": true + }, + { + "name": "libdhash", + "epoch": 0, + "version": "0.5.0", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdhash-0.5.0-39.el8.x86_64.rpm", + "checksum": "sha256:6327624b7b0d726a3c95f2245619efb1df8e70023fadcc8158afed39f57859e7", + "check_gpg": true + }, + { + "name": "libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:39062b439bff5c4247c63840a36535e8e5faacc5f60d14204069def29bfe3e12", + "check_gpg": true + }, + { + "name": "libedit", + "epoch": 0, + "version": "3.1", + "release": "23.20170329cvs.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libedit-3.1-23.20170329cvs.el8.x86_64.rpm", + "checksum": "sha256:08b76b0af07db4d3b27776a96bb7d0dc0f02b7219569676ac79036190d731d5b", + "check_gpg": true + }, + { + "name": "libevent", + "epoch": 0, + "version": "2.1.8", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libevent-2.1.8-5.el8.x86_64.rpm", + "checksum": "sha256:746bac6bb011a586d42bd82b2f8b25bac72c9e4bbd4c19a34cf88eadb1d83873", + "check_gpg": true + }, + { + "name": "libfdisk", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libfdisk-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3a8e10d3ccda618f1d1664eabb1be56bfbb1ecf95bbe9962786444a9c6138a51", + "check_gpg": true + }, + { + "name": "libffi", + "epoch": 0, + "version": "3.1", + "release": "22.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libffi-3.1-22.el8.x86_64.rpm", + "checksum": "sha256:3991890c6b556a06923002b0ad511c0e2d85e93cb0618758e68d72f95676b4e6", + "check_gpg": true + }, + { + "name": "libgcab1", + "epoch": 0, + "version": "1.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcab1-1.1-1.el8.x86_64.rpm", + "checksum": "sha256:d9d8c21ad40e59b78008f1a569039462e5654a9d4bb08d84cf032e34cf7bde62", + "check_gpg": true + }, + { + "name": "libgcc", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcc-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:acf42b13608225c6f6c0a44f9c8b94f1eb2ee1df8b89f21bc0f9d6d214ece44c", + "check_gpg": true + }, + { + "name": "libgcrypt", + "epoch": 0, + "version": "1.8.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgcrypt-1.8.5-4.el8.x86_64.rpm", + "checksum": "sha256:44a46e84b30b34503e52d5a6e748268bef1ef3743f311d63e920638c1a82c8bf", + "check_gpg": true + }, + { + "name": "libgomp", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgomp-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:50ce498961e185218e9d8adf72a2f71cdd821ea30560bc3c3d34cf956aa265db", + "check_gpg": true + }, + { + "name": "libgpg-error", + "epoch": 0, + "version": "1.31", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgpg-error-1.31-1.el8.x86_64.rpm", + "checksum": "sha256:845a0732d9d7a01b909124cd8293204764235c2d856227c7a74dfa0e38113e34", + "check_gpg": true + }, + { + "name": "libgudev", + "epoch": 0, + "version": "232", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgudev-232-4.el8.x86_64.rpm", + "checksum": "sha256:cb6b773c2ac78142736abd8a8f9eaac122f4647aefd3f003a615baf79abbefbb", + "check_gpg": true + }, + { + "name": "libgusb", + "epoch": 0, + "version": "0.3.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libgusb-0.3.0-1.el8.x86_64.rpm", + "checksum": "sha256:ab7bc1a828168006b88934bea949ab2b29b837b0a431f7da1a12147f64f6ddb5", + "check_gpg": true + }, + { + "name": "libibverbs", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libibverbs-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:5962603021539df0fd116fc2cc5a0345ad15780e812a65ca263af9aea47ad80e", + "check_gpg": true + }, + { + "name": "libidn2", + "epoch": 0, + "version": "2.2.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libidn2-2.2.0-1.el8.x86_64.rpm", + "checksum": "sha256:7e08785bd3cc0e09f9ab4bf600b98b705203d552cbb655269a939087987f1694", + "check_gpg": true + }, + { + "name": "libini_config", + "epoch": 0, + "version": "1.3.1", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libini_config-1.3.1-39.el8.x86_64.rpm", + "checksum": "sha256:b06fa62d0a585a7bc3b9d3341923736b3ee4b6cc6d7ca83bebcb97225ca86ac9", + "check_gpg": true + }, + { + "name": "libkcapi", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:42f48b1707318215f904134e014d00fac2d811ccc01943abc718b31ef05c0f34", + "check_gpg": true + }, + { + "name": "libkcapi-hmaccalc", + "epoch": 0, + "version": "1.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libkcapi-hmaccalc-1.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:80ffd3c1ca47e469c9d69b9e88d5b385ba081e55412238ced56fecd996afdf8e", + "check_gpg": true + }, + { + "name": "libksba", + "epoch": 0, + "version": "1.3.5", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libksba-1.3.5-7.el8.x86_64.rpm", + "checksum": "sha256:e6d3476e9996fb49632744be169f633d92900f5b7151db233501167a9018d240", + "check_gpg": true + }, + { + "name": "libldb", + "epoch": 0, + "version": "2.2.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libldb-2.2.0-1.el8.x86_64.rpm", + "checksum": "sha256:1b5187e9b694e439a059be58d8de5317f04278371d1195bf000b001ba8699197", + "check_gpg": true + }, + { + "name": "libmbim", + "epoch": 0, + "version": "1.20.2", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmbim-1.20.2-1.el8.x86_64.rpm", + "checksum": "sha256:e2549a249d537f80f6595816a1094532c3feb0a730585d102c580583cc1dfde4", + "check_gpg": true + }, + { + "name": "libmetalink", + "epoch": 0, + "version": "0.1.3", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmetalink-0.1.3-7.el8.x86_64.rpm", + "checksum": "sha256:c4087dec9ffc6e6a164563c46ef09bc0c0bbb5cb992f5fbc8cd3bf20417750e1", + "check_gpg": true + }, + { + "name": "libmnl", + "epoch": 0, + "version": "1.0.4", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmnl-1.0.4-6.el8.x86_64.rpm", + "checksum": "sha256:30fab73ee155f03dbbd99c1e30fe59dfba4ae8fdb2e7213451ccc36d6918bfcc", + "check_gpg": true + }, + { + "name": "libmodulemd", + "epoch": 0, + "version": "2.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmodulemd-2.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:78f8bf60343c3b2f9870bb82bab32d956870bc31106e09cd8eef20bf585f0173", + "check_gpg": true + }, + { + "name": "libmount", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libmount-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:d90ed492d5e413f30e399cc03814db80e1caeae05d04fc73471cf0201a9b165c", + "check_gpg": true + }, + { + "name": "libndp", + "epoch": 0, + "version": "1.7", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libndp-1.7-3.el8.x86_64.rpm", + "checksum": "sha256:c357a350aa169402db3c898c7edcfee333e1d11a44f62bbeaba3fd3d2f31644d", + "check_gpg": true + }, + { + "name": "libnetfilter_conntrack", + "epoch": 0, + "version": "1.0.6", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnetfilter_conntrack-1.0.6-5.el8.x86_64.rpm", + "checksum": "sha256:224100af3ecfc80c416796ec02c7c4dd113a38d42349d763485f3b42f260493f", + "check_gpg": true + }, + { + "name": "libnfnetlink", + "epoch": 0, + "version": "1.0.1", + "release": "13.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnfnetlink-1.0.1-13.el8.x86_64.rpm", + "checksum": "sha256:cec98aa5fbefcb99715921b493b4f92d34c4eeb823e9c8741aa75e280def89f1", + "check_gpg": true + }, + { + "name": "libnfsidmap", + "epoch": 1, + "version": "2.3.3", + "release": "41.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnfsidmap-2.3.3-41.el8.x86_64.rpm", + "checksum": "sha256:8852282172440cd618c695356449cbc035be4091b2a0833c785c8e42cc1df0e6", + "check_gpg": true + }, + { + "name": "libnftnl", + "epoch": 0, + "version": "1.1.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnftnl-1.1.5-4.el8.x86_64.rpm", + "checksum": "sha256:c1bb77ed45ae47dc068445c6dfa4b70b273a3daf8cd82b9fa7a50e3d59abe3c1", + "check_gpg": true + }, + { + "name": "libnghttp2", + "epoch": 0, + "version": "1.33.0", + "release": "3.el8_2.1", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnghttp2-1.33.0-3.el8_2.1.x86_64.rpm", + "checksum": "sha256:0126a384853d46484dec98601a4cb4ce58b2e0411f8f7ef09937174dd5975bac", + "check_gpg": true + }, + { + "name": "libnl3", + "epoch": 0, + "version": "3.5.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-3.5.0-1.el8.x86_64.rpm", + "checksum": "sha256:21c65dbf3b506a37828b13c205077f4b70fddb4b1d1c929dec01661238108059", + "check_gpg": true + }, + { + "name": "libnl3-cli", + "epoch": 0, + "version": "3.5.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnl3-cli-3.5.0-1.el8.x86_64.rpm", + "checksum": "sha256:2e8d4ee76fa8678b0e4d6c0297b16f96e0116201bf96b36e8924b1b080abcddd", + "check_gpg": true + }, + { + "name": "libnsl2", + "epoch": 0, + "version": "1.2.0", + "release": "2.20180605git4a062cf.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64.rpm", + "checksum": "sha256:5846c73edfa2ff673989728e9621cce6a1369eb2f8a269ac5205c381a10d327a", + "check_gpg": true + }, + { + "name": "libpath_utils", + "epoch": 0, + "version": "0.2.1", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpath_utils-0.2.1-39.el8.x86_64.rpm", + "checksum": "sha256:185f36b3af9367e6142233af358df22f23ee623697bc6a45c47091013707872e", + "check_gpg": true + }, + { + "name": "libpcap", + "epoch": 14, + "version": "1.9.1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpcap-1.9.1-5.el8.x86_64.rpm", + "checksum": "sha256:7f429477c26b4650a3eca4a27b3972ff0857c843bdb4d8fcb02086da111ce5fd", + "check_gpg": true + }, + { + "name": "libpciaccess", + "epoch": 0, + "version": "0.14", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpciaccess-0.14-1.el8.x86_64.rpm", + "checksum": "sha256:759386be8f49257266ac614432b762b8e486a89aac5d5f7a581a0330efb59c77", + "check_gpg": true + }, + { + "name": "libpipeline", + "epoch": 0, + "version": "1.5.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpipeline-1.5.0-2.el8.x86_64.rpm", + "checksum": "sha256:9eb9c1a67c5be04487cc133bdb8498eaf260e4d930a0143d2e1aa772e3d6cf64", + "check_gpg": true + }, + { + "name": "libpng", + "epoch": 2, + "version": "1.6.34", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpng-1.6.34-5.el8.x86_64.rpm", + "checksum": "sha256:cc2f054cf7ef006faf0b179701838ff8632c3ac5f45a0199a13f9c237f632b82", + "check_gpg": true + }, + { + "name": "libpsl", + "epoch": 0, + "version": "0.20.2", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpsl-0.20.2-6.el8.x86_64.rpm", + "checksum": "sha256:6331739a255deef04005f1516e5f6a7991aebccec6d5f6b9fcf7ee9e059bad4d", + "check_gpg": true + }, + { + "name": "libpwquality", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libpwquality-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:c5359c27606e5e72856c40c3428e7de03d9cfd9dc4e67f2bb6889b2ccb0e1bea", + "check_gpg": true + }, + { + "name": "libqmi", + "epoch": 0, + "version": "1.24.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libqmi-1.24.0-1.el8.x86_64.rpm", + "checksum": "sha256:406aea2bb2a5f83cabee5a50bad08a3516776c3cd42db8b159f926624f61aa42", + "check_gpg": true + }, + { + "name": "libref_array", + "epoch": 0, + "version": "0.1.5", + "release": "39.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libref_array-0.1.5-39.el8.x86_64.rpm", + "checksum": "sha256:6b740563ba5858573ff3c2d2a827aeaf6e7166178e36066755d2cde4cf8a016f", + "check_gpg": true + }, + { + "name": "librepo", + "epoch": 0, + "version": "1.12.0", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/librepo-1.12.0-3.el8.x86_64.rpm", + "checksum": "sha256:b6075e2779eda2d476eedaaacdf62df49d98f6bc0893d9327759e48647322b24", + "check_gpg": true + }, + { + "name": "libreport-filesystem", + "epoch": 0, + "version": "2.9.5", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libreport-filesystem-2.9.5-15.el8.x86_64.rpm", + "checksum": "sha256:b9cfde532f94e32540b51c74547da69bb06045e5d03c4e7d4be909dbcf929887", + "check_gpg": true + }, + { + "name": "libseccomp", + "epoch": 0, + "version": "2.4.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libseccomp-2.4.3-1.el8.x86_64.rpm", + "checksum": "sha256:9714f7456c35c043780a2d69b8d314dc9b947261bedf5d11b1d142c9ff4a86a8", + "check_gpg": true + }, + { + "name": "libsecret", + "epoch": 0, + "version": "0.18.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsecret-0.18.6-1.el8.x86_64.rpm", + "checksum": "sha256:f8d06e0c4b3f4a2c75f8ee6ffafb6a06fbbe1ecc5f3ee87d6e6df12c3c590c5b", + "check_gpg": true + }, + { + "name": "libselinux", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:89e54e0975b9c87c45d3478d9f8bcc3f19a90e9ef16062a524af4a8efc059e1f", + "check_gpg": true + }, + { + "name": "libselinux-utils", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libselinux-utils-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:5063fe914f04ca203e3f28529021c40ef01ad8ed33330fafc0f658581a78b722", + "check_gpg": true + }, + { + "name": "libsemanage", + "epoch": 0, + "version": "2.9", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsemanage-2.9-6.el8.x86_64.rpm", + "checksum": "sha256:6ba1f1f26bc8e261a813883e0cbcd7b0f542109e797fb6092afba8dc7f1ea269", + "check_gpg": true + }, + { + "name": "libsepol", + "epoch": 0, + "version": "2.9", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsepol-2.9-2.el8.x86_64.rpm", + "checksum": "sha256:6351d2d121e7a7e157a5c48086f243417327fd91b1c1f34f33aca64f741f26ee", + "check_gpg": true + }, + { + "name": "libsigsegv", + "epoch": 0, + "version": "2.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsigsegv-2.11-5.el8.x86_64.rpm", + "checksum": "sha256:02d728cf74eb47005babeeab5ac68ca04472c643203a1faef0037b5f33710fe2", + "check_gpg": true + }, + { + "name": "libsmartcols", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmartcols-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:3e92b8e659f60def1617aa21c39cef60893283dc79d476796ba1bd092d726ce2", + "check_gpg": true + }, + { + "name": "libsmbios", + "epoch": 0, + "version": "2.4.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsmbios-2.4.1-2.el8.x86_64.rpm", + "checksum": "sha256:5092704c041bb246eaafd478bedface3f99ce8fa233ada5cf96807f67e980e42", + "check_gpg": true + }, + { + "name": "libsolv", + "epoch": 0, + "version": "0.7.16", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsolv-0.7.16-2.el8.x86_64.rpm", + "checksum": "sha256:b4e93ef08fb57e5f2a250e44ab4edac76eaef36b01a0757a4cc783eab7de27f1", + "check_gpg": true + }, + { + "name": "libss", + "epoch": 0, + "version": "1.45.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libss-1.45.6-1.el8.x86_64.rpm", + "checksum": "sha256:8ed33350285cf6289c67b74678e5127ce304203a8a36e65b39361a7fe45e02b2", + "check_gpg": true + }, + { + "name": "libssh", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-0.9.4-2.el8.x86_64.rpm", + "checksum": "sha256:d6bba2c7fdbfcb34af49d5cc347ac77ec38986f7c0a5538ae94270997d7cc2b4", + "check_gpg": true + }, + { + "name": "libssh-config", + "epoch": 0, + "version": "0.9.4", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libssh-config-0.9.4-2.el8.noarch.rpm", + "checksum": "sha256:4f0514fe3884774d35e2f73d0f76924da498c0acfe7e42501604323cda50dadb", + "check_gpg": true + }, + { + "name": "libsss_autofs", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_autofs-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:1230ddb5d92fe538a0526e3a9f05563a111ae4ff1978fc8e18de889974b5b46c", + "check_gpg": true + }, + { + "name": "libsss_certmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_certmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:ef2734017b25f7e9e1abf67315a7d1c97216642b5dfb979c19b1a3f74cff1e54", + "check_gpg": true + }, + { + "name": "libsss_idmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_idmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:377ad20c1681518bff1f40884589bddc4a692506384c7676f072ddf86ae429f9", + "check_gpg": true + }, + { + "name": "libsss_nss_idmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_nss_idmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:2c6dd4f21d9c4bde29f693d32e44f0d1c5dc73d78d013767df531d69bbfc6ed8", + "check_gpg": true + }, + { + "name": "libsss_sudo", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsss_sudo-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:370b74a811249b8f0bdfcd34137507f058a85196775e9d0d2bb244c100d194ae", + "check_gpg": true + }, + { + "name": "libstdc++", + "epoch": 0, + "version": "8.4.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libstdc++-8.4.1-1.el8.x86_64.rpm", + "checksum": "sha256:2d816367f73456abd30d763cd6b9c6ead85be2bb6ff5611a29e39ddd19cf772d", + "check_gpg": true + }, + { + "name": "libsysfs", + "epoch": 0, + "version": "2.1.0", + "release": "24.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libsysfs-2.1.0-24.el8.x86_64.rpm", + "checksum": "sha256:53ae3ecd59ec61852cabbd039c748ed63ceb6a88da98587d4c33323ba4095154", + "check_gpg": true + }, + { + "name": "libtalloc", + "epoch": 0, + "version": "2.3.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtalloc-2.3.1-2.el8.x86_64.rpm", + "checksum": "sha256:918518368513d162d772dfc5d16536ad2799276bcba2f47514a1c7098de2b43f", + "check_gpg": true + }, + { + "name": "libtasn1", + "epoch": 0, + "version": "4.13", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtasn1-4.13-3.el8.x86_64.rpm", + "checksum": "sha256:e8d9697a8914226a2d3ed5a4523b85e8e70ac09cf90aae05395e6faee9858534", + "check_gpg": true + }, + { + "name": "libtdb", + "epoch": 0, + "version": "1.4.3", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtdb-1.4.3-1.el8.x86_64.rpm", + "checksum": "sha256:a5228fc876cffc7dc79769ada5653cb9bfb80d469fb3c9f0acc14a1a0d15782d", + "check_gpg": true + }, + { + "name": "libteam", + "epoch": 0, + "version": "1.31", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libteam-1.31-2.el8.x86_64.rpm", + "checksum": "sha256:0aaaaa29cc1bb4d358142db6eb7d12df9252a8166bf61956203878eed210785c", + "check_gpg": true + }, + { + "name": "libtevent", + "epoch": 0, + "version": "0.10.2", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtevent-0.10.2-2.el8.x86_64.rpm", + "checksum": "sha256:b8e4cfecbbe7d2d6d9f3003432e826398f6bea21d5aba11a17ee74358cb84a6e", + "check_gpg": true + }, + { + "name": "libtirpc", + "epoch": 0, + "version": "1.1.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtirpc-1.1.4-4.el8.x86_64.rpm", + "checksum": "sha256:4d7acc5861e8fbd998d0b76e93694f2b152fe98e7782cc4307a2d3103e987d11", + "check_gpg": true + }, + { + "name": "libtool-ltdl", + "epoch": 0, + "version": "2.4.6", + "release": "25.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libtool-ltdl-2.4.6-25.el8.x86_64.rpm", + "checksum": "sha256:7dcd11f03fa0979841bf0afe0a2ac8f360502d0a2dee8322a39115595c2464ec", + "check_gpg": true + }, + { + "name": "libunistring", + "epoch": 0, + "version": "0.9.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libunistring-0.9.9-3.el8.x86_64.rpm", + "checksum": "sha256:20bb189228afa589141d9c9d4ed457729d13c11608305387602d0b00ed0a3093", + "check_gpg": true + }, + { + "name": "libusbx", + "epoch": 0, + "version": "1.0.23", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libusbx-1.0.23-4.el8.x86_64.rpm", + "checksum": "sha256:7e704756a93f07feec345a9748204e78994ce06a4667a2ef35b44964ff754306", + "check_gpg": true + }, + { + "name": "libuser", + "epoch": 0, + "version": "0.62", + "release": "23.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuser-0.62-23.el8.x86_64.rpm", + "checksum": "sha256:70b5e4e580da72969ad3bb144c15293910b7d679e195c118cee60d8320f01851", + "check_gpg": true + }, + { + "name": "libutempter", + "epoch": 0, + "version": "1.1.6", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libutempter-1.1.6-14.el8.x86_64.rpm", + "checksum": "sha256:c8c54c56bff9ca416c3ba6bccac483fb66c81a53d93a19420088715018ed5169", + "check_gpg": true + }, + { + "name": "libuuid", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libuuid-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:97c0cbe6a80e36f8333acdd34345341f68840158711e47fa6666a1af8db4d722", + "check_gpg": true + }, + { + "name": "libverto", + "epoch": 0, + "version": "0.3.0", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libverto-0.3.0-5.el8.x86_64.rpm", + "checksum": "sha256:f95f673fc9236dc712270a343807cdac06297d847001e78cd707482c751b2d0d", + "check_gpg": true + }, + { + "name": "libxcrypt", + "epoch": 0, + "version": "4.1.1", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxcrypt-4.1.1-4.el8.x86_64.rpm", + "checksum": "sha256:607344bcb45159a85fe83b691103e321e4169847abf197db6f3a8b223f6ba54d", + "check_gpg": true + }, + { + "name": "libxml2", + "epoch": 0, + "version": "2.9.7", + "release": "9.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxml2-2.9.7-9.el8.x86_64.rpm", + "checksum": "sha256:5b98f99fed9e043f0c851b983a6d5d4606defeeb8b3464cf7d9c9eb130101d32", + "check_gpg": true + }, + { + "name": "libxmlb", + "epoch": 0, + "version": "0.1.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxmlb-0.1.15-1.el8.x86_64.rpm", + "checksum": "sha256:5b7763510f4badd05a1647e1fadf9dc49044b1cf4d754262d0d6d5ee9a8f3b12", + "check_gpg": true + }, + { + "name": "libxslt", + "epoch": 0, + "version": "1.1.32", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libxslt-1.1.32-6.el8.x86_64.rpm", + "checksum": "sha256:250a8077296adcd83585002ff36684be416ba1481d7bd9ed96973e37b9137f00", + "check_gpg": true + }, + { + "name": "libyaml", + "epoch": 0, + "version": "0.1.7", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libyaml-0.1.7-5.el8.x86_64.rpm", + "checksum": "sha256:00d537a434b1c2896dada83deb359d71fd005772031c73499c72f2cbd34521c5", + "check_gpg": true + }, + { + "name": "libzstd", + "epoch": 0, + "version": "1.4.4", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/libzstd-1.4.4-1.el8.x86_64.rpm", + "checksum": "sha256:7c2dc6044f13fe4ae04a4c1620da822a6be591b5129bf68ba98a3d8e9092f83b", + "check_gpg": true + }, + { + "name": "linux-firmware", + "epoch": 0, + "version": "20201218", + "release": "102.git05789708.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/linux-firmware-20201218-102.git05789708.el8.noarch.rpm", + "checksum": "sha256:cad76a2802c5f355b527df3cabde70bd58b31ec4b7de3b1ac15a429cda5b9b03", + "check_gpg": true + }, + { + "name": "lmdb-libs", + "epoch": 0, + "version": "0.9.24", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lmdb-libs-0.9.24-1.el8.x86_64.rpm", + "checksum": "sha256:0064a3aeff41fb7345c061956c35e4b9d0b8802954e717491fb6eb51028d22fd", + "check_gpg": true + }, + { + "name": "logrotate", + "epoch": 0, + "version": "3.14.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/logrotate-3.14.0-4.el8.x86_64.rpm", + "checksum": "sha256:3cd092e6e03efb4bb49b91dedd52b43f891092d04a2ff040b9f2197ec2082511", + "check_gpg": true + }, + { + "name": "lshw", + "epoch": 0, + "version": "B.02.19.2", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lshw-B.02.19.2-5.el8.x86_64.rpm", + "checksum": "sha256:fda078d8edd4e0902246dd3121efb6c57cb8231dbb975380f9249c64163f0d88", + "check_gpg": true + }, + { + "name": "lsscsi", + "epoch": 0, + "version": "0.32", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lsscsi-0.32-2.el8.x86_64.rpm", + "checksum": "sha256:c8fc05dd997477fc80e2f3195e719ca2e569fc8997f05a64a13c52c8358e8239", + "check_gpg": true + }, + { + "name": "lua-libs", + "epoch": 0, + "version": "5.3.4", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lua-libs-5.3.4-11.el8.x86_64.rpm", + "checksum": "sha256:98a5f610c2ca116fa63f98302036eaa8ca725c1e8fd7afae4a285deb50605b35", + "check_gpg": true + }, + { + "name": "lz4-libs", + "epoch": 0, + "version": "1.8.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lz4-libs-1.8.3-2.el8.x86_64.rpm", + "checksum": "sha256:bb095a1f7185f365c3d5f710f9bd94c1158ff2b60bd9c69d97fe4b0330dedbae", + "check_gpg": true + }, + { + "name": "lzo", + "epoch": 0, + "version": "2.08", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/lzo-2.08-14.el8.x86_64.rpm", + "checksum": "sha256:5c68635cb03533a38d4a42f6547c21a1d5f9952351bb01f3cf865d2621a6e634", + "check_gpg": true + }, + { + "name": "man-db", + "epoch": 0, + "version": "2.7.6.1", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/man-db-2.7.6.1-17.el8.x86_64.rpm", + "checksum": "sha256:a0b6a8d5530f5003f5c8d56211246cd1130a5b4dc1396dc50da70ce0e128b02c", + "check_gpg": true + }, + { + "name": "mdadm", + "epoch": 0, + "version": "4.1", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mdadm-4.1-15.el8.x86_64.rpm", + "checksum": "sha256:0560d3b3e915221aad94ddf83169bd680b1f0da9aa8ec8e9360bcb8fe071483e", + "check_gpg": true + }, + { + "name": "memstrack", + "epoch": 0, + "version": "0.1.11", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/memstrack-0.1.11-1.el8.x86_64.rpm", + "checksum": "sha256:efac6a249e1ab6e6e586db6d1f16c22c299667f464874a9612e280945077bf53", + "check_gpg": true + }, + { + "name": "microcode_ctl", + "epoch": 4, + "version": "20201112", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/microcode_ctl-20201112-2.el8.x86_64.rpm", + "checksum": "sha256:bce152ddd2f05f892e5ce483a7c12606ba7d2c42108402fc9609ada04048e6df", + "check_gpg": true + }, + { + "name": "mokutil", + "epoch": 1, + "version": "0.3.0", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mokutil-0.3.0-11.el8.x86_64.rpm", + "checksum": "sha256:1c4b186665558747023a60d0d662d3780a1bc49e578062f4b70100c71ab2220c", + "check_gpg": true + }, + { + "name": "mozjs60", + "epoch": 0, + "version": "60.9.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mozjs60-60.9.0-4.el8.x86_64.rpm", + "checksum": "sha256:03b50a4ea5cf5655c67e2358fabb6e563eec4e7929e7fc6c4e92c92694f60fa0", + "check_gpg": true + }, + { + "name": "mpfr", + "epoch": 0, + "version": "3.1.6", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/mpfr-3.1.6-1.el8.x86_64.rpm", + "checksum": "sha256:e7f0c34f83c1ec2abb22951779e84d51e234c4ba0a05252e4ffd8917461891a5", + "check_gpg": true + }, + { + "name": "ncurses", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:1531c2e9ae6ba19c1595480761d4ab2634ab8901d35d06994dfb144f1c5bf862", + "check_gpg": true + }, + { + "name": "ncurses-base", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-base-6.1-7.20180224.el8.noarch.rpm", + "checksum": "sha256:1dfed63c2b675064c87d3e95c433a1c4515b24c28a7815e643e6f3d84814e79d", + "check_gpg": true + }, + { + "name": "ncurses-libs", + "epoch": 0, + "version": "6.1", + "release": "7.20180224.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/ncurses-libs-6.1-7.20180224.el8.x86_64.rpm", + "checksum": "sha256:440ef0473d6f85c6f173020dab18d376d466b7b960876fba54772f88d4bfe050", + "check_gpg": true + }, + { + "name": "nettle", + "epoch": 0, + "version": "3.4.1", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nettle-3.4.1-2.el8.x86_64.rpm", + "checksum": "sha256:44b6e58f503c372ac8e53c331eb74ec5025ae729454994d6b6626063913fad4d", + "check_gpg": true + }, + { + "name": "newt", + "epoch": 0, + "version": "0.52.20", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/newt-0.52.20-11.el8.x86_64.rpm", + "checksum": "sha256:c9df7c58da59500e1717e435c565e221daa344212db8e83eb33b6a9c8e9a67bb", + "check_gpg": true + }, + { + "name": "nftables", + "epoch": 1, + "version": "0.9.3", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/nftables-0.9.3-17.el8.x86_64.rpm", + "checksum": "sha256:0b763d946ec7da165107258469e7655707caa6fde0fff49e9e89d747e13eacc1", + "check_gpg": true + }, + { + "name": "npth", + "epoch": 0, + "version": "1.5", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/npth-1.5-4.el8.x86_64.rpm", + "checksum": "sha256:168ab5dbc86b836b8742b2e63eee51d074f1d790728e3d30b0c59fff93cf1d8d", + "check_gpg": true + }, + { + "name": "numactl-libs", + "epoch": 0, + "version": "2.0.12", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/numactl-libs-2.0.12-11.el8.x86_64.rpm", + "checksum": "sha256:5e24dd39ae59ef7b7a386f28509cc80d8fabb23f0932e52ea365cf064ff76c59", + "check_gpg": true + }, + { + "name": "openldap", + "epoch": 0, + "version": "2.4.46", + "release": "16.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openldap-2.4.46-16.el8.x86_64.rpm", + "checksum": "sha256:7a0e812485bdafb65fd5b4e86adc7895e5823bbcae2080bd1fc022aa27b8faaf", + "check_gpg": true + }, + { + "name": "openssh", + "epoch": 0, + "version": "8.0p1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-8.0p1-5.el8.x86_64.rpm", + "checksum": "sha256:f8bdaf5211c6fc72c8f60c7ddd59b8ca124ab26d2670ee6490a7fabb5177d919", + "check_gpg": true + }, + { + "name": "openssh-clients", + "epoch": 0, + "version": "8.0p1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-clients-8.0p1-5.el8.x86_64.rpm", + "checksum": "sha256:a9ec13abf63c69913acc1ac7070ab315c8b5a58c6006c3dfc5b27662f7f22260", + "check_gpg": true + }, + { + "name": "openssh-server", + "epoch": 0, + "version": "8.0p1", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssh-server-8.0p1-5.el8.x86_64.rpm", + "checksum": "sha256:173a812d859c70f8db7b014d507c5cacb76c62ab5480c44be217f880465f42c7", + "check_gpg": true + }, + { + "name": "openssl", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:b89652c5fec7359ed464ab11cc9e9387f3344e041fdefe322841f7e3c4053c35", + "check_gpg": true + }, + { + "name": "openssl-libs", + "epoch": 1, + "version": "1.1.1g", + "release": "12.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-libs-1.1.1g-12.el8_3.x86_64.rpm", + "checksum": "sha256:2125ac3919cf0b3dd78dc2be3f13dddff3a6b3348eca7cea75602d8929a518e3", + "check_gpg": true + }, + { + "name": "openssl-pkcs11", + "epoch": 0, + "version": "0.4.10", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/openssl-pkcs11-0.4.10-2.el8.x86_64.rpm", + "checksum": "sha256:2f056611d9f9f262946d31c60c0d16158936c83f11089dd45f08d50a3781dcd4", + "check_gpg": true + }, + { + "name": "os-prober", + "epoch": 0, + "version": "1.74", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/os-prober-1.74-6.el8.x86_64.rpm", + "checksum": "sha256:91eb3bdf183ca4211207f1691be56b036d07442b421981fcf2a4a37c8b52b0f2", + "check_gpg": true + }, + { + "name": "p11-kit", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:6a67c8721fe24af25ec56c6aae956a190d8463e46efed45adfbbd800086550c7", + "check_gpg": true + }, + { + "name": "p11-kit-trust", + "epoch": 0, + "version": "0.23.22", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/p11-kit-trust-0.23.22-1.el8.x86_64.rpm", + "checksum": "sha256:d218619a4859e002fe677703bc1767986314cd196ae2ac397ed057f3bec36516", + "check_gpg": true + }, + { + "name": "pam", + "epoch": 0, + "version": "1.3.1", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pam-1.3.1-14.el8.x86_64.rpm", + "checksum": "sha256:b2efcc3ad1bc87854addef62b5d7b51497a7c084a59b851df64341f2fa107658", + "check_gpg": true + }, + { + "name": "parted", + "epoch": 0, + "version": "3.2", + "release": "38.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/parted-3.2-38.el8.x86_64.rpm", + "checksum": "sha256:4c5c7f3773c634c054b0a5fc1b40d0a8448b44bb5aff410bfa88facf9e2059ff", + "check_gpg": true + }, + { + "name": "passwd", + "epoch": 0, + "version": "0.80", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/passwd-0.80-3.el8.x86_64.rpm", + "checksum": "sha256:9c849b1d4fd605ae749fd9d090715b6034520af871c23729cd4003f22e0990de", + "check_gpg": true + }, + { + "name": "pciutils", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4d563d8048653b88a65b3b507e95ff911b39471935870684c0d6ead054a9a90e", + "check_gpg": true + }, + { + "name": "pciutils-libs", + "epoch": 0, + "version": "3.7.0", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pciutils-libs-3.7.0-1.el8.x86_64.rpm", + "checksum": "sha256:4c4c1acb49227d6a71b7e7ae490d0f5f33031a4643e374b2e0b6c7d53045873c", + "check_gpg": true + }, + { + "name": "pcre", + "epoch": 0, + "version": "8.42", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre-8.42-4.el8.x86_64.rpm", + "checksum": "sha256:96a45c43313c3b063529bca7fce7220ac7653c4809c3c32154863693e553f935", + "check_gpg": true + }, + { + "name": "pcre2", + "epoch": 0, + "version": "10.32", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pcre2-10.32-2.el8.x86_64.rpm", + "checksum": "sha256:fb29d2bd46a98affd617bbb243bb117ebbb3d074a6455036abb2aa5b507cce62", + "check_gpg": true + }, + { + "name": "pigz", + "epoch": 0, + "version": "2.4", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/pigz-2.4-4.el8.x86_64.rpm", + "checksum": "sha256:38f93036a50da87f65f680e9fb22db47b17bc8fffdaf19e6398b6fb28e0ab262", + "check_gpg": true + }, + { + "name": "platform-python", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:aad5ea67a31cba37797d348593068dd7b124cb79108b0a6ec9aa63b1f98e6c37", + "check_gpg": true + }, + { + "name": "platform-python-pip", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-pip-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:5205c68e394487f019e5fe82c460b5b3a1c9950ae3d0b9ccafa9cfcc8ce9e6fe", + "check_gpg": true + }, + { + "name": "platform-python-setuptools", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/platform-python-setuptools-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:946ba273a3a3b6fdf140f3c03112918c0a556a5871c477f5dbbb98600e6ca557", + "check_gpg": true + }, + { + "name": "policycoreutils", + "epoch": 0, + "version": "2.9", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/policycoreutils-2.9-12.el8.x86_64.rpm", + "checksum": "sha256:c18a9fda4f453fc660a3bb18cd2398c37f46b6016dc280a5ec69ae9ccbe97a89", + "check_gpg": true + }, + { + "name": "polkit", + "epoch": 0, + "version": "0.115", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-0.115-11.el8.x86_64.rpm", + "checksum": "sha256:09128c1b70cb8ea1a9bfbc6f3314dd5a8ba0c1a1886a82cd0fbe6845d48215dc", + "check_gpg": true + }, + { + "name": "polkit-libs", + "epoch": 0, + "version": "0.115", + "release": "11.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-libs-0.115-11.el8.x86_64.rpm", + "checksum": "sha256:8d6742dce47f8ed65e222864872e919f30c678f5df1e99c134fba8a0fc7f454d", + "check_gpg": true + }, + { + "name": "polkit-pkla-compat", + "epoch": 0, + "version": "0.1", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/polkit-pkla-compat-0.1-12.el8.x86_64.rpm", + "checksum": "sha256:e7ee4b6d6456cb7da0332f5a6fb8a7c47df977bcf616f12f0455413765367e89", + "check_gpg": true + }, + { + "name": "popt", + "epoch": 0, + "version": "1.18", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/popt-1.18-1.el8.x86_64.rpm", + "checksum": "sha256:3fc009f00388e66befab79be548ff3c7aa80ca70bd7f183d22f59137d8e2c2ae", + "check_gpg": true + }, + { + "name": "prefixdevname", + "epoch": 0, + "version": "0.1.0", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/prefixdevname-0.1.0-6.el8.x86_64.rpm", + "checksum": "sha256:776a182ecaab9f86c7e869db2eb2deea1f291caee701cddbd752da8cd3c57458", + "check_gpg": true + }, + { + "name": "procps-ng", + "epoch": 0, + "version": "3.3.15", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/procps-ng-3.3.15-6.el8.x86_64.rpm", + "checksum": "sha256:f5e5f477118224715f12a7151a5effcb6eda892898b5a176e1bde98b03ba7b77", + "check_gpg": true + }, + { + "name": "publicsuffix-list-dafsa", + "epoch": 0, + "version": "20180723", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/publicsuffix-list-dafsa-20180723-1.el8.noarch.rpm", + "checksum": "sha256:65ecf1e479dc2b2f7f09c2e86d7457043b3470b3eab3c4ee8909b50b0a669fc2", + "check_gpg": true + }, + { + "name": "python3-configobj", + "epoch": 0, + "version": "5.0.6", + "release": "11.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-configobj-5.0.6-11.el8.noarch.rpm", + "checksum": "sha256:1bd969e0521820374122f5132e5998d9bd2ab185be66565a7266096297419c8e", + "check_gpg": true + }, + { + "name": "python3-dateutil", + "epoch": 1, + "version": "2.6.1", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dateutil-2.6.1-6.el8.noarch.rpm", + "checksum": "sha256:c5b5967a094ced90899052a82e2c245529b75ba3f46e0ce1a89cfc95edb935ea", + "check_gpg": true + }, + { + "name": "python3-dbus", + "epoch": 0, + "version": "1.2.4", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dbus-1.2.4-15.el8.x86_64.rpm", + "checksum": "sha256:066f254f9ac7712b44214816de907a87eb8dfd0d2ea9570a7513db9a6617ba26", + "check_gpg": true + }, + { + "name": "python3-decorator", + "epoch": 0, + "version": "4.2.1", + "release": "2.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-decorator-4.2.1-2.el8.noarch.rpm", + "checksum": "sha256:0e9a8a0f823bf0ef948862f0ccb62353460bd07931e756c98f23908c1c526578", + "check_gpg": true + }, + { + "name": "python3-dnf", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:3d7fcd93b2118c64dfc25e609cf38578b07208fcdf7afc2338930a5f6b1b3e3a", + "check_gpg": true + }, + { + "name": "python3-dnf-plugins-core", + "epoch": 0, + "version": "4.0.18", + "release": "3.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-dnf-plugins-core-4.0.18-3.el8.noarch.rpm", + "checksum": "sha256:941a9068b8fa524ecac58d37f941b95fbdcd9e38bd87c7f9d1330c5925a52a20", + "check_gpg": true + }, + { + "name": "python3-firewall", + "epoch": 0, + "version": "0.8.2", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-firewall-0.8.2-6.el8.noarch.rpm", + "checksum": "sha256:d9fcdf78bae8bf3f3e7d469686a07fdb337567a7f6159397eee990730eb8cd11", + "check_gpg": true + }, + { + "name": "python3-gobject-base", + "epoch": 0, + "version": "3.28.3", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gobject-base-3.28.3-2.el8.x86_64.rpm", + "checksum": "sha256:15dc15a5be210707852f051f4d09949c063a7283edc7d4ca3d4289eedcc0b509", + "check_gpg": true + }, + { + "name": "python3-gpg", + "epoch": 0, + "version": "1.13.1", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-gpg-1.13.1-7.el8.x86_64.rpm", + "checksum": "sha256:350fb295f2ff3c3ed25f7fdac8a7fff97ba2f935b11ba29be6bee76d82d371eb", + "check_gpg": true + }, + { + "name": "python3-hawkey", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-hawkey-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:b6fbe4ca7bc4739115b1c2a990b866916fd5055e7a0a8e2af062cfb063fa9572", + "check_gpg": true + }, + { + "name": "python3-libcomps", + "epoch": 0, + "version": "0.1.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libcomps-0.1.11-5.el8.x86_64.rpm", + "checksum": "sha256:838066c9908e6e12e6349fad3c0476cba149351fc93485bc44a7187c7ca800e9", + "check_gpg": true + }, + { + "name": "python3-libdnf", + "epoch": 0, + "version": "0.55.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libdnf-0.55.0-2.el8.x86_64.rpm", + "checksum": "sha256:586e60e82b1bab46005b3b7e1f638e903b6ece43a2b211db11433cdc337cfb56", + "check_gpg": true + }, + { + "name": "python3-libs", + "epoch": 0, + "version": "3.6.8", + "release": "36.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libs-3.6.8-36.el8.x86_64.rpm", + "checksum": "sha256:7f397c5749fd6e966d21f7da92aeaecba88e9dc640c2d80f99388e00554bbb23", + "check_gpg": true + }, + { + "name": "python3-libselinux", + "epoch": 0, + "version": "2.9", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-libselinux-2.9-5.el8.x86_64.rpm", + "checksum": "sha256:59ba5bf69953a5a2e902b0f08b7187b66d84968852d46a3579a059477547d1a0", + "check_gpg": true + }, + { + "name": "python3-linux-procfs", + "epoch": 0, + "version": "0.6.3", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-linux-procfs-0.6.3-1.el8.noarch.rpm", + "checksum": "sha256:dc835194ecfa6ebda81e0a764c953eff3422a61863e9a3e0dc74ea4cae7a4d94", + "check_gpg": true + }, + { + "name": "python3-nftables", + "epoch": 1, + "version": "0.9.3", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-nftables-0.9.3-17.el8.x86_64.rpm", + "checksum": "sha256:e1a85d0f6b23482247c81c449d87749cdc8e6b7df737b39aba170634b644da0f", + "check_gpg": true + }, + { + "name": "python3-perf", + "epoch": 0, + "version": "4.18.0", + "release": "277.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-perf-4.18.0-277.el8.x86_64.rpm", + "checksum": "sha256:6aa1e29a4d805fc36c3196788fe78cb4552e2ebec8b3d0f8d32974e6a97025f2", + "check_gpg": true + }, + { + "name": "python3-pip-wheel", + "epoch": 0, + "version": "9.0.3", + "release": "19.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pip-wheel-9.0.3-19.el8.noarch.rpm", + "checksum": "sha256:65929ef76ddfeb7ce8df91a5db144fdc3553a8d6539f7774e39293d0231b22f7", + "check_gpg": true + }, + { + "name": "python3-pyudev", + "epoch": 0, + "version": "0.21.0", + "release": "7.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-pyudev-0.21.0-7.el8.noarch.rpm", + "checksum": "sha256:aa0007192287faeaecc72d9fa48efdb3108c764d450dc8fea65474476da32c45", + "check_gpg": true + }, + { + "name": "python3-rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:4f1a055d7ac1bc587489f80d7a74302f190a568304eebb76cbc0ee980c065597", + "check_gpg": true + }, + { + "name": "python3-schedutils", + "epoch": 0, + "version": "0.6", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-schedutils-0.6-6.el8.x86_64.rpm", + "checksum": "sha256:bafc2680bd298f0fac70854224ef03b7098d4c46ee35e270f6fd58d2e812ff1b", + "check_gpg": true + }, + { + "name": "python3-setuptools-wheel", + "epoch": 0, + "version": "39.2.0", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-setuptools-wheel-39.2.0-6.el8.noarch.rpm", + "checksum": "sha256:b19bd4f106ce301ee21c860183cc1c2ef9c09bdf495059bdf16e8d8ccc71bbe8", + "check_gpg": true + }, + { + "name": "python3-six", + "epoch": 0, + "version": "1.11.0", + "release": "8.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-six-1.11.0-8.el8.noarch.rpm", + "checksum": "sha256:a04cb3117395b962edc32bf45d8411f240632476b0706b2df7f4a1a87b2ce34b", + "check_gpg": true + }, + { + "name": "python3-slip", + "epoch": 0, + "version": "0.6.4", + "release": "11.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-slip-0.6.4-11.el8.noarch.rpm", + "checksum": "sha256:233e5f78027b684e5aaac1395cc574aea3039059bf86eb4494422bc74216a396", + "check_gpg": true + }, + { + "name": "python3-slip-dbus", + "epoch": 0, + "version": "0.6.4", + "release": "11.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-slip-dbus-0.6.4-11.el8.noarch.rpm", + "checksum": "sha256:563b3741d26b6af963fdb7b0634e0791445a707d0b6093ac71c3224299241639", + "check_gpg": true + }, + { + "name": "python3-syspurpose", + "epoch": 0, + "version": "1.28.10", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/python3-syspurpose-1.28.10-1.el8.x86_64.rpm", + "checksum": "sha256:017e78c5e23f98d6ee299255fc7be5381dba63d169e3f5dcb1de9d21b5d30ba5", + "check_gpg": true + }, + { + "name": "rdma-core", + "epoch": 0, + "version": "32.0", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rdma-core-32.0-4.el8.x86_64.rpm", + "checksum": "sha256:f0be1adb083909deb8d19cf10622ed574fa8fe5c71b188707afe09f900122d66", + "check_gpg": true + }, + { + "name": "readline", + "epoch": 0, + "version": "7.0", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/readline-7.0-10.el8.x86_64.rpm", + "checksum": "sha256:fea868a7d82a7b6f392260ed4afb472dc4428fd71eab1456319f423a845b5084", + "check_gpg": true + }, + { + "name": "rootfiles", + "epoch": 0, + "version": "8.1", + "release": "22.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rootfiles-8.1-22.el8.noarch.rpm", + "checksum": "sha256:d967d6bbb33bf7a295a64807f81875c84e82a8ecc59b6c72fe955141b1660d39", + "check_gpg": true + }, + { + "name": "rpm", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:259dbc3a621b8de7cadd8fd6cd8e0f220d97cb9a4916658e3d0fc5e6e1e67e46", + "check_gpg": true + }, + { + "name": "rpm-build-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-build-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:c229bae7f328c56c35fb2b121fc4f8f6a48d735f9f76b304d36d512eacceb492", + "check_gpg": true + }, + { + "name": "rpm-libs", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-libs-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:7d84205383b216c828ab6ea03465bbeeb4c8764cab716eaf689df08e83178967", + "check_gpg": true + }, + { + "name": "rpm-plugin-selinux", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-selinux-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:5f6e5a2b16e44e3dd76414f20952dd42c9043d7a1e8b60215bdc01eba8541e34", + "check_gpg": true + }, + { + "name": "rpm-plugin-systemd-inhibit", + "epoch": 0, + "version": "4.14.3", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64.rpm", + "checksum": "sha256:8d41beffaddcde822bac41c7babd7fbfa30f1a4eec96d29c4ca1e0af3a8a82d8", + "check_gpg": true + }, + { + "name": "sed", + "epoch": 0, + "version": "4.5", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sed-4.5-2.el8.x86_64.rpm", + "checksum": "sha256:33aa5c86d596d06a2f199b65b61912cbd2c46c3923f13dadc6179650d45ba96c", + "check_gpg": true + }, + { + "name": "selinux-policy", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:49bac23267e89fa2997eb774963ee6c0de7f5559e3274f12273c5055a7efedfb", + "check_gpg": true + }, + { + "name": "selinux-policy-targeted", + "epoch": 0, + "version": "3.14.3", + "release": "62.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/selinux-policy-targeted-3.14.3-62.el8.noarch.rpm", + "checksum": "sha256:76ec83729292387b9747ae62c9cfc26cffc941bdc5f38199f929d2a305611b9f", + "check_gpg": true + }, + { + "name": "setup", + "epoch": 0, + "version": "2.12.2", + "release": "6.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/setup-2.12.2-6.el8.noarch.rpm", + "checksum": "sha256:9e540fe1fcf866ba1e738e012eef5459d34cca30385df73973e6fc7c6eadb55f", + "check_gpg": true + }, + { + "name": "sg3_utils", + "epoch": 0, + "version": "1.44", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-1.44-5.el8.x86_64.rpm", + "checksum": "sha256:a1d1bac6c4710e0a1a6e8a507b06a630dda6687f12642be0847768c14ce7271e", + "check_gpg": true + }, + { + "name": "sg3_utils-libs", + "epoch": 0, + "version": "1.44", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sg3_utils-libs-1.44-5.el8.x86_64.rpm", + "checksum": "sha256:774d214a379c0b729d7e989f9d5094fdfda7df68c1e792ba9200542032f04c91", + "check_gpg": true + }, + { + "name": "shadow-utils", + "epoch": 2, + "version": "4.6", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shadow-utils-4.6-12.el8.x86_64.rpm", + "checksum": "sha256:b08b48ebfeda6a49ead92cd0e57e589f09f1341a954d95f0d079bc8dabbf7f97", + "check_gpg": true + }, + { + "name": "shared-mime-info", + "epoch": 0, + "version": "1.9", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shared-mime-info-1.9-3.el8.x86_64.rpm", + "checksum": "sha256:3f3cced089849779b46d7b1f27ae1b73e0b1144eca15716e4c19e4b54bb16f6c", + "check_gpg": true + }, + { + "name": "shim-x64", + "epoch": 0, + "version": "15", + "release": "15.el8_2", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/shim-x64-15-15.el8_2.x86_64.rpm", + "checksum": "sha256:f0346c485da9a7e8c8d93624f335cbb25790a7f37c6c03e43232517bb73bbacb", + "check_gpg": true + }, + { + "name": "slang", + "epoch": 0, + "version": "2.3.2", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/slang-2.3.2-3.el8.x86_64.rpm", + "checksum": "sha256:be628d396303d6547b9d7239897fbf4fad7447375cb5e898b394a458f420b550", + "check_gpg": true + }, + { + "name": "snappy", + "epoch": 0, + "version": "1.1.8", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/snappy-1.1.8-3.el8.x86_64.rpm", + "checksum": "sha256:839c62cd7fc7e152decded6f28c80b5f7b8f34a5e319057867b38b26512cee67", + "check_gpg": true + }, + { + "name": "sqlite-libs", + "epoch": 0, + "version": "3.26.0", + "release": "13.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sqlite-libs-3.26.0-13.el8.x86_64.rpm", + "checksum": "sha256:6be6cccf4ade985fd18876ac10f1bbc4c6669a5534b7568efd5110138007d8c0", + "check_gpg": true + }, + { + "name": "squashfs-tools", + "epoch": 0, + "version": "4.3", + "release": "19.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/squashfs-tools-4.3-19.el8.x86_64.rpm", + "checksum": "sha256:a0c8f83cef355dd98d7750e3d8eb3e9f3e9f8f5e9a3ee441cb4bc4014c647e31", + "check_gpg": true + }, + { + "name": "sssd-client", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-client-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:b1871d8ac1abaf5e809448c5f37e32487f177aee3080d9033efb4b160f755aba", + "check_gpg": true + }, + { + "name": "sssd-common", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-common-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:fe944d9dd89d550d2aa44d33cfeb11c803b074bfcda0dbbad486c392bf1cc9d0", + "check_gpg": true + }, + { + "name": "sssd-kcm", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-kcm-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:6cd7444c22d56201f61fed5fd741b44cfaae18d95b811d25c5f0ffe2f8e55a8f", + "check_gpg": true + }, + { + "name": "sssd-nfs-idmap", + "epoch": 0, + "version": "2.4.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sssd-nfs-idmap-2.4.0-7.el8.x86_64.rpm", + "checksum": "sha256:7115a12fad224b469419e19ee5c0d38322f467fe7a1c441c1b0239b197baac2a", + "check_gpg": true + }, + { + "name": "sudo", + "epoch": 0, + "version": "1.8.29", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/sudo-1.8.29-7.el8.x86_64.rpm", + "checksum": "sha256:cbcade4487fbf372b487b9f82ed85e04ff037551c96c4b461abc3716338ff9c4", + "check_gpg": true + }, + { + "name": "systemd", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-239-44.el8.x86_64.rpm", + "checksum": "sha256:770f9af06b634056194700dd7a972881876c73dae78135a7724c0705ee097878", + "check_gpg": true + }, + { + "name": "systemd-libs", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-libs-239-44.el8.x86_64.rpm", + "checksum": "sha256:2f6a612561008f6272335861d844dddd639bf35544d990c45b6655deaa499356", + "check_gpg": true + }, + { + "name": "systemd-pam", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-pam-239-44.el8.x86_64.rpm", + "checksum": "sha256:ff32f548fcb51339449c2d8da9cebd9d478a5d604dc2e2d2723c919c5452f357", + "check_gpg": true + }, + { + "name": "systemd-udev", + "epoch": 0, + "version": "239", + "release": "44.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/systemd-udev-239-44.el8.x86_64.rpm", + "checksum": "sha256:8b6f9cc3f23657b7d8da46300132dc3e30b8f7ec736ade98fa9dbb3be89884ae", + "check_gpg": true + }, + { + "name": "tar", + "epoch": 2, + "version": "1.30", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tar-1.30-5.el8.x86_64.rpm", + "checksum": "sha256:ed1f7ab0225df75734034cb2aea426c48c089f2bd476ec66b66af879437c5393", + "check_gpg": true + }, + { + "name": "teamd", + "epoch": 0, + "version": "1.31", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/teamd-1.31-2.el8.x86_64.rpm", + "checksum": "sha256:9664aba8dfd6bd6fda669fcf8f6ff04914305a6373b09d8b675322c7337b9c36", + "check_gpg": true + }, + { + "name": "tpm2-tss", + "epoch": 0, + "version": "2.3.2", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tpm2-tss-2.3.2-3.el8.x86_64.rpm", + "checksum": "sha256:718ee3d5d9c88c4ef3f12d88d22776bf4cbe9c0da847f77fa7abaa4d3b36a955", + "check_gpg": true + }, + { + "name": "trousers", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:524d7475ccaead0c9b353535a1ca441a73ee465e35ea6f1c8833292af1967fc0", + "check_gpg": true + }, + { + "name": "trousers-lib", + "epoch": 0, + "version": "0.3.15", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/trousers-lib-0.3.15-1.el8.x86_64.rpm", + "checksum": "sha256:ff4c97e0df6ed6090ef36ac853e11bed9aa13f657be1d068ac09ad33c11432cb", + "check_gpg": true + }, + { + "name": "tuned", + "epoch": 0, + "version": "2.15.0", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tuned-2.15.0-1.el8.noarch.rpm", + "checksum": "sha256:b3bc3f1c9e8028a177599f1ed9cb6c31d2d6e75111e34623d25e736d3ddcf8fd", + "check_gpg": true + }, + { + "name": "tzdata", + "epoch": 0, + "version": "2021a", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/tzdata-2021a-1.el8.noarch.rpm", + "checksum": "sha256:44999c555a6e4bb6cf5e6f6a79819e76912d036732cb50efaeefc20a180dd839", + "check_gpg": true + }, + { + "name": "util-linux", + "epoch": 0, + "version": "2.32.1", + "release": "27.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/util-linux-2.32.1-27.el8.x86_64.rpm", + "checksum": "sha256:834faa7b0b9cf01104d6db17aa78159058742ba8a61911b608a1fe0b0762ff89", + "check_gpg": true + }, + { + "name": "vim-minimal", + "epoch": 2, + "version": "8.0.1763", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/vim-minimal-8.0.1763-15.el8.x86_64.rpm", + "checksum": "sha256:3efd6a2548813167fe37718546bc768a5aa8ba59aa80edcecd8ba408bec329b0", + "check_gpg": true + }, + { + "name": "virt-what", + "epoch": 0, + "version": "1.18", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/virt-what-1.18-6.el8.x86_64.rpm", + "checksum": "sha256:4c02e3e1808f0189269b242242468a364007a8f12c6e38afc24b599b2848b0fa", + "check_gpg": true + }, + { + "name": "which", + "epoch": 0, + "version": "2.21", + "release": "12.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/which-2.21-12.el8.x86_64.rpm", + "checksum": "sha256:ee0cbf18628358fcd8003364fd68edbd267342196139c7ee584eb56f2e01f5fc", + "check_gpg": true + }, + { + "name": "xfsprogs", + "epoch": 0, + "version": "5.0.0", + "release": "8.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xfsprogs-5.0.0-8.el8.x86_64.rpm", + "checksum": "sha256:a74ee16c89b9f988ffa00969e2fe5c737a27922e9a358fcb77a376dec3587db0", + "check_gpg": true + }, + { + "name": "xz", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:02f10beaf61212427e0cd57140d050948eea0b533cf432d7bc4c10266c8b33db", + "check_gpg": true + }, + { + "name": "xz-libs", + "epoch": 0, + "version": "5.2.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/xz-libs-5.2.4-3.el8.x86_64.rpm", + "checksum": "sha256:61553db2c5d1da168da53ec285de14d00ce91bb02dd902a1688725cf37a7b1a2", + "check_gpg": true + }, + { + "name": "yum", + "epoch": 0, + "version": "4.4.2", + "release": "5.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/yum-4.4.2-5.el8.noarch.rpm", + "checksum": "sha256:4302361b12eefd5574f57bf0c49c0e5bdc738eddda33634af8b35adfb53a52a1", + "check_gpg": true + }, + { + "name": "zlib", + "epoch": 0, + "version": "1.2.11", + "release": "17.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/Packages/zlib-1.2.11-17.el8.x86_64.rpm", + "checksum": "sha256:a604ffec838794e53b7721e4f113dbd780b5a0765f200df6c41ea19018fa7ea6", + "check_gpg": true + }, + { + "name": "geolite2-city", + "epoch": 0, + "version": "20180605", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-city-20180605-1.el8.noarch.rpm", + "checksum": "sha256:cad86777bcb265db0da766952ff63e8d33f0fd4f3b90b22d0a1da587a785db44", + "check_gpg": true + }, + { + "name": "geolite2-country", + "epoch": 0, + "version": "20180605", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/geolite2-country-20180605-1.el8.noarch.rpm", + "checksum": "sha256:67419432fe7d373f8e5ddaa7b0dd1c25389608bf2f4ee76dbabcc2d96eb8c9d0", + "check_gpg": true + }, + { + "name": "langpacks-en", + "epoch": 0, + "version": "1.0", + "release": "12.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/langpacks-en-1.0-12.el8.noarch.rpm", + "checksum": "sha256:c99db07c2548246f6b2ec98c1d2b536e40b2f4dbba39f3430044868a27985732", + "check_gpg": true + }, + { + "name": "libatasmart", + "epoch": 0, + "version": "0.19", + "release": "14.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libatasmart-0.19-14.el8.x86_64.rpm", + "checksum": "sha256:e1133a81512bfba8d4bf06bc12aafee7fe13d6319fc8690b81e6f46d978930eb", + "check_gpg": true + }, + { + "name": "libblockdev", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:3cf4fcd2fe43e6477d5f1c05167c669c247dcbeea1ab37bf3b7d42dcab482565", + "check_gpg": true + }, + { + "name": "libblockdev-crypto", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-crypto-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:226bb890cc85bfc60d874a9cb13cb7f7f1e90d90308c7726e25e14cee5487e66", + "check_gpg": true + }, + { + "name": "libblockdev-fs", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-fs-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:142c67cdc69366820a7fc7567e40567b545b52f279d1ff992e4787d3c1ea4956", + "check_gpg": true + }, + { + "name": "libblockdev-loop", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-loop-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:d29207af6ff12bec1a5b9712550f2faf7efbff75c597cc2e84b6c9d0dfe2de68", + "check_gpg": true + }, + { + "name": "libblockdev-mdraid", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-mdraid-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:ced1d02dd424b1d087347d452420e17ba83af2b926041c794471798dfa5f5868", + "check_gpg": true + }, + { + "name": "libblockdev-part", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-part-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:e308e1ebc85889742a002fd9892d71894fd6fae473320fbc7b1ffb94248602cd", + "check_gpg": true + }, + { + "name": "libblockdev-swap", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-swap-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:8d3bdefac6c0f39e66e092d62b37efa3076976ae66def1f9dd1f217022406efa", + "check_gpg": true + }, + { + "name": "libblockdev-utils", + "epoch": 0, + "version": "2.24", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libblockdev-utils-2.24-5.el8.x86_64.rpm", + "checksum": "sha256:be0181770c94141852b6bb618baf56e7b8df9f70524b0c2e0e391e550285231f", + "check_gpg": true + }, + { + "name": "libbytesize", + "epoch": 0, + "version": "1.4", + "release": "3.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libbytesize-1.4-3.el8.x86_64.rpm", + "checksum": "sha256:d1cc79976965be3fe769cb8c23a281064816eaa195caf6057b8d1da0e9ff7ae5", + "check_gpg": true + }, + { + "name": "libdrm", + "epoch": 0, + "version": "2.4.103", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libdrm-2.4.103-1.el8.x86_64.rpm", + "checksum": "sha256:42edf6b8e8be5e64f7e0f9714c5b199a364393c141cb170f6272ab2e9e0e4d88", + "check_gpg": true + }, + { + "name": "libestr", + "epoch": 0, + "version": "0.1.10", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libestr-0.1.10-1.el8.x86_64.rpm", + "checksum": "sha256:7bc2e2a25b04b52a4ec5de2858e75eb07f16495d4de5f7ce926777130302cfe3", + "check_gpg": true + }, + { + "name": "libfastjson", + "epoch": 0, + "version": "0.99.8", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libfastjson-0.99.8-2.el8.x86_64.rpm", + "checksum": "sha256:105beb1a237e66802e64e620f79b357dfc8f3bb8952ac2f293548f1d68ca40b1", + "check_gpg": true + }, + { + "name": "libmaxminddb", + "epoch": 0, + "version": "1.2.0", + "release": "10.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libmaxminddb-1.2.0-10.el8.x86_64.rpm", + "checksum": "sha256:19ca7ab9cb2e39ec452ed1424f828ec464266094e31903301680d5a5d0e2ac2c", + "check_gpg": true + }, + { + "name": "libmspack", + "epoch": 0, + "version": "0.7", + "release": "0.3.alpha.el8.4", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libmspack-0.7-0.3.alpha.el8.4.x86_64.rpm", + "checksum": "sha256:02598f73a65df569906ad68fc51e6e2525e35797c7e814fc6cf42b787f1d1389", + "check_gpg": true + }, + { + "name": "libudisks2", + "epoch": 0, + "version": "2.9.0", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libudisks2-2.9.0-6.el8.x86_64.rpm", + "checksum": "sha256:1824bc3233b76fabb2305d11bd9bc905cb8e8d7f44006f253164b64808be4b39", + "check_gpg": true + }, + { + "name": "libxkbcommon", + "epoch": 0, + "version": "0.9.1", + "release": "1.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/libxkbcommon-0.9.1-1.el8.x86_64.rpm", + "checksum": "sha256:e03d462995326a4477dcebc8c12eae3c1776ce2f095617ace253c0c492c89082", + "check_gpg": true + }, + { + "name": "nspr", + "epoch": 0, + "version": "4.25.0", + "release": "2.el8_2", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nspr-4.25.0-2.el8_2.x86_64.rpm", + "checksum": "sha256:34321e09964f724b712ed709115f794b1953f4a4d472d655bec0993d27c51a22", + "check_gpg": true + }, + { + "name": "nss", + "epoch": 0, + "version": "3.53.1", + "release": "17.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-3.53.1-17.el8_3.x86_64.rpm", + "checksum": "sha256:c11eba3a7ae0ee7ceaea4bbf78edf9a1c3c5d9629b3f40167f5fb8004b2c19a0", + "check_gpg": true + }, + { + "name": "nss-softokn", + "epoch": 0, + "version": "3.53.1", + "release": "17.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-softokn-3.53.1-17.el8_3.x86_64.rpm", + "checksum": "sha256:2e0b39dbf3b7e68a06f321a04797d4e521b9b484ffc8d6d53f7662613e077065", + "check_gpg": true + }, + { + "name": "nss-softokn-freebl", + "epoch": 0, + "version": "3.53.1", + "release": "17.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-softokn-freebl-3.53.1-17.el8_3.x86_64.rpm", + "checksum": "sha256:cff4bc30873c62698e4bc2f519bb0aa6814534d7ce99f1ba757dd345b881505f", + "check_gpg": true + }, + { + "name": "nss-sysinit", + "epoch": 0, + "version": "3.53.1", + "release": "17.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-sysinit-3.53.1-17.el8_3.x86_64.rpm", + "checksum": "sha256:71fbed9d1b1f6965b42a5c87c98732bed84a8a2efb43c2218b4d1c59e9eaf190", + "check_gpg": true + }, + { + "name": "nss-util", + "epoch": 0, + "version": "3.53.1", + "release": "17.el8_3", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/nss-util-3.53.1-17.el8_3.x86_64.rpm", + "checksum": "sha256:947fee92d0c147d832bbb3ab53e0b96817d03c38260429a4ff01856324b160da", + "check_gpg": true + }, + { + "name": "open-vm-tools", + "epoch": 0, + "version": "11.2.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/open-vm-tools-11.2.0-2.el8.x86_64.rpm", + "checksum": "sha256:75f95d532446862a2e3b03840135698df48a216359265b19449ed4aa9c8c9c11", + "check_gpg": true + }, + { + "name": "pinentry", + "epoch": 0, + "version": "1.1.0", + "release": "2.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/pinentry-1.1.0-2.el8.x86_64.rpm", + "checksum": "sha256:9a6e8072669988348eb5bc011ea2173a5d5fb2b2247f5889bd610d20f1bf8d29", + "check_gpg": true + }, + { + "name": "plymouth", + "epoch": 0, + "version": "0.9.4", + "release": "9.20200615git1e36e30.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/plymouth-0.9.4-9.20200615git1e36e30.el8.x86_64.rpm", + "checksum": "sha256:8e4f8fed6f2fdf05e85fc84023778dbf23e09f1dc2f6a0940860886d3f59831b", + "check_gpg": true + }, + { + "name": "plymouth-core-libs", + "epoch": 0, + "version": "0.9.4", + "release": "9.20200615git1e36e30.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/plymouth-core-libs-0.9.4-9.20200615git1e36e30.el8.x86_64.rpm", + "checksum": "sha256:44c659fb58e1ee64f5d77b35459dc43a0fded79c8a6e2278a2c9c71461792ff1", + "check_gpg": true + }, + { + "name": "plymouth-scripts", + "epoch": 0, + "version": "0.9.4", + "release": "9.20200615git1e36e30.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/plymouth-scripts-0.9.4-9.20200615git1e36e30.el8.x86_64.rpm", + "checksum": "sha256:bfbd05db004755c45f7ec31be67b02d9c7fa0c9b1bb060bb2ffe85b3f2b5d811", + "check_gpg": true + }, + { + "name": "python3-unbound", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/python3-unbound-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:9391e15a71ee4221eabb5785b41a287ec89d3f2f93fcef6a8833b2ba7fd90767", + "check_gpg": true + }, + { + "name": "rsyslog", + "epoch": 0, + "version": "8.1911.0", + "release": "7.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/rsyslog-8.1911.0-7.el8.x86_64.rpm", + "checksum": "sha256:ca82090f18d47e454cc512e832bf3ec771edf65299e3c1d56d5df9fab0428869", + "check_gpg": true + }, + { + "name": "udisks2", + "epoch": 0, + "version": "2.9.0", + "release": "6.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/udisks2-2.9.0-6.el8.x86_64.rpm", + "checksum": "sha256:98f622a37cb22857fdce63d8c97d9711c74cdbd3451e588e2b519532db55a5a2", + "check_gpg": true + }, + { + "name": "unbound-libs", + "epoch": 0, + "version": "1.7.3", + "release": "15.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/unbound-libs-1.7.3-15.el8.x86_64.rpm", + "checksum": "sha256:480cdf501cfebfa131a24351711b265744e11340292490084dd4d6a27b6995dd", + "check_gpg": true + }, + { + "name": "volume_key-libs", + "epoch": 0, + "version": "0.3.11", + "release": "5.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/volume_key-libs-0.3.11-5.el8.x86_64.rpm", + "checksum": "sha256:5c0cf0adf7a3ad24ddde58f298ebf4ce741bccdfc8eff0103644115c837f80d6", + "check_gpg": true + }, + { + "name": "xkeyboard-config", + "epoch": 0, + "version": "2.28", + "release": "1.el8", + "arch": "noarch", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xkeyboard-config-2.28-1.el8.noarch.rpm", + "checksum": "sha256:a2aeabb3962859069a78acc288bc3bffb35485428e162caafec8134f5ce6ca67", + "check_gpg": true + }, + { + "name": "xmlsec1", + "epoch": 0, + "version": "1.2.25", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xmlsec1-1.2.25-4.el8.x86_64.rpm", + "checksum": "sha256:7dbe1fb48dad46fe75609974503f5647b644a9dc2c88b785aabd83b4eda0b881", + "check_gpg": true + }, + { + "name": "xmlsec1-openssl", + "epoch": 0, + "version": "1.2.25", + "release": "4.el8", + "arch": "x86_64", + "remote_location": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/Packages/xmlsec1-openssl-1.2.25-4.el8.x86_64.rpm", + "checksum": "sha256:9ed3ad948a0dada7710d4b8b2053d4716dc0754f5648a74f4d78b59b737529dc", + "check_gpg": true + } + ], + "checksums": { + "0": "sha256:06fa6273454f85c58ca743a0ef0202bed4cac267393049dc447839cdb39f4a54", + "1": "sha256:5b16e44261a7beffd5d7bf961fe269da407bd57abb1faac407c46a81969dfd63" + } + }, + "image-info": { + "boot-environment": { + "kernelopts": "root=UUID=0194fdc2-fa2f-4cc0-81d3-ff12045b73c8 ro net.ifnames=0" + }, + "bootloader": "grub", + "bootmenu": [ + { + "grub_arg": "--unrestricted", + "grub_class": "kernel", + "grub_users": "$grub_users", + "id": "centos-20210203204355-4.18.0-277.el8.x86_64", + "initrd": "/boot/initramfs-4.18.0-277.el8.x86_64.img $tuned_initrd", + "linux": "/boot/vmlinuz-4.18.0-277.el8.x86_64", + "options": "$kernelopts $tuned_params", + "title": "CentOS Stream (4.18.0-277.el8.x86_64) 8", + "version": "4.18.0-277.el8.x86_64" + } + ], + "default-target": "graphical.target", + "firewall-enabled": [ + "ssh", + "dhcpv6-client", + "cockpit" + ], + "fstab": [ + [ + "UUID=0194fdc2-fa2f-4cc0-81d3-ff12045b73c8", + "/", + "xfs", + "defaults", + "0", + "0" + ], + [ + "UUID=7B77-95E7", + "/boot/efi", + "vfat", + "defaults,uid=0,gid=0,umask=077,shortname=winnt", + "0", + "2" + ] + ], + "groups": [ + "adm:x:4:", + "audio:x:63:", + "bin:x:1:", + "cdrom:x:11:", + "chrony:x:992:", + "daemon:x:2:", + "dbus:x:81:", + "dialout:x:18:", + "disk:x:6:", + "floppy:x:19:", + "ftp:x:50:", + "games:x:20:", + "input:x:999:", + "kmem:x:9:", + "kvm:x:36:", + "lock:x:54:", + "lp:x:7:", + "mail:x:12:", + "man:x:15:", + "mem:x:8:", + "nobody:x:65534:", + "polkitd:x:996:", + "redhat:x:1000:", + "render:x:998:", + "root:x:0:", + "ssh_keys:x:995:", + "sshd:x:74:", + "sssd:x:993:", + "sys:x:3:", + "systemd-coredump:x:997:", + "systemd-journal:x:190:", + "systemd-resolve:x:193:", + "tape:x:33:", + "tss:x:59:", + "tty:x:5:", + "unbound:x:994:", + "users:x:100:", + "utempter:x:35:", + "utmp:x:22:", + "video:x:39:", + "wheel:x:10:" + ], + "image-format": "vmdk", + "os-release": { + "ANSI_COLOR": "0;31", + "BUG_REPORT_URL": "https://bugzilla.redhat.com/", + "CPE_NAME": "cpe:/o:centos:centos:8", + "HOME_URL": "https://centos.org/", + "ID": "centos", + "ID_LIKE": "rhel fedora", + "NAME": "CentOS Stream", + "PLATFORM_ID": "platform:el8", + "PRETTY_NAME": "CentOS Stream 8", + "REDHAT_SUPPORT_PRODUCT": "Red Hat Enterprise Linux 8", + "REDHAT_SUPPORT_PRODUCT_VERSION": "CentOS Stream", + "VERSION": "8", + "VERSION_ID": "8" + }, + "packages": [ + "ModemManager-glib-1.10.8-2.el8.x86_64", + "NetworkManager-1.30.0-0.9.el8.x86_64", + "NetworkManager-libnm-1.30.0-0.9.el8.x86_64", + "NetworkManager-team-1.30.0-0.9.el8.x86_64", + "NetworkManager-tui-1.30.0-0.9.el8.x86_64", + "acl-2.2.53-1.el8.x86_64", + "audit-3.0-0.17.20191104git1c2f876.el8.x86_64", + "audit-libs-3.0-0.17.20191104git1c2f876.el8.x86_64", + "authselect-1.2.2-1.el8.x86_64", + "authselect-libs-1.2.2-1.el8.x86_64", + "basesystem-11-5.el8.noarch", + "bash-4.4.19-14.el8.x86_64", + "bind-export-libs-9.11.26-2.el8.x86_64", + "biosdevname-0.7.3-2.el8.x86_64", + "brotli-1.0.6-3.el8.x86_64", + "bubblewrap-0.4.0-1.el8.x86_64", + "bzip2-libs-1.0.6-26.el8.x86_64", + "c-ares-1.13.0-5.el8.x86_64", + "ca-certificates-2020.2.41-80.0.el8_2.noarch", + "centos-gpg-keys-8-2.el8.noarch", + "centos-stream-release-8.4-1.el8.noarch", + "centos-stream-repos-8-2.el8.noarch", + "chkconfig-1.13-2.el8.x86_64", + "chrony-3.5-1.el8.x86_64", + "coreutils-8.30-8.el8.x86_64", + "coreutils-common-8.30-8.el8.x86_64", + "cpio-2.12-10.el8.x86_64", + "cracklib-2.9.6-15.el8.x86_64", + "cracklib-dicts-2.9.6-15.el8.x86_64", + "cronie-1.5.2-4.el8.x86_64", + "cronie-anacron-1.5.2-4.el8.x86_64", + "crontabs-1.11-17.20190603git.el8.noarch", + "crypto-policies-20200713-1.git51d1222.el8.noarch", + "crypto-policies-scripts-20200713-1.git51d1222.el8.noarch", + "cryptsetup-libs-2.3.3-2.el8.x86_64", + "curl-7.61.1-18.el8.x86_64", + "cyrus-sasl-lib-2.1.27-5.el8.x86_64", + "dbus-1.12.8-12.el8.x86_64", + "dbus-common-1.12.8-12.el8.noarch", + "dbus-daemon-1.12.8-12.el8.x86_64", + "dbus-glib-0.110-2.el8.x86_64", + "dbus-libs-1.12.8-12.el8.x86_64", + "dbus-tools-1.12.8-12.el8.x86_64", + "device-mapper-1.02.175-3.el8.x86_64", + "device-mapper-libs-1.02.175-3.el8.x86_64", + "dhcp-client-4.3.6-44.0.1.el8.x86_64", + "dhcp-common-4.3.6-44.0.1.el8.noarch", + "dhcp-libs-4.3.6-44.0.1.el8.x86_64", + "diffutils-3.6-6.el8.x86_64", + "dmidecode-3.2-8.el8.x86_64", + "dnf-4.4.2-5.el8.noarch", + "dnf-data-4.4.2-5.el8.noarch", + "dnf-plugins-core-4.0.18-3.el8.noarch", + "dosfstools-4.1-6.el8.x86_64", + "dracut-049-133.git20210112.el8.x86_64", + "dracut-config-generic-049-133.git20210112.el8.x86_64", + "dracut-network-049-133.git20210112.el8.x86_64", + "dracut-squash-049-133.git20210112.el8.x86_64", + "e2fsprogs-1.45.6-1.el8.x86_64", + "e2fsprogs-libs-1.45.6-1.el8.x86_64", + "efi-filesystem-3-3.el8.noarch", + "efivar-libs-37-4.el8.x86_64", + "elfutils-debuginfod-client-0.182-3.el8.x86_64", + "elfutils-default-yama-scope-0.182-3.el8.noarch", + "elfutils-libelf-0.182-3.el8.x86_64", + "elfutils-libs-0.182-3.el8.x86_64", + "ethtool-5.8-5.el8.x86_64", + "expat-2.2.5-4.el8.x86_64", + "file-5.33-16.el8.x86_64", + "file-libs-5.33-16.el8.x86_64", + "filesystem-3.8-4.el8.x86_64", + "findutils-4.6.0-20.el8.x86_64", + "firewalld-0.8.2-6.el8.noarch", + "firewalld-filesystem-0.8.2-6.el8.noarch", + "freetype-2.9.1-5.el8.x86_64", + "fuse-2.9.7-12.el8.x86_64", + "fuse-common-3.2.1-12.el8.x86_64", + "fuse-libs-2.9.7-12.el8.x86_64", + "fwupd-1.5.5-1.el8.x86_64", + "gawk-4.2.1-2.el8.x86_64", + "gdbm-1.18-1.el8.x86_64", + "gdbm-libs-1.18-1.el8.x86_64", + "gdisk-1.0.3-6.el8.x86_64", + "geolite2-city-20180605-1.el8.noarch", + "geolite2-country-20180605-1.el8.noarch", + "gettext-0.19.8.1-17.el8.x86_64", + "gettext-libs-0.19.8.1-17.el8.x86_64", + "glib2-2.56.4-9.el8.x86_64", + "glibc-2.28-147.el8.x86_64", + "glibc-common-2.28-147.el8.x86_64", + "glibc-langpack-en-2.28-147.el8.x86_64", + "gmp-6.1.2-10.el8.x86_64", + "gnupg2-2.2.20-2.el8.x86_64", + "gnupg2-smime-2.2.20-2.el8.x86_64", + "gnutls-3.6.14-7.el8_3.x86_64", + "gobject-introspection-1.56.1-1.el8.x86_64", + "gpg-pubkey-8483c65d-5ccc5b19", + "gpgme-1.13.1-7.el8.x86_64", + "grep-3.1-6.el8.x86_64", + "groff-base-1.22.3-18.el8.x86_64", + "grub2-common-2.02-93.el8.noarch", + "grub2-efi-x64-2.02-93.el8.x86_64", + "grub2-pc-2.02-93.el8.x86_64", + "grub2-pc-modules-2.02-93.el8.noarch", + "grub2-tools-2.02-93.el8.x86_64", + "grub2-tools-extra-2.02-93.el8.x86_64", + "grub2-tools-minimal-2.02-93.el8.x86_64", + "grubby-8.40-41.el8.x86_64", + "gzip-1.9-12.el8.x86_64", + "hardlink-1.3-6.el8.x86_64", + "hdparm-9.54-3.el8.x86_64", + "hostname-3.20-6.el8.x86_64", + "hwdata-0.314-8.7.el8.noarch", + "ima-evm-utils-1.3.2-11.el8.x86_64", + "info-6.5-6.el8.x86_64", + "initscripts-10.00.12-1.el8.x86_64", + "ipcalc-0.2.4-4.el8.x86_64", + "iproute-5.9.0-2.el8.x86_64", + "iprutils-2.4.19-1.el8.x86_64", + "ipset-7.1-1.el8.x86_64", + "ipset-libs-7.1-1.el8.x86_64", + "iptables-1.8.4-17.el8.x86_64", + "iptables-ebtables-1.8.4-17.el8.x86_64", + "iptables-libs-1.8.4-17.el8.x86_64", + "iputils-20180629-6.el8.x86_64", + "irqbalance-1.4.0-6.el8.x86_64", + "iwl100-firmware-39.31.5.1-102.el8.1.noarch", + "iwl1000-firmware-39.31.5.1-102.el8.1.noarch", + "iwl105-firmware-18.168.6.1-102.el8.1.noarch", + "iwl135-firmware-18.168.6.1-102.el8.1.noarch", + "iwl2000-firmware-18.168.6.1-102.el8.1.noarch", + "iwl2030-firmware-18.168.6.1-102.el8.1.noarch", + "iwl3160-firmware-25.30.13.0-102.el8.1.noarch", + "iwl5000-firmware-8.83.5.1_1-102.el8.1.noarch", + "iwl5150-firmware-8.24.2.2-102.el8.1.noarch", + "iwl6000-firmware-9.221.4.1-102.el8.1.noarch", + "iwl6000g2a-firmware-18.168.6.1-102.el8.1.noarch", + "iwl6050-firmware-41.28.5.1-102.el8.1.noarch", + "iwl7260-firmware-25.30.13.0-102.el8.1.noarch", + "jansson-2.11-3.el8.x86_64", + "json-c-0.13.1-0.4.el8.x86_64", + "json-glib-1.4.4-1.el8.x86_64", + "kbd-2.0.4-10.el8.x86_64", + "kbd-legacy-2.0.4-10.el8.noarch", + "kbd-misc-2.0.4-10.el8.noarch", + "kernel-4.18.0-277.el8.x86_64", + "kernel-core-4.18.0-277.el8.x86_64", + "kernel-modules-4.18.0-277.el8.x86_64", + "kernel-tools-4.18.0-277.el8.x86_64", + "kernel-tools-libs-4.18.0-277.el8.x86_64", + "kexec-tools-2.0.20-45.el8.x86_64", + "keyutils-libs-1.5.10-6.el8.x86_64", + "kmod-25-17.el8.x86_64", + "kmod-libs-25-17.el8.x86_64", + "kpartx-0.8.4-8.el8.x86_64", + "krb5-libs-1.18.2-8.el8.x86_64", + "langpacks-en-1.0-12.el8.noarch", + "less-530-1.el8.x86_64", + "libacl-2.2.53-1.el8.x86_64", + "libarchive-3.3.3-1.el8.x86_64", + "libassuan-2.5.1-3.el8.x86_64", + "libatasmart-0.19-14.el8.x86_64", + "libattr-2.4.48-3.el8.x86_64", + "libbasicobjects-0.1.1-39.el8.x86_64", + "libblkid-2.32.1-27.el8.x86_64", + "libblockdev-2.24-5.el8.x86_64", + "libblockdev-crypto-2.24-5.el8.x86_64", + "libblockdev-fs-2.24-5.el8.x86_64", + "libblockdev-loop-2.24-5.el8.x86_64", + "libblockdev-mdraid-2.24-5.el8.x86_64", + "libblockdev-part-2.24-5.el8.x86_64", + "libblockdev-swap-2.24-5.el8.x86_64", + "libblockdev-utils-2.24-5.el8.x86_64", + "libbytesize-1.4-3.el8.x86_64", + "libcap-2.26-4.el8.x86_64", + "libcap-ng-0.7.9-5.el8.x86_64", + "libcollection-0.7.0-39.el8.x86_64", + "libcom_err-1.45.6-1.el8.x86_64", + "libcomps-0.1.11-5.el8.x86_64", + "libcroco-0.6.12-4.el8_2.1.x86_64", + "libcurl-7.61.1-18.el8.x86_64", + "libdaemon-0.14-15.el8.x86_64", + "libdb-5.3.28-40.el8.x86_64", + "libdb-utils-5.3.28-40.el8.x86_64", + "libdhash-0.5.0-39.el8.x86_64", + "libdnf-0.55.0-2.el8.x86_64", + "libdrm-2.4.103-1.el8.x86_64", + "libedit-3.1-23.20170329cvs.el8.x86_64", + "libestr-0.1.10-1.el8.x86_64", + "libevent-2.1.8-5.el8.x86_64", + "libfastjson-0.99.8-2.el8.x86_64", + "libfdisk-2.32.1-27.el8.x86_64", + "libffi-3.1-22.el8.x86_64", + "libgcab1-1.1-1.el8.x86_64", + "libgcc-8.4.1-1.el8.x86_64", + "libgcrypt-1.8.5-4.el8.x86_64", + "libgomp-8.4.1-1.el8.x86_64", + "libgpg-error-1.31-1.el8.x86_64", + "libgudev-232-4.el8.x86_64", + "libgusb-0.3.0-1.el8.x86_64", + "libibverbs-32.0-4.el8.x86_64", + "libidn2-2.2.0-1.el8.x86_64", + "libini_config-1.3.1-39.el8.x86_64", + "libkcapi-1.2.0-2.el8.x86_64", + "libkcapi-hmaccalc-1.2.0-2.el8.x86_64", + "libksba-1.3.5-7.el8.x86_64", + "libldb-2.2.0-1.el8.x86_64", + "libmaxminddb-1.2.0-10.el8.x86_64", + "libmbim-1.20.2-1.el8.x86_64", + "libmetalink-0.1.3-7.el8.x86_64", + "libmnl-1.0.4-6.el8.x86_64", + "libmodulemd-2.9.4-2.el8.x86_64", + "libmount-2.32.1-27.el8.x86_64", + "libmspack-0.7-0.3.alpha.el8.4.x86_64", + "libndp-1.7-3.el8.x86_64", + "libnetfilter_conntrack-1.0.6-5.el8.x86_64", + "libnfnetlink-1.0.1-13.el8.x86_64", + "libnfsidmap-2.3.3-41.el8.x86_64", + "libnftnl-1.1.5-4.el8.x86_64", + "libnghttp2-1.33.0-3.el8_2.1.x86_64", + "libnl3-3.5.0-1.el8.x86_64", + "libnl3-cli-3.5.0-1.el8.x86_64", + "libnsl2-1.2.0-2.20180605git4a062cf.el8.x86_64", + "libpath_utils-0.2.1-39.el8.x86_64", + "libpcap-1.9.1-5.el8.x86_64", + "libpciaccess-0.14-1.el8.x86_64", + "libpipeline-1.5.0-2.el8.x86_64", + "libpng-1.6.34-5.el8.x86_64", + "libpsl-0.20.2-6.el8.x86_64", + "libpwquality-1.4.4-1.el8.x86_64", + "libqmi-1.24.0-1.el8.x86_64", + "libref_array-0.1.5-39.el8.x86_64", + "librepo-1.12.0-3.el8.x86_64", + "libreport-filesystem-2.9.5-15.el8.x86_64", + "libseccomp-2.4.3-1.el8.x86_64", + "libsecret-0.18.6-1.el8.x86_64", + "libselinux-2.9-5.el8.x86_64", + "libselinux-utils-2.9-5.el8.x86_64", + "libsemanage-2.9-6.el8.x86_64", + "libsepol-2.9-2.el8.x86_64", + "libsigsegv-2.11-5.el8.x86_64", + "libsmartcols-2.32.1-27.el8.x86_64", + "libsmbios-2.4.1-2.el8.x86_64", + "libsolv-0.7.16-2.el8.x86_64", + "libss-1.45.6-1.el8.x86_64", + "libssh-0.9.4-2.el8.x86_64", + "libssh-config-0.9.4-2.el8.noarch", + "libsss_autofs-2.4.0-7.el8.x86_64", + "libsss_certmap-2.4.0-7.el8.x86_64", + "libsss_idmap-2.4.0-7.el8.x86_64", + "libsss_nss_idmap-2.4.0-7.el8.x86_64", + "libsss_sudo-2.4.0-7.el8.x86_64", + "libstdc++-8.4.1-1.el8.x86_64", + "libsysfs-2.1.0-24.el8.x86_64", + "libtalloc-2.3.1-2.el8.x86_64", + "libtasn1-4.13-3.el8.x86_64", + "libtdb-1.4.3-1.el8.x86_64", + "libteam-1.31-2.el8.x86_64", + "libtevent-0.10.2-2.el8.x86_64", + "libtirpc-1.1.4-4.el8.x86_64", + "libtool-ltdl-2.4.6-25.el8.x86_64", + "libudisks2-2.9.0-6.el8.x86_64", + "libunistring-0.9.9-3.el8.x86_64", + "libusbx-1.0.23-4.el8.x86_64", + "libuser-0.62-23.el8.x86_64", + "libutempter-1.1.6-14.el8.x86_64", + "libuuid-2.32.1-27.el8.x86_64", + "libverto-0.3.0-5.el8.x86_64", + "libxcrypt-4.1.1-4.el8.x86_64", + "libxkbcommon-0.9.1-1.el8.x86_64", + "libxml2-2.9.7-9.el8.x86_64", + "libxmlb-0.1.15-1.el8.x86_64", + "libxslt-1.1.32-6.el8.x86_64", + "libyaml-0.1.7-5.el8.x86_64", + "libzstd-1.4.4-1.el8.x86_64", + "linux-firmware-20201218-102.git05789708.el8.noarch", + "lmdb-libs-0.9.24-1.el8.x86_64", + "logrotate-3.14.0-4.el8.x86_64", + "lshw-B.02.19.2-5.el8.x86_64", + "lsscsi-0.32-2.el8.x86_64", + "lua-libs-5.3.4-11.el8.x86_64", + "lz4-libs-1.8.3-2.el8.x86_64", + "lzo-2.08-14.el8.x86_64", + "man-db-2.7.6.1-17.el8.x86_64", + "mdadm-4.1-15.el8.x86_64", + "memstrack-0.1.11-1.el8.x86_64", + "microcode_ctl-20201112-2.el8.x86_64", + "mokutil-0.3.0-11.el8.x86_64", + "mozjs60-60.9.0-4.el8.x86_64", + "mpfr-3.1.6-1.el8.x86_64", + "ncurses-6.1-7.20180224.el8.x86_64", + "ncurses-base-6.1-7.20180224.el8.noarch", + "ncurses-libs-6.1-7.20180224.el8.x86_64", + "nettle-3.4.1-2.el8.x86_64", + "newt-0.52.20-11.el8.x86_64", + "nftables-0.9.3-17.el8.x86_64", + "npth-1.5-4.el8.x86_64", + "nspr-4.25.0-2.el8_2.x86_64", + "nss-3.53.1-17.el8_3.x86_64", + "nss-softokn-3.53.1-17.el8_3.x86_64", + "nss-softokn-freebl-3.53.1-17.el8_3.x86_64", + "nss-sysinit-3.53.1-17.el8_3.x86_64", + "nss-util-3.53.1-17.el8_3.x86_64", + "numactl-libs-2.0.12-11.el8.x86_64", + "open-vm-tools-11.2.0-2.el8.x86_64", + "openldap-2.4.46-16.el8.x86_64", + "openssh-8.0p1-5.el8.x86_64", + "openssh-clients-8.0p1-5.el8.x86_64", + "openssh-server-8.0p1-5.el8.x86_64", + "openssl-1.1.1g-12.el8_3.x86_64", + "openssl-libs-1.1.1g-12.el8_3.x86_64", + "openssl-pkcs11-0.4.10-2.el8.x86_64", + "os-prober-1.74-6.el8.x86_64", + "p11-kit-0.23.22-1.el8.x86_64", + "p11-kit-trust-0.23.22-1.el8.x86_64", + "pam-1.3.1-14.el8.x86_64", + "parted-3.2-38.el8.x86_64", + "passwd-0.80-3.el8.x86_64", + "pciutils-3.7.0-1.el8.x86_64", + "pciutils-libs-3.7.0-1.el8.x86_64", + "pcre-8.42-4.el8.x86_64", + "pcre2-10.32-2.el8.x86_64", + "pigz-2.4-4.el8.x86_64", + "pinentry-1.1.0-2.el8.x86_64", + "platform-python-3.6.8-36.el8.x86_64", + "platform-python-pip-9.0.3-19.el8.noarch", + "platform-python-setuptools-39.2.0-6.el8.noarch", + "plymouth-0.9.4-9.20200615git1e36e30.el8.x86_64", + "plymouth-core-libs-0.9.4-9.20200615git1e36e30.el8.x86_64", + "plymouth-scripts-0.9.4-9.20200615git1e36e30.el8.x86_64", + "policycoreutils-2.9-12.el8.x86_64", + "polkit-0.115-11.el8.x86_64", + "polkit-libs-0.115-11.el8.x86_64", + "polkit-pkla-compat-0.1-12.el8.x86_64", + "popt-1.18-1.el8.x86_64", + "prefixdevname-0.1.0-6.el8.x86_64", + "procps-ng-3.3.15-6.el8.x86_64", + "publicsuffix-list-dafsa-20180723-1.el8.noarch", + "python3-configobj-5.0.6-11.el8.noarch", + "python3-dateutil-2.6.1-6.el8.noarch", + "python3-dbus-1.2.4-15.el8.x86_64", + "python3-decorator-4.2.1-2.el8.noarch", + "python3-dnf-4.4.2-5.el8.noarch", + "python3-dnf-plugins-core-4.0.18-3.el8.noarch", + "python3-firewall-0.8.2-6.el8.noarch", + "python3-gobject-base-3.28.3-2.el8.x86_64", + "python3-gpg-1.13.1-7.el8.x86_64", + "python3-hawkey-0.55.0-2.el8.x86_64", + "python3-libcomps-0.1.11-5.el8.x86_64", + "python3-libdnf-0.55.0-2.el8.x86_64", + "python3-libs-3.6.8-36.el8.x86_64", + "python3-libselinux-2.9-5.el8.x86_64", + "python3-linux-procfs-0.6.3-1.el8.noarch", + "python3-nftables-0.9.3-17.el8.x86_64", + "python3-perf-4.18.0-277.el8.x86_64", + "python3-pip-wheel-9.0.3-19.el8.noarch", + "python3-pyudev-0.21.0-7.el8.noarch", + "python3-rpm-4.14.3-10.el8.x86_64", + "python3-schedutils-0.6-6.el8.x86_64", + "python3-setuptools-wheel-39.2.0-6.el8.noarch", + "python3-six-1.11.0-8.el8.noarch", + "python3-slip-0.6.4-11.el8.noarch", + "python3-slip-dbus-0.6.4-11.el8.noarch", + "python3-syspurpose-1.28.10-1.el8.x86_64", + "python3-unbound-1.7.3-15.el8.x86_64", + "rdma-core-32.0-4.el8.x86_64", + "readline-7.0-10.el8.x86_64", + "rootfiles-8.1-22.el8.noarch", + "rpm-4.14.3-10.el8.x86_64", + "rpm-build-libs-4.14.3-10.el8.x86_64", + "rpm-libs-4.14.3-10.el8.x86_64", + "rpm-plugin-selinux-4.14.3-10.el8.x86_64", + "rpm-plugin-systemd-inhibit-4.14.3-10.el8.x86_64", + "rsyslog-8.1911.0-7.el8.x86_64", + "sed-4.5-2.el8.x86_64", + "selinux-policy-3.14.3-62.el8.noarch", + "selinux-policy-targeted-3.14.3-62.el8.noarch", + "setup-2.12.2-6.el8.noarch", + "sg3_utils-1.44-5.el8.x86_64", + "sg3_utils-libs-1.44-5.el8.x86_64", + "shadow-utils-4.6-12.el8.x86_64", + "shared-mime-info-1.9-3.el8.x86_64", + "shim-x64-15-15.el8_2.x86_64", + "slang-2.3.2-3.el8.x86_64", + "snappy-1.1.8-3.el8.x86_64", + "sqlite-libs-3.26.0-13.el8.x86_64", + "squashfs-tools-4.3-19.el8.x86_64", + "sssd-client-2.4.0-7.el8.x86_64", + "sssd-common-2.4.0-7.el8.x86_64", + "sssd-kcm-2.4.0-7.el8.x86_64", + "sssd-nfs-idmap-2.4.0-7.el8.x86_64", + "sudo-1.8.29-7.el8.x86_64", + "systemd-239-44.el8.x86_64", + "systemd-libs-239-44.el8.x86_64", + "systemd-pam-239-44.el8.x86_64", + "systemd-udev-239-44.el8.x86_64", + "tar-1.30-5.el8.x86_64", + "teamd-1.31-2.el8.x86_64", + "tpm2-tss-2.3.2-3.el8.x86_64", + "trousers-0.3.15-1.el8.x86_64", + "trousers-lib-0.3.15-1.el8.x86_64", + "tuned-2.15.0-1.el8.noarch", + "tzdata-2021a-1.el8.noarch", + "udisks2-2.9.0-6.el8.x86_64", + "unbound-libs-1.7.3-15.el8.x86_64", + "util-linux-2.32.1-27.el8.x86_64", + "vim-minimal-8.0.1763-15.el8.x86_64", + "virt-what-1.18-6.el8.x86_64", + "volume_key-libs-0.3.11-5.el8.x86_64", + "which-2.21-12.el8.x86_64", + "xfsprogs-5.0.0-8.el8.x86_64", + "xkeyboard-config-2.28-1.el8.noarch", + "xmlsec1-1.2.25-4.el8.x86_64", + "xmlsec1-openssl-1.2.25-4.el8.x86_64", + "xz-5.2.4-3.el8.x86_64", + "xz-libs-5.2.4-3.el8.x86_64", + "yum-4.4.2-5.el8.noarch", + "zlib-1.2.11-17.el8.x86_64" + ], + "partition-table": "gpt", + "partition-table-id": "D209C89E-EA5E-4FBD-B161-B461CCE297E0", + "partitions": [ + { + "bootable": false, + "fstype": null, + "label": null, + "partuuid": "FAC7F1FB-3E8D-4137-A512-961DE09A5549", + "size": 1048576, + "start": 1048576, + "type": "21686148-6449-6E6F-744E-656564454649", + "uuid": null + }, + { + "bootable": false, + "fstype": "vfat", + "label": null, + "partuuid": "68B2905B-DF3E-4FB3-80FA-49D1E773AA33", + "size": 104857600, + "start": 2097152, + "type": "C12A7328-F81F-11D2-BA4B-00A0C93EC93B", + "uuid": "7B77-95E7" + }, + { + "bootable": false, + "fstype": "xfs", + "label": "root", + "partuuid": "6264D520-3FB9-423F-8AB8-7A0A8E3D3562", + "size": 4187995648, + "start": 106954752, + "type": "0FC63DAF-8483-4772-8E79-3D69D8477DE4", + "uuid": "0194fdc2-fa2f-4cc0-81d3-ff12045b73c8" + } + ], + "passwd": [ + "adm:x:3:4:adm:/var/adm:/sbin/nologin", + "bin:x:1:1:bin:/bin:/sbin/nologin", + "chrony:x:995:992::/var/lib/chrony:/sbin/nologin", + "daemon:x:2:2:daemon:/sbin:/sbin/nologin", + "dbus:x:81:81:System message bus:/:/sbin/nologin", + "ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin", + "games:x:12:100:games:/usr/games:/sbin/nologin", + "halt:x:7:0:halt:/sbin:/sbin/halt", + "lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin", + "mail:x:8:12:mail:/var/spool/mail:/sbin/nologin", + "nobody:x:65534:65534:Kernel Overflow User:/:/sbin/nologin", + "operator:x:11:0:operator:/root:/sbin/nologin", + "polkitd:x:998:996:User for polkitd:/:/sbin/nologin", + "redhat:x:1000:1000::/home/redhat:/bin/bash", + "root:x:0:0:root:/root:/bin/bash", + "shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown", + "sshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:/sbin/nologin", + "sssd:x:996:993:User for sssd:/:/sbin/nologin", + "sync:x:5:0:sync:/sbin:/bin/sync", + "systemd-coredump:x:999:997:systemd Core Dumper:/:/sbin/nologin", + "systemd-resolve:x:193:193:systemd Resolver:/:/sbin/nologin", + "tss:x:59:59:Account used for TPM access:/dev/null:/sbin/nologin", + "unbound:x:997:994:Unbound DNS resolver:/etc/unbound:/sbin/nologin" + ], + "rpm-verify": { + "changed": { + "/boot/efi/EFI/centos/grubx64.efi": ".......T.", + "/etc/crypto-policies/back-ends/nss.config": ".M.......", + "/etc/fwupd/remotes.d/dell-esrt.conf": ".......T.", + "/etc/fwupd/remotes.d/lvfs-testing.conf": ".......T.", + "/etc/fwupd/remotes.d/lvfs.conf": ".......T.", + "/etc/fwupd/remotes.d/vendor-directory.conf": ".......T.", + "/etc/fwupd/remotes.d/vendor.conf": ".......T.", + "/etc/machine-id": ".M.......", + "/proc": ".M.......", + "/sys": ".M.......", + "/var/log/lastlog": ".M....G..", + "/var/spool/anacron/cron.daily": ".M.......", + "/var/spool/anacron/cron.monthly": ".M.......", + "/var/spool/anacron/cron.weekly": ".M......." + }, + "missing": [] + }, + "services-disabled": [ + "chrony-dnssrv@.timer", + "chrony-wait.service", + "console-getty.service", + "cpupower.service", + "ctrl-alt-del.target", + "debug-shell.service", + "ebtables.service", + "exit.target", + "fstrim.timer", + "fwupd-refresh.timer", + "halt.target", + "iprdump.service", + "iprinit.service", + "iprupdate.service", + "iprutils.target", + "kexec.target", + "mdcheck_continue.timer", + "mdcheck_start.timer", + "mdmonitor-oneshot.timer", + "nftables.service", + "poweroff.target", + "rdisc.service", + "reboot.target", + "remote-cryptsetup.target", + "run-vmblock\\x2dfuse.mount", + "runlevel0.target", + "runlevel6.target", + "serial-getty@.service", + "sshd-keygen@.service", + "sshd.socket", + "sssd-autofs.socket", + "sssd-nss.socket", + "sssd-pac.socket", + "sssd-pam-priv.socket", + "sssd-pam.socket", + "sssd-ssh.socket", + "sssd-sudo.socket", + "systemd-resolved.service", + "tcsd.service", + "tmp.mount" + ], + "services-enabled": [ + "NetworkManager-dispatcher.service", + "NetworkManager-wait-online.service", + "NetworkManager.service", + "auditd.service", + "autovt@.service", + "chronyd.service", + "crond.service", + "dbus-org.fedoraproject.FirewallD1.service", + "dbus-org.freedesktop.nm-dispatcher.service", + "dnf-makecache.timer", + "firewalld.service", + "getty@.service", + "import-state.service", + "irqbalance.service", + "kdump.service", + "loadmodules.service", + "mdmonitor.service", + "microcode.service", + "nis-domainname.service", + "remote-fs.target", + "rsyslog.service", + "selinux-autorelabel-mark.service", + "sshd.service", + "sssd-kcm.socket", + "sssd.service", + "syslog.service", + "tuned.service", + "udisks2.service", + "unbound-anchor.timer", + "vgauthd.service", + "vmtoolsd.service" + ], + "sysconfig": { + "kernel": { + "DEFAULTKERNEL": "kernel", + "UPDATEDEFAULT": "yes" + }, + "network": { + "NETWORKING": "yes", + "NOZEROCONF": "yes" + } + }, + "timezone": "New_York" + } +} \ No newline at end of file diff --git a/test/data/repositories/centos-8.json b/test/data/repositories/centos-8.json new file mode 120000 index 000000000..b80c420dd --- /dev/null +++ b/test/data/repositories/centos-8.json @@ -0,0 +1 @@ +centos-stream-8.json \ No newline at end of file diff --git a/test/data/repositories/centos-stream-8.json b/test/data/repositories/centos-stream-8.json new file mode 100644 index 000000000..b6894dbea --- /dev/null +++ b/test/data/repositories/centos-stream-8.json @@ -0,0 +1,44 @@ +{ + "aarch64": [ + { + "name": "baseos", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/aarch64/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + }, + { + "name": "appstream", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/aarch64/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + } + ], + "ppc64le": [ + { + "name": "baseos", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/ppc64le/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + }, + { + "name": "appstream", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/ppc64le/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + } + ], + "x86_64": [ + { + "name": "baseos", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + }, + { + "name": "appstream", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + } + ] +} diff --git a/tools/provision.sh b/tools/provision.sh index c0d07d169..29fec71c4 100755 --- a/tools/provision.sh +++ b/tools/provision.sh @@ -6,7 +6,7 @@ source /etc/os-release # koji and ansible are not in RHEL repositories. Depending on them in the spec # file breaks RHEL gating (see OSCI-1541). Therefore, we need to enable epel # and install koji and ansible here. -if [[ $ID == rhel ]]; then +if [[ $ID == rhel || $ID == centos ]]; then sudo dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm sudo dnf install -y koji ansible fi @@ -18,7 +18,7 @@ sudo cp -a /usr/share/tests/osbuild-composer/composer/*.toml \ # Copy rpmrepo snapshots for use in weldr tests sudo mkdir -p /etc/osbuild-composer/repositories # Copy all fedora repo overrides -sudo cp -a /usr/share/tests/osbuild-composer/repositories/fedora-*.json \ +sudo cp -a /usr/share/tests/osbuild-composer/repositories/{fedora,centos}-*.json \ /etc/osbuild-composer/repositories/ # RHEL nightly repos need to be overriden in rhel-8.json and rhel-8-beta.json case "${ID}-${VERSION_ID}" in diff --git a/tools/test-case-generators/repos.json b/tools/test-case-generators/repos.json index 70547ae09..8607aab98 100644 --- a/tools/test-case-generators/repos.json +++ b/tools/test-case-generators/repos.json @@ -122,5 +122,49 @@ "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\n\nmQINBErgSTsBEACh2A4b0O9t+vzC9VrVtL1AKvUWi9OPCjkvR7Xd8DtJxeeMZ5eF\n0HtzIG58qDRybwUe89FZprB1ffuUKzdE+HcL3FbNWSSOXVjZIersdXyH3NvnLLLF\n0DNRB2ix3bXG9Rh/RXpFsNxDp2CEMdUvbYCzE79K1EnUTVh1L0Of023FtPSZXX0c\nu7Pb5DI5lX5YeoXO6RoodrIGYJsVBQWnrWw4xNTconUfNPk0EGZtEnzvH2zyPoJh\nXGF+Ncu9XwbalnYde10OCvSWAZ5zTCpoLMTvQjWpbCdWXJzCm6G+/hx9upke546H\n5IjtYm4dTIVTnc3wvDiODgBKRzOl9rEOCIgOuGtDxRxcQkjrC+xvg5Vkqn7vBUyW\n9pHedOU+PoF3DGOM+dqv+eNKBvh9YF9ugFAQBkcG7viZgvGEMGGUpzNgN7XnS1gj\n/DPo9mZESOYnKceve2tIC87p2hqjrxOHuI7fkZYeNIcAoa83rBltFXaBDYhWAKS1\nPcXS1/7JzP0ky7d0L6Xbu/If5kqWQpKwUInXtySRkuraVfuK3Bpa+X1XecWi24JY\nHVtlNX025xx1ewVzGNCTlWn1skQN2OOoQTV4C8/qFpTW6DTWYurd4+fE0OJFJZQF\nbuhfXYwmRlVOgN5i77NTIJZJQfYFj38c/Iv5vZBPokO6mffrOTv3MHWVgQARAQAB\ntDNSZWQgSGF0LCBJbmMuIChyZWxlYXNlIGtleSAyKSA8c2VjdXJpdHlAcmVkaGF0\nLmNvbT6JAjYEEwECACAFAkrgSTsCGwMGCwkIBwMCBBUCCAMEFgIDAQIeAQIXgAAK\nCRAZni+R/UMdUWzpD/9s5SFR/ZF3yjY5VLUFLMXIKUztNN3oc45fyLdTI3+UClKC\n2tEruzYjqNHhqAEXa2sN1fMrsuKec61Ll2NfvJjkLKDvgVIh7kM7aslNYVOP6BTf\nC/JJ7/ufz3UZmyViH/WDl+AYdgk3JqCIO5w5ryrC9IyBzYv2m0HqYbWfphY3uHw5\nun3ndLJcu8+BGP5F+ONQEGl+DRH58Il9Jp3HwbRa7dvkPgEhfFR+1hI+Btta2C7E\n0/2NKzCxZw7Lx3PBRcU92YKyaEihfy/aQKZCAuyfKiMvsmzs+4poIX7I9NQCJpyE\nIGfINoZ7VxqHwRn/d5mw2MZTJjbzSf+Um9YJyA0iEEyD6qjriWQRbuxpQXmlAJbh\n8okZ4gbVFv1F8MzK+4R8VvWJ0XxgtikSo72fHjwha7MAjqFnOq6eo6fEC/75g3NL\nGht5VdpGuHk0vbdENHMC8wS99e5qXGNDued3hlTavDMlEAHl34q2H9nakTGRF5Ki\nJUfNh3DVRGhg8cMIti21njiRh7gyFI2OccATY7bBSr79JhuNwelHuxLrCFpY7V25\nOFktl15jZJaMxuQBqYdBgSay2G0U6D1+7VsWufpzd/Abx1/c3oi9ZaJvW22kAggq\ndzdA27UUYjWvx42w9menJwh/0jeQcTecIUd0d0rFcw/c1pvgMMl/Q73yzKgKYw==\n=zbHE\n-----END PGP PUBLIC KEY BLOCK-----\n-----BEGIN PGP PUBLIC KEY BLOCK-----\n\nmQINBFsy23UBEACUKSphFEIEvNpy68VeW4Dt6qv+mU6am9a2AAl10JANLj1oqWX+\noYk3en1S6cVe2qehSL5DGVa3HMUZkP3dtbD4SgzXzxPodebPcr4+0QNWigkUisri\nXGL5SCEcOP30zDhZvg+4mpO2jMi7Kc1DLPzBBkgppcX91wa0L1pQzBcvYMPyV/Dh\nKbQHR75WdkP6OA2JXdfC94nxYq+2e0iPqC1hCP3Elh+YnSkOkrawDPmoB1g4+ft/\nxsiVGVy/W0ekXmgvYEHt6si6Y8NwXgnTMqxeSXQ9YUgVIbTpsxHQKGy76T5lMlWX\n4LCOmEVomBJg1SqF6yi9Vu8TeNThaDqT4/DddYInd0OO69s0kGIXalVgGYiW2HOD\nx2q5R1VGCoJxXomz+EbOXY+HpKPOHAjU0DB9MxbU3S248LQ69nIB5uxysy0PSco1\nsdZ8sxRNQ9Dw6on0Nowx5m6Thefzs5iK3dnPGBqHTT43DHbnWc2scjQFG+eZhe98\nEll/kb6vpBoY4bG9/wCG9qu7jj9Z+BceCNKeHllbezVLCU/Hswivr7h2dnaEFvPD\nO4GqiWiwOF06XaBMVgxA8p2HRw0KtXqOpZk+o+sUvdPjsBw42BB96A1yFX4jgFNA\nPyZYnEUdP6OOv9HSjnl7k/iEkvHq/jGYMMojixlvXpGXhnt5jNyc4GSUJQARAQAB\ntDNSZWQgSGF0LCBJbmMuIChhdXhpbGlhcnkga2V5KSA8c2VjdXJpdHlAcmVkaGF0\nLmNvbT6JAjkEEwECACMFAlsy23UCGwMHCwkIBwMCAQYVCAIJCgsEFgIDAQIeAQIX\ngAAKCRD3b2bD1AgnknqOD/9fB2ASuG2aJIiap4kK58R+RmOVM4qgclAnaG57+vjI\nnKvyfV3NH/keplGNRxwqHekfPCqvkpABwhdGEXIE8ILqnPewIMr6PZNZWNJynZ9i\neSMzVuCG7jDoGyQ5/6B0f6xeBtTeBDiRl7+Alehet1twuGL1BJUYG0QuLgcEzkaE\n/gkuumeVcazLzz7L12D22nMk66GxmgXfqS5zcbqOAuZwaA6VgSEgFdV2X2JU79zS\nBQJXv7NKc+nDXFG7M7EHjY3Rma3HXkDbkT8bzh9tJV7Z7TlpT829pStWQyoxKCVq\nsEX8WsSapTKA3P9YkYCwLShgZu4HKRFvHMaIasSIZWzLu+RZH/4yyHOhj0QB7XMY\neHQ6fGSbtJ+K6SrpHOOsKQNAJ0hVbSrnA1cr5+2SDfel1RfYt0W9FA6DoH/S5gAR\ndzT1u44QVwwp3U+eFpHphFy//uzxNMtCjjdkpzhYYhOCLNkDrlRPb+bcoL/6ePSr\n016PA7eEnuC305YU1Ml2WcCn7wQV8x90o33klJmEkWtXh3X39vYtI4nCPIvZn1eP\nVy+F+wWt4vN2b8oOdlzc2paOembbCo2B+Wapv5Y9peBvlbsDSgqtJABfK8KQq/jK\nYl3h5elIa1I3uNfczeHOnf1enLOUOlq630yeM/yHizz99G1g+z/guMh5+x/OHraW\niLkCDQRbMtt1ARAA1lNsWklhS9LoBdolTVtg65FfdFJr47pzKRGYIoGLbcJ155ND\nG+P8UrM06E/ah06EEWuvu2YyyYAz1iYGsCwHAXtbEJh+1tF0iOVx2vnZPgtIGE9V\nP95V5ZvWvB3bdke1z8HadDA+/Ve7fbwXXLa/z9QhSQgsJ8NS8KYnDDjI4EvQtv0i\nPVLY8+u8z6VyiV9RJyn8UEZEJdbFDF9AZAT8103w8SEo/cvIoUbVKZLGcXdAIjCa\ny04u6jsrMp9UGHZX7+srT+9YHDzQixei4IdmxUcqtiNR2/bFHpHCu1pzYjXj968D\n8Ng2txBXDgs16BF/9l++GWKz2dOSH0jdS6sFJ/Dmg7oYnJ2xKSJEmcnV8Z0M1n4w\nXR1t/KeKZe3aR+RXCAEVC5dQ3GbRW2+WboJ6ldgFcVcOv6iOSWP9TrLzFPOpCsIr\nnHE+cMBmPHq3dUm7KeYXQ6wWWmtXlw6widf7cBcGFeELpuU9klzqdKze8qo2oMkf\nrfxIq8zdciPxZXb/75dGWs6dLHQmDpo4MdQVskw5vvwHicMpUpGpxkX7X1XAfdQf\nyIHLGT4ZXuMLIMUPdzJE0Vwt/RtJrZ+feLSv/+0CkkpGHORYroGwIBrJ2RikgcV2\nbc98V/27Kz2ngUCEwnmlhIcrY4IGAAZzUAl0GLHSevPbAREu4fDW4Y+ztOsAEQEA\nAYkCHwQYAQIACQUCWzLbdQIbDAAKCRD3b2bD1AgnkusfD/9U4sPtZfMw6cII167A\nXRZOO195G7oiAnBUw5AW6EK0SAHVZcuW0LMMXnGe9f4UsEUgCNwo5mvLWPxzKqFq\n6/G3kEZVFwZ0qrlLoJPeHNbOcfkeZ9NgD/OhzQmdylM0IwGM9DMrm2YS4EVsmm2b\n53qKIfIyysp1yAGcTnBwBbZ85osNBl2KRDIPhMs0bnmGB7IAvwlSb+xm6vWKECkO\nlwQDO5Kg8YZ8+Z3pn/oS688t/fPXvWLZYUqwR63oWfIaPJI7Ahv2jJmgw1ofL81r\n2CE3T/OydtUeGLzqWJAB8sbUgT3ug0cjtxsHuroQBSYBND3XDb/EQh5GeVVnGKKH\ngESLFAoweoNjDSXrlIu1gFjCDHF4CqBRmNYKrNQjLmhCrSfwkytXESJwlLzFKY8P\nK1yZyTpDC9YK0G7qgrk7EHmH9JAZTQ5V65pp0vR9KvqTU5ewkQDIljD2f3FIqo2B\nSKNCQE+N6NjWaTeNlU75m+yZocKObSPg0zS8FAuSJetNtzXA7ouqk34OoIMQj4gq\nUnh/i1FcZAd4U6Dtr9aRZ6PeLlm6MJ/h582L6fJLNEu136UWDtJj5eBYEzX13l+d\nSC4PEHx7ZZRwQKptl9NkinLZGJztg175paUu8C34sAv+SQnM20c0pdOXAq9GKKhi\nvt61kpkXoRGxjTlc6h+69aidSg==\n=ls8J\n-----END PGP PUBLIC KEY BLOCK-----\n" } ] + }, + "centos-8": { + "aarch64": [ + { + "name": "baseos", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/aarch64/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + }, + { + "name": "appstream", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/aarch64/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + } + ], + "ppc64le": [ + { + "name": "baseos", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/ppc64le/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + }, + { + "name": "appstream", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/ppc64le/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + } + ], + "x86_64": [ + { + "name": "baseos", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/BaseOS/x86_64/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + }, + { + "name": "appstream", + "baseurl": "https://composes.centos.org/CentOS-Stream-8-20210209.n.0/compose/AppStream/x86_64/os/", + "gpgkey": "-----BEGIN PGP PUBLIC KEY BLOCK-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\nmQINBFzMWxkBEADHrskpBgN9OphmhRkc7P/YrsAGSvvl7kfu+e9KAaU6f5MeAVyn\nrIoM43syyGkgFyWgjZM8/rur7EMPY2yt+2q/1ZfLVCRn9856JqTIq0XRpDUe4nKQ\n8BlA7wDVZoSDxUZkSuTIyExbDf0cpw89Tcf62Mxmi8jh74vRlPy1PgjWL5494b3X\n5fxDidH4bqPZyxTBqPrUFuo+EfUVEqiGF94Ppq6ZUvrBGOVo1V1+Ifm9CGEK597c\naevcGc1RFlgxIgN84UpuDjPR9/zSndwJ7XsXYvZ6HXcKGagRKsfYDWGPkA5cOL/e\nf+yObOnC43yPUvpggQ4KaNJ6+SMTZOKikM8yciyBwLqwrjo8FlJgkv8Vfag/2UR7\nJINbyqHHoLUhQ2m6HXSwK4YjtwidF9EUkaBZWrrskYR3IRZLXlWqeOi/+ezYOW0m\nvufrkcvsh+TKlVVnuwmEPjJ8mwUSpsLdfPJo1DHsd8FS03SCKPaXFdD7ePfEjiYk\nnHpQaKE01aWVSLUiygn7F7rYemGqV9Vt7tBw5pz0vqSC72a5E3zFzIIuHx6aANry\nGat3aqU3qtBXOrA/dPkX9cWE+UR5wo/A2UdKJZLlGhM2WRJ3ltmGT48V9CeS6N9Y\nm4CKdzvg7EWjlTlFrd/8WJ2KoqOE9leDPeXRPncubJfJ6LLIHyG09h9kKQARAQAB\ntDpDZW50T1MgKENlbnRPUyBPZmZpY2lhbCBTaWduaW5nIEtleSkgPHNlY3VyaXR5\nQGNlbnRvcy5vcmc+iQI3BBMBAgAhBQJczFsZAhsDBgsJCAcDAgYVCAIJCgsDFgIB\nAh4BAheAAAoJEAW1VbOEg8ZdjOsP/2ygSxH9jqffOU9SKyJDlraL2gIutqZ3B8pl\nGy/Qnb9QD1EJVb4ZxOEhcY2W9VJfIpnf3yBuAto7zvKe/G1nxH4Bt6WTJQCkUjcs\nN3qPWsx1VslsAEz7bXGiHym6Ay4xF28bQ9XYIokIQXd0T2rD3/lNGxNtORZ2bKjD\nvOzYzvh2idUIY1DgGWJ11gtHFIA9CvHcW+SMPEhkcKZJAO51ayFBqTSSpiorVwTq\na0cB+cgmCQOI4/MY+kIvzoexfG7xhkUqe0wxmph9RQQxlTbNQDCdaxSgwbF2T+gw\nbyaDvkS4xtR6Soj7BKjKAmcnf5fn4C5Or0KLUqMzBtDMbfQQihn62iZJN6ZZ/4dg\nq4HTqyVpyuzMXsFpJ9L/FqH2DJ4exGGpBv00ba/Zauy7GsqOc5PnNBsYaHCply0X\n407DRx51t9YwYI/ttValuehq9+gRJpOTTKp6AjZn/a5Yt3h6jDgpNfM/EyLFIY9z\nV6CXqQQ/8JRvaik/JsGCf+eeLZOw4koIjZGEAg04iuyNTjhx0e/QHEVcYAqNLhXG\nrCTTbCn3NSUO9qxEXC+K/1m1kaXoCGA0UWlVGZ1JSifbbMx0yxq/brpEZPUYm+32\no8XfbocBWljFUJ+6aljTvZ3LQLKTSPW7TFO+GXycAOmCGhlXh2tlc6iTc41PACqy\nyy+mHmSv\n=kkH7\n-----END PGP PUBLIC KEY BLOCK-----\n", + "check_gpg": true + } + ] } }