pax_global_header00006660000000000000000000000064150604625110014512gustar00rootroot0000000000000052 comment=3185a64ed27703fc3fe4af8cd5e1ce0ed2fa2569 go-vex-0.2.7/000077500000000000000000000000001506046251100127255ustar00rootroot00000000000000go-vex-0.2.7/.github/000077500000000000000000000000001506046251100142655ustar00rootroot00000000000000go-vex-0.2.7/.github/dependabot.yml000066400000000000000000000011271506046251100171160ustar00rootroot00000000000000# Copyright 2023 The OpenVEX Authors # SPDX-License-Identifier: Apache-2.0 --- version: 2 updates: - package-ecosystem: "github-actions" # github-actions / path starts .github/workflows directory: "/" schedule: # Run every weekday interval: "daily" open-pull-requests-limit: 10 groups: all: update-types: - "minor" - "patch" - package-ecosystem: gomod directory: "/" schedule: interval: "daily" open-pull-requests-limit: 10 groups: all: update-types: - "minor" - "patch" go-vex-0.2.7/.github/workflows/000077500000000000000000000000001506046251100163225ustar00rootroot00000000000000go-vex-0.2.7/.github/workflows/boilerplate.yaml000066400000000000000000000017601506046251100215140ustar00rootroot00000000000000# Copyright 2023 The OpenVEX Authors # SPDX-License-Identifier: Apache-2.0 --- name: Boilerplate on: pull_request: branches: - 'main' - 'release-*' jobs: check: name: Boilerplate Check runs-on: ubuntu-latest strategy: fail-fast: false # Keep running if one leg fails. matrix: extension: - go - sh - yaml # Map between extension and human-readable name. include: - extension: go language: Go - extension: sh language: Bash - extension: yaml language: YAML - extension: yml language: YAML steps: - name: Check out code uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: persist-credentials: false - uses: chainguard-dev/actions/boilerplate@main with: extension: ${{ matrix.extension }} language: ${{ matrix.language }} go-vex-0.2.7/.github/workflows/ci-build-test.yaml000066400000000000000000000017501506046251100216560ustar00rootroot00000000000000# Copyright 2023 The OpenVEX Authors # SPDX-License-Identifier: Apache-2.0 --- name: ci-build-test on: push: branches: - "main" pull_request: jobs: build: name: build runs-on: ubuntu-latest steps: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: persist-credentials: false - uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0 with: go-version: "1.24" check-latest: true cache: true - name: build run: make pkg test: name: test runs-on: ubuntu-latest steps: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: persist-credentials: false - uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0 with: go-version: "1.24" check-latest: true cache: true - name: test run: make test-cover go-vex-0.2.7/.github/workflows/compliance.yaml000066400000000000000000000146541506046251100213320ustar00rootroot00000000000000# Copyright 2025 The OpenVEX Authors # SPDX-License-Identifier: Apache-2.0 --- name: OSPS Compliance on: push: workflow_dispatch: permissions: {} jobs: attest: runs-on: ubuntu-latest permissions: id-token: write # needed for keyless signing attestations: write # needed to push attestations contents: read steps: - name: Check out code uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: persist-credentials: false - name: Install Tejolote uses: kubernetes-sigs/release-actions/setup-tejolote@a30d93cf2aa029e1e4c8a6c79f766aebf429fddb # v0.3.1 - uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0 with: go-version-file: go.mod cache: false - name: Setup bnd uses: carabiner-dev/actions/install/bnd@HEAD - name: Setup snappy uses: carabiner-dev/actions/install/snappy@HEAD - name: Setup unpack uses: carabiner-dev/actions/install/unpack@HEAD - name: Build Scorecard uses: carabiner-dev/actions/_demo/scorecard@HEAD - name: Setup beaker uses: carabiner-dev/actions/install/beaker@HEAD - name: Setup vexflow uses: carabiner-dev/actions/install/vexflow@HEAD - name: Generate SBOM run: | mkdir attestations unpack extract . --ignore-other-codebases -f spdx --attest > attestations/spdx.intoto.json unpack extract . --ignore-other-codebases -f spdx > attestations/${{ github.event.repository.name }}-${{ steps.tag.outputs.TAG }}.spdx.json bnd statement attestations/spdx.intoto.json --out attestations/spdx.bundle.json rm -f attestations/spdx.intoto.json - name: Attest Security Insights / OpenEoX id: attest-si-openeox run: | bnd commit --predicate-git-path=SECURITY-INSIGHTS.yml --type=https://github.com/ossf/security-insights-spec --yaml --repo . > attestations/si.bundle.json bnd commit --predicate-git-path=.openeox.json --type="https://docs.oasis-open.org/openeox/core/v1.0" --repo . > attestations/openeox.bundle.json - name: Generate MFA attestation env: GITHUB_TOKEN: ${{ github.token }} run: | snappy snap builtin:github/mfa.yaml -v ORG=${{ github.event.repository.owner.login }} --attest > attestations/mfa.intoto.json bnd statement attestations/mfa.intoto.json --out attestations/mfa.bundle.json rm -f attestations/mfa.intoto.json id: attest-mfa - if: github.event.organization.login != '' name: Generate org attestation env: GITHUB_TOKEN: ${{ github.token }} run: | snappy snap builtin:github/org.yaml -v BRANCH=main -v REPO=${{ github.event.repository.name }} -v ORG=${{ github.event.organization.login }} --attest > attestations/org.intoto.json bnd statement attestations/org.intoto.json --out attestations/org.bundle.json rm -f attestations/org.intoto.json id: attest-org - name: Generate branch rules attestation env: GITHUB_TOKEN: ${{ github.token }} run: | snappy snap builtin:github/branch-rules.yaml -v BRANCH=main -v REPO=${{ github.event.repository.name }} -v ORG=${{ github.event.repository.owner.login }} --attest > attestations/branch.intoto.json bnd statement attestations/branch.intoto.json --out attestations/branch.bundle.json rm -f attestations/branch.intoto.json id: attest-branch - name: Generate repository attestation env: GITHUB_TOKEN: ${{ github.token }} run: | snappy snap builtin:github/repo.yaml -v BRANCH=main -v REPO=${{ github.event.repository.name }} -v ORG=${{ github.event.repository.owner.login }} --attest > attestations/repo.intoto.json bnd statement attestations/repo.intoto.json --out attestations/repo.bundle.json rm -f attestations/repo.intoto.json id: attest-repo - name: "Generate Scorecard Attestation" env: GITHUB_TOKEN: ${{ github.token }} run: | scorecard --repo=carabiner-dev/demo-repo --format=intoto > attestations/scorecard.intoto.json bnd statement attestations/scorecard.intoto.json --out attestations/scorecard.bundle.json rm -f attestations/scorecard.intoto.json - name: Attest tests env: GITHUB_TOKEN: ${{ github.token }} run: | beaker run . --attest -o attestations/tests.intoto.json bnd statement attestations/tests.intoto.json --out attestations/tests.bundle.json rm -f attestations/tests.intoto.json id: attest-tests - name: "Run scanner" uses: google/osv-scanner-action/osv-scanner-action@90b209d0ea55cea1da9fc0c4e65782cc6acb6e2e # v2.2.2 continue-on-error: true with: scan-args: |- --output=attestations/osv-results.json --format=json . - name: "Assemble VEX and attest OSV results" env: GITHUB_TOKEN: ${{ github.token }} run: | vexflow assemble --repo=${{ github.repository }} --triage-repo=${{ github.event.repository.owner.login }}/.vexflow > attestations/main.openvex.json bnd predicate attestations/main.openvex.json --subject=sha1:${{ github.sha }} --out attestations/openvex.bundle.json --type="https://openvex.dev/ns/v0.2.0" bnd predicate attestations/osv-results.json --subject=sha1:${{ github.sha }} --out attestations/osv-results.bundle.json --type="https://ossf.github.io/osv-schema/results@v1.6.7" rm -f attestations/osv-results.json attestations/main.openvex.json - name: Pack Attestations id: pack-attestations run: | bnd pack attestations/ > attestations.jsonl # Publish attestations to artifacts - name: Archive production artifacts uses: actions/upload-artifact@v4 with: name: attestations.jsonl path: attestations.jsonl - uses: carabiner-dev/actions/ampel/verify@HEAD name: Evaluate Compliance id: osps-baseline-check with: subject: sha1:${{ github.sha }} collector: "jsonl:attestations.jsonl" policy: "git+https://github.com/carabiner-dev/policies#sets/baseline/osps-baseline.policy.json" attest: true fail: false go-vex-0.2.7/.github/workflows/compute_slsa_source.yaml000066400000000000000000000010331506046251100232610ustar00rootroot00000000000000# Copyright 2023 The OpenVEX Authors # SPDX-License-Identifier: Apache-2.0 --- name: SLSA Source on: push: branches: [ "main" ] tags: ['**'] permissions: {} jobs: # Whenever new source is pushed recompute the slsa source information. generate-provenance: permissions: contents: write # needed for storing the vsa in the repo. id-token: write # meeded to mint yokens for signing uses: slsa-framework/source-actions/.github/workflows/compute_slsa_source.yml@main with: allow-merge-commits: true go-vex-0.2.7/.github/workflows/release.yaml000066400000000000000000000025301506046251100206260ustar00rootroot00000000000000# Copyright 2023 The OpenVEX Authors # SPDX-License-Identifier: Apache-2.0 --- name: Release on: push: tags: - 'v*' permissions: {} jobs: release: runs-on: ubuntu-latest permissions: contents: write # needed to write releases steps: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: persist-credentials: false - uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0 with: go-version: stable cache: false check-latest: true - name: Install bom uses: kubernetes-sigs/release-actions/setup-bom@a30d93cf2aa029e1e4c8a6c79f766aebf429fddb # v0.3.1 - name: Set tag output id: tag run: echo "tag_name=${GITHUB_REF#refs/*/}" >> "$GITHUB_OUTPUT" - name: Generate SBOM shell: bash run: | bom generate --format=json -o /tmp/${{github.event.repository.name}}-${{ steps.tag.outputs.tag_name }}.spdx.json . - name: Publish Release uses: kubernetes-sigs/release-actions/publish-release@a30d93cf2aa029e1e4c8a6c79f766aebf429fddb # v0.3.1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: assets: "/tmp/${{github.event.repository.name}}-${{ steps.tag.outputs.tag_name }}.spdx.json" sbom: false go-vex-0.2.7/.github/workflows/verify.yaml000066400000000000000000000012341506046251100205120ustar00rootroot00000000000000# Copyright 2023 The OpenVEX Authors # SPDX-License-Identifier: Apache-2.0 --- name: verify on: push: branches: - "main" pull_request: permissions: {} jobs: golangci: name: golangci-lint runs-on: ubuntu-latest steps: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0 with: go-version: "1.24" check-latest: true cache: true - name: golangci-lint uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0 with: version: v2.1.1 go-vex-0.2.7/.gitignore000066400000000000000000000043051506046251100147170ustar00rootroot00000000000000# NFS .nfs* # OSX leaves these everywhere on SMB shares ._* # OSX trash .DS_Store # Eclipse files .classpath .project .settings/** # Files generated by JetBrains IDEs, e.g. IntelliJ IDEA .idea/ *.iml # Vscode files .vscode # This is where the result of the go build goes /output*/ /_output*/ /_output # Emacs save files *~ \#*\# .\#* # Vim-related files [._]*.s[a-w][a-z] [._]s[a-w][a-z] *.un~ Session.vim .netrwhist # Go test binaries *.test /hack/.test-cmd-auth # JUnit test output from ginkgo e2e tests /junit*.xml # Mercurial files **/.hg **/.hg* # Vagrant .vagrant network_closure.sh # Local cluster env variables /cluster/env.sh # Compiled binaries in third_party /third_party/pkg # Also ignore etcd installed by hack/install-etcd.sh /third_party/etcd* # User cluster configs .kubeconfig .tags* # Version file for dockerized build .dockerized-kube-version-defs # Web UI /www/master/node_modules/ /www/master/npm-debug.log /www/master/shared/config/development.json # Karma output /www/test_out # precommit temporary directories created by ./hack/verify-generated-docs.sh and ./hack/lib/util.sh /_tmp/ /doc_tmp/ # Test artifacts produced by Jenkins jobs /_artifacts/ # Go dependencies installed on Jenkins /_gopath/ # Config directories created by gcloud and gsutil on Jenkins /.config/gcloud*/ /.gsutil/ # CoreOS stuff /cluster/libvirt-coreos/coreos_*.img # Juju Stuff /cluster/juju/charms/* /cluster/juju/bundles/local.yaml # Downloaded Kubernetes binary release /kubernetes/ # direnv .envrc files .envrc # Downloaded kubernetes binary release tar ball kubernetes.tar.gz # generated files in any directory # TODO(thockin): uncomment this when we stop committing the generated files. #zz_generated.* # make-related metadata /.make/ # Just in time generated data in the source, should never be committed /test/e2e/generated/bindata.go # This file used by some vendor repos (e.g. github.com/go-openapi/...) to store secret variables and should not be ignored !\.drone\.sec /bazel-* # vendored go modules /vendor # git merge conflict originals *.orig # go coverage files coverage.* # test files tmp CHANGELOG-*.html # downloaded and built binaries bin qemu-*-static rootfs.tar vexctl dist/** .go-version go-vex-0.2.7/.golangci.yml000066400000000000000000000073671506046251100153260ustar00rootroot00000000000000# Copyright 2023 The OpenVEX Authors # SPDX-License-Identifier: Apache-2.0 --- version: "2" run: concurrency: 6 timeout: 5m issues: # Maximum issues count per one linter. Set to 0 to disable. Default is 50. max-issues-per-linter: 0 # Maximum count of issues with the same text. Set to 0 to disable. Default is 3. max-same-issues: 0 formatters: # Enable specific formatter. # Default: [] (uses standard Go formatting) enable: - gci - gofmt - gofumpt - goimports # - golines settings: gci: no-inline-comments: false no-prefix-comments: true sections: - standard - default - prefix(github.com/openvex/go-vex) linters: enable: - asasalint - asciicheck - bidichk - bodyclose - canonicalheader - containedctx - contextcheck - copyloopvar - decorder - dogsled - dupl - durationcheck - errcheck - errchkjson - errname - errorlint - exhaustive - exptostd - fatcontext - forcetypeassert - ginkgolinter - gocheckcompilerdirectives - gochecksumtype - goconst - gocritic - gocyclo # - godot - godox - goheader - gomoddirectives - gomodguard - goprintffuncname - gosec - gosmopolitan - govet - grouper - iface - importas - ineffassign - intrange - loggercheck - makezero - mirror - misspell # - musttag - nakedret - nilerr - nilnesserr # - nlreturn - noctx - nolintlint - nosprintfhostport # - perfsprint - prealloc - predeclared - promlinter - protogetter - reassign - recvcheck # - revive - rowserrcheck - sloglint - spancheck - sqlclosecheck - staticcheck - tagalign - testableexamples - testifylint - tparallel - unconvert - unparam - unused - usestdlibvars - usetesting - wastedassign - whitespace # - wsl - zerologlint settings: gocyclo: min-complexity: 35 godox: keywords: - BUG - FIXME - HACK gosmopolitan: # Allow and ignore `time.Local` usages. # # Default: false allow-time-local: true perfsprint: integer-format: false errcheck: check-type-assertions: true check-blank: true gocritic: enabled-checks: # Diagnostic - commentedOutCode - nilValReturn - sloppyReassign - weakCond - octalLiteral # Performance - appendCombine - equalFold - hugeParam - indexAlloc - rangeExprCopy - rangeValCopy # Style - boolExprSimplify - commentedOutImport - docStub - emptyFallthrough - emptyStringTest - hexLiteral - methodExprCall - stringXbytes - typeAssertChain - unlabelStmt - yodaStyleExpr # - ifElseChain # Opinionated - builtinShadow - importShadow - initClause - nestingReduce - paramTypeCombine - ptrToRefParam - typeUnparen - unnamedResult - unnecessaryBlock nolintlint: # Enable to ensure that nolint directives are all used. Default is true. allow-unused: false # Exclude following linters from requiring an explanation. Default is []. allow-no-explanation: [] # Enable to require an explanation of nonzero length after each nolint directive. Default is false. # TODO(lint): Enforce explanations for `nolint` directives require-explanation: false # Enable to require nolint directives to mention the specific linter being suppressed. Default is false. require-specific: true go-vex-0.2.7/.openeox.json000066400000000000000000000003571506046251100153600ustar00rootroot00000000000000{ "$schema": "https://docs.oasis-open.org/openeox/tbd/schema/core.json", "end_of_life": "2030-01-01T00:00:00Z", "end_of_security_support": "2030-01-01T00:00:00Z", "last_updated": "2025-05-18T12:32:00Z" } go-vex-0.2.7/LICENSE000066400000000000000000000261351506046251100137410ustar00rootroot00000000000000 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. go-vex-0.2.7/MAINTAINERS.md000066400000000000000000000006631506046251100150260ustar00rootroot00000000000000# Maintainers This file lists all current maintainers of the `go-vex` repository. - Dan Luhring (@luhring), Chainguard - Adolfo García Veytia (@puerco), Chainguard - Brandon Lum (@lumjjb), Google - Alex Goodman (@wagoodman), Anchore - Rose Judge (@rnjudge), VMWare New maintainers can be added via the process outlined in the OpenVEX community's [governance](https://github.com/openvex/community/blob/main/GOVERNANCE.md) document. go-vex-0.2.7/Makefile000066400000000000000000000027221506046251100143700ustar00rootroot00000000000000# Copyright 2023 The OpenVEX Authors # SPDX-License-Identifier: Apache-2.0 # Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set) ifeq (,$(shell go env GOBIN)) GOBIN=$(shell go env GOPATH)/bin else GOBIN=$(shell go env GOBIN) endif # Set version variables for LDFLAGS GIT_VERSION ?= $(shell git describe --tags --always --dirty) GIT_HASH ?= $(shell git rev-parse HEAD) DATE_FMT = +%Y-%m-%dT%H:%M:%SZ SOURCE_DATE_EPOCH ?= $(shell git log -1 --pretty=%ct) ifdef SOURCE_DATE_EPOCH BUILD_DATE ?= $(shell date -u -d "@$(SOURCE_DATE_EPOCH)" "$(DATE_FMT)" 2>/dev/null || date -u -r "$(SOURCE_DATE_EPOCH)" "$(DATE_FMT)" 2>/dev/null || date -u "$(DATE_FMT)") else BUILD_DATE ?= $(shell date "$(DATE_FMT)") endif GIT_TREESTATE = "clean" DIFF = $(shell git diff --quiet >/dev/null 2>&1; if [ $$? -eq 1 ]; then echo "1"; fi) ifeq ($(DIFF), 1) GIT_TREESTATE = "dirty" endif LDFLAGS=-buildid= -X sigs.k8s.io/release-utils/version.gitVersion=$(GIT_VERSION) \ -X sigs.k8s.io/release-utils/version.gitCommit=$(GIT_HASH) \ -X sigs.k8s.io/release-utils/version.gitTreeState=$(GIT_TREESTATE) \ -X sigs.k8s.io/release-utils/version.buildDate=$(BUILD_DATE) ## Build .PHONY: pkg pkg: ## Build pkg go build -trimpath -ldflags "$(LDFLAGS)" ./... .PHONY: build build: pkg ## Tests .PHONY: test test: go test -v ./... .PHONY: test-cover test-cover: go test -v -coverprofile=coverage.out ./... go tool cover -html=coverage.out -o coverage.html go-vex-0.2.7/README.md000066400000000000000000000102571506046251100142110ustar00rootroot00000000000000# go-vex Go library for generating, consuming, and operating on VEX documents [![Build Status](https://github.com/openvex/go-vex/actions/workflows/ci-build-test.yaml/badge.svg?branch=main)](https://github.com/openvex/go-vex/actions/workflows/ci-build-test.yaml?query=branch%3Amain) [![PkgGoDev](https://pkg.go.dev/badge/github.com/openvex/go-vex)](https://pkg.go.dev/github.com/openvex/go-vex) [![Go Report Card](https://goreportcard.com/badge/github.com/openvex/go-vex)](https://goreportcard.com/report/github.com/openvex/go-vex) This repository contains the OpenVEX Go source code. This module lets authors create, modify and manage VEX documents. The full documentation for this module can be found at https://pkg.go.dev/github.com/openvex/go-vex. For more information about the OpenVEX specification implemented by this module, check out the [OpenVEX specification](https://github.com/openvex/spec/blob/main/OPENVEX-SPEC.md). ## Installing Run `go get` to install the latest version of the library. ```console go get -u github.com/openvex/go-vex@latest ``` ## Example Usage: Generate a VEX Document The following is a simple example showing how to generate a VEX document: ```golang package main import ( "os" "github.com/openvex/go-vex/pkg/vex" ) func main() { // Create new VEX document doc := vex.New() // Define the documenmt author doc.Author = "Wolfi J. Inkinson" doc.AuthorRole = "Senior VEXing Engineer" // Here, we add an impact statement. The core of VEX. We will inform // that our git image is not affected by CVE-2023-12345 and why: doc.Statements = append(doc.Statements, vex.Statement{ // ... define the vulnerability: Vulnerability: vex.Vulnerability{ ID: "https://nvd.nist.gov/vuln/detail/CVE-2021-44228", Name: "CVE-2021-44228", Description: "Remote code injection in Log4j", Aliases: []vex.VulnerabilityID{ vex.VulnerabilityID("GHSA-jfh8-c2jp-5v3q"), }, }, // ... add an image as product: Products: []vex.Product{ { Component: vex.Component{ ID: "pkg:maven/org.springframework.boot/spring-boot@2.6.0-M3", Identifiers: map[vex.IdentifierType]string{ vex.PURL: "pkg:maven/org.springframework.boot/spring-boot@2.6.0-M3", }, Hashes: map[vex.Algorithm]vex.Hash{ vex.SHA256: vex.Hash("e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"), }, }, // ... specify optional subcomponents: // Subcomponents: []vex.Subcomponent{}, }, // "pkg:oci/git@sha256:23a264e6e429852221a963e9f17338ba3f5796dc7086e46439a6f4482cf6e0cb", }, // ... choose one of the VEX status labels: Status: vex.StatusNotAffected, // ... finally, a machine-readable justification and optional statement: Justification: vex.VulnerableCodeNotInExecutePath, ImpactStatement: "Spring Boot users are only affected by this vulnerability if they ...", }) // Generate a canonical identifier for the VEX document: doc.GenerateCanonicalID() // Output the document to stdout: doc.ToJSON(os.Stdout) } ``` Running this example renders the following simple VEX document: ```json { "@context": "https://openvex.dev/ns/v0.2.0", "@id": "https://openvex.dev/docs/public/vex-6ccf08fbf67f1489f201bb2b79a024b55d2ce07763098c78822f2f25283703d8", "author": "Wolfi J. Inkinson", "role": "Senior VEXing Engineer", "timestamp": "2023-09-21T15:32:30.728569-05:00", "version": 1, "statements": [ { "vulnerability": { "@id": "https://nvd.nist.gov/vuln/detail/CVE-2021-44228", "name": "CVE-2021-44228", "description": "Remote code injection in Log4j", "aliases": [ "GHSA-jfh8-c2jp-5v3q" ] }, "products": [ { "@id": "pkg:maven/org.springframework.boot/spring-boot@2.6.0-M3", "hashes": { "sha-256": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" }, "identifiers": { "purl": "pkg:maven/org.springframework.boot/spring-boot@2.6.0-M3" } } ], "status": "not_affected", "justification": "vulnerable_code_not_in_execute_path", "impact_statement": "Spring Boot users are only affected by this vulnerability if they ..." } ] } ``` go-vex-0.2.7/SECURITY-INSIGHTS.yml000066400000000000000000000023261506046251100161500ustar00rootroot00000000000000# Copyright 2025 The OpenVEX Authors # SPDX-License-Identifier: Apache-2.0 --- header: schema-version: 2.0.0 project: name: OpenVEX Go Module homepage: https://openvex.org steward: uri: https://openssf.org administrators: - name: Adolfo García Veytia affiliation: Carabiner Systems, Inc primary: true - name: Christopher Robinson affiliation: The Linux Foundation primary: true documentation: quickstart-guide: https://github.com/openvex/vexctl detailed-guide: https://github.com/openvex/vexctl code-of-conduct: https://github.com/openvex/community/blob/main/CODE_OF_CONDUCT.md repositories: - name: vexctl url: https://github.com/openvex/vexctl - name: OpenVEX Specification url: https://github.com/openvex/spec vulnerability-reporting: reports-accepted: true contact: name: Adolfo García Veytia primary: true repository: url: https://github.com/openvex/go-vex status: active documentation: governance: https://github.com/openvex/community/blob/main/GOVERNANCE.md license: expression: Apache-2.0 release: changelog: https://example.com/release/{version}#changelog license: expression: Apache-2.0 go-vex-0.2.7/go.mod000066400000000000000000000015141506046251100140340ustar00rootroot00000000000000module github.com/openvex/go-vex go 1.22 require ( github.com/google/go-cmp v0.7.0 github.com/in-toto/in-toto-golang v0.9.0 github.com/owenrumney/go-sarif v1.1.1 gopkg.in/yaml.v3 v3.0.1 ) require ( github.com/davecgh/go-spew v1.1.1 // indirect github.com/kr/pretty v0.3.0 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/rogpeppe/go-internal v1.9.0 // indirect github.com/secure-systems-lab/go-securesystemslib v0.6.0 // indirect github.com/zclconf/go-cty v1.10.0 // indirect golang.org/x/crypto v0.17.0 // indirect golang.org/x/text v0.14.0 // indirect gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect ) require ( github.com/package-url/packageurl-go v0.1.3 github.com/shibumi/go-pathspec v1.3.0 // indirect github.com/stretchr/testify v1.11.1 golang.org/x/sys v0.15.0 // indirect ) go-vex-0.2.7/go.sum000066400000000000000000000137531506046251100140710ustar00rootroot00000000000000github.com/apparentlymart/go-textseg/v13 v13.0.0/go.mod h1:ZK2fH7c4NqDTLtiYLvIkEghdlcqw7yxLeM89kiTRPUo= github.com/codahale/rfc6979 v0.0.0-20141003034818-6a90f24967eb h1:EDmT6Q9Zs+SbUoc7Ik9EfrFqcylYqgPZ9ANSbTAntnE= github.com/codahale/rfc6979 v0.0.0-20141003034818-6a90f24967eb/go.mod h1:ZjrT6AXHbDs86ZSdt/osfBi5qfexBrKUdONk989Wnk4= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8= github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU= github.com/in-toto/in-toto-golang v0.9.0 h1:tHny7ac4KgtsfrG6ybU8gVOZux2H8jN05AXJ9EBM1XU= github.com/in-toto/in-toto-golang v0.9.0/go.mod h1:xsBVrVsHNsB61++S6Dy2vWosKhuA3lUTQd+eF9HdeMo= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0= github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/owenrumney/go-sarif v1.1.1 h1:QNObu6YX1igyFKhdzd7vgzmw7XsWN3/6NMGuDzBgXmE= github.com/owenrumney/go-sarif v1.1.1/go.mod h1:dNDiPlF04ESR/6fHlPyq7gHKmrM0sHUvAGjsoh8ZH0U= github.com/package-url/packageurl-go v0.1.3 h1:4juMED3hHiz0set3Vq3KeQ75KD1avthoXLtmE3I0PLs= github.com/package-url/packageurl-go v0.1.3/go.mod h1:nKAWB8E6uk1MHqiS/lQb9pYBGH2+mdJ2PJc2s50dQY0= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= github.com/secure-systems-lab/go-securesystemslib v0.6.0 h1:T65atpAVCJQK14UA57LMdZGpHi4QYSH/9FZyNGqMYIA= github.com/secure-systems-lab/go-securesystemslib v0.6.0/go.mod h1:8Mtpo9JKks/qhPG4HGZ2LGMvrPbzuxwfz/f/zLfEWkk= github.com/shibumi/go-pathspec v1.3.0 h1:QUyMZhFo0Md5B8zV8x2tesohbb5kfbpTi9rBnKh5dkI= github.com/shibumi/go-pathspec v1.3.0/go.mod h1:Xutfslp817l2I1cZvgcfeMQJG5QnU2lh5tVaaMCl3jE= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U= github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U= github.com/vmihailenco/msgpack/v4 v4.3.12/go.mod h1:gborTTJjAo/GWTqqRjrLCn9pgNN+NXzzngzBKDPIqw4= github.com/vmihailenco/tagparser v0.1.1/go.mod h1:OeAg3pn3UbLjkWt+rN9oFYB6u/cQgqMEUPoW2WPyhdI= github.com/zclconf/go-cty v1.10.0 h1:mp9ZXQeIcN8kAwuqorjH+Q+njbJKjLrvB2yIh4q7U+0= github.com/zclconf/go-cty v1.10.0/go.mod h1:vVKLxnk3puL4qRAv72AO+W99LUD4da90g3uUAzyuvAk= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.17.0 h1:r8bRNjWL3GshPW3gkd+RpvzWrZAwPS49OmTGZ/uhM4k= golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.15.0 h1:y/Oo/a/q3IXu26lQgl04j/gjuBDOBlx7X6Om1j2CPW4= golang.org/x/term v0.15.0/go.mod h1:BDl952bC7+uMoWR75FIrCDx79TPU9oHkTZ9yRbYOrX0= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= go-vex-0.2.7/hack/000077500000000000000000000000001506046251100136335ustar00rootroot00000000000000go-vex-0.2.7/hack/boilerplate/000077500000000000000000000000001506046251100161355ustar00rootroot00000000000000go-vex-0.2.7/hack/boilerplate/boilerplate.go.txt000066400000000000000000000001151506046251100216010ustar00rootroot00000000000000// Copyright 2023 The OpenVEX Authors // SPDX-License-Identifier: Apache-2.0 go-vex-0.2.7/hack/boilerplate/boilerplate.sh.txt000066400000000000000000000001401506046251100216040ustar00rootroot00000000000000#!/usr/bin/env bash # Copyright 2023 The OpenVEX Authors # SPDX-License-Identifier: Apache-2.0 go-vex-0.2.7/hack/boilerplate/boilerplate.yaml.txt000066400000000000000000000001131506046251100221340ustar00rootroot00000000000000# Copyright 2023 The OpenVEX Authors # SPDX-License-Identifier: Apache-2.0 go-vex-0.2.7/hack/boilerplate/boilerplate.yml.txt000066400000000000000000000001131506046251100217730ustar00rootroot00000000000000# Copyright 2023 The OpenVEX Authors # SPDX-License-Identifier: Apache-2.0 go-vex-0.2.7/pkg/000077500000000000000000000000001506046251100135065ustar00rootroot00000000000000go-vex-0.2.7/pkg/attestation/000077500000000000000000000000001506046251100160455ustar00rootroot00000000000000go-vex-0.2.7/pkg/attestation/attestation.go000066400000000000000000000023051506046251100207330ustar00rootroot00000000000000/* Copyright 2023 The OpenVEX Authors SPDX-License-Identifier: Apache-2.0 */ package attestation import ( "encoding/json" "fmt" "io" intoto "github.com/in-toto/in-toto-golang/in_toto" "github.com/openvex/go-vex/pkg/vex" ) type Attestation struct { intoto.StatementHeader // Predicate contains type specific metadata. Predicate vex.VEX `json:"predicate"` } func New() *Attestation { return &Attestation{ StatementHeader: intoto.StatementHeader{ Type: intoto.StatementInTotoV01, PredicateType: vex.TypeURI, Subject: []intoto.Subject{}, }, Predicate: vex.New(), } } // ToJSON writes the attestation as JSON to the io.Writer w func (att *Attestation) ToJSON(w io.Writer) error { enc := json.NewEncoder(w) enc.SetIndent("", " ") enc.SetEscapeHTML(false) if err := enc.Encode(att); err != nil { return fmt.Errorf("encoding attestation: %w", err) } return nil } // AddSubjects adds a list of intoto subjects to the attestation func (att *Attestation) AddSubjects(subs []intoto.Subject) error { for _, s := range subs { if len(s.Digest) == 0 { return fmt.Errorf("subject %s has no digests", s.Name) } } att.Subject = append(att.Subject, subs...) return nil } go-vex-0.2.7/pkg/attestation/attestation_test.go000066400000000000000000000025171506046251100217770ustar00rootroot00000000000000// Copyright 2023 The OpenVEX Authors // SPDX-License-Identifier: Apache-2.0 package attestation import ( "bytes" "encoding/json" "testing" intoto "github.com/in-toto/in-toto-golang/in_toto" "github.com/stretchr/testify/require" "github.com/openvex/go-vex/pkg/vex" ) func TestSerialize(t *testing.T) { att := New() pred := vex.New() pred.Author = "Chainguard" att.Predicate = pred var b bytes.Buffer err := att.ToJSON(&b) require.NoError(t, err) att2 := New() err = json.Unmarshal(b.Bytes(), &att2) require.NoError(t, err) require.Equal(t, "Chainguard", att2.Predicate.Author) } func TestAddSubjects(t *testing.T) { att := New() // Test adding valid subjects validSubs := []intoto.Subject{ { Name: "test1", Digest: map[string]string{"sha256": "abc123"}, }, { Name: "test2", Digest: map[string]string{"sha256": "def456"}, }, } err := att.AddSubjects(validSubs) require.NoError(t, err) require.Len(t, att.Subject, 2) require.Equal(t, validSubs[0], att.Subject[0]) require.Equal(t, validSubs[1], att.Subject[1]) // Test adding subject with no digest invalidSubs := []intoto.Subject{ { Name: "test3", }, } err = att.AddSubjects(invalidSubs) require.Error(t, err) require.Contains(t, err.Error(), "subject test3 has no digests") require.Len(t, att.Subject, 2) // Length should not change } go-vex-0.2.7/pkg/csaf/000077500000000000000000000000001506046251100144225ustar00rootroot00000000000000go-vex-0.2.7/pkg/csaf/csaf.go000066400000000000000000000344041506046251100156720ustar00rootroot00000000000000// Copyright 2023 The OpenVEX Authors // SPDX-License-Identifier: Apache-2.0 package csaf import ( "encoding/json" "fmt" "os" "time" ) // CSAF is a Common Security Advisory Framework Version 2.0 document. // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html type CSAF struct { // Document contains metadata about the CSAF document itself. // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#321-document-property Document DocumentMetadata `json:"document"` // ProductTree contains information about the product tree (branches only). // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#322-product-tree-property ProductTree ProductBranch `json:"product_tree"` // Vulnerabilities contains information about the vulnerabilities, // (i.e. CVEs), associated threats, and product status. // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#323-vulnerabilities-property Vulnerabilities []Vulnerability `json:"vulnerabilities"` // Notes holds notes associated with the whole document. // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3217-document-property---notes Notes []Note `json:"notes"` } // DocumentMetadata contains metadata about the CSAF document itself. // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#321-document-property type DocumentMetadata struct { Title string `json:"title"` Tracking Tracking `json:"tracking"` References []Reference `json:"references"` Publisher Publisher `json:"publisher"` } // Document references holds a list of references associated with the whole document. // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3219-document-property---references type Reference struct { Category string `json:"category"` Summary string `json:"summary"` URL string `json:"url"` } // Tracking contains information used to track the CSAF document through its lifecycle. // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32112-document-property---tracking type Tracking struct { ID string `json:"id"` CurrentReleaseDate time.Time `json:"current_release_date"` InitialReleaseDate time.Time `json:"initial_release_date"` } // Publisher provides information on the publishing entity. // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3218-document-property---publisher type Publisher struct { Category string `json:"category"` ContactDetails string `json:"contact_details"` IssuingAuthority string `json:"issuing_authority"` Name string `json:"name"` Namespace string `json:"namespace"` } // Vulnerability contains information about a CVE and its associated threats. // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#323-vulnerabilities-property type Vulnerability struct { // MITRE standard Common Vulnerabilities and Exposures (CVE) tracking number for the vulnerability. // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3232-vulnerabilities-property---cve CVE string `json:"cve"` // List of IDs represents a list of unique labels or tracking IDs for the vulnerability (if such information exists). // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3236-vulnerabilities-property---ids IDs []TrackingID `json:"ids"` // Provide details on the status of the referenced product related to the vulnerability. // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3239-vulnerabilities-property---product-status ProductStatus map[string][]string `json:"product_status"` // Provide details of threats associated with a vulnerability. // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32314-vulnerabilities-property---threats Threats []ThreatData `json:"threats"` // Provide details of remediations associated with a Vulnerability // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32312-vulnerabilities-property---remediations Remediations []RemediationData `json:"remediations"` // Machine readable flags for products related to vulnerability // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3235-vulnerabilities-property---flags Flags []Flag `json:"flags"` // Vulnerability references holds a list of references associated with this vulnerability item. // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32310-vulnerabilities-property---references References []Reference `json:"references"` ReleaseDate time.Time `json:"release_date"` // Notes holds notes associated with the Vulnerability object. // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3238-vulnerabilities-property---notes Notes []Note `json:"notes"` // Scores holds the scores associated with the Vulnerability object. // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32313-vulnerabilities-property---scores // Currently only CVSS v3 is supported. Scores []Score `json:"scores"` } type Note struct { Category string `json:"category"` Text string `json:"text"` Title string `json:"title"` Audience string `json:"audience"` } // Every ID item with the two mandatory properties System Name (system_name) and Text (text) contains a single unique label or tracking ID for the vulnerability. // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3236-vulnerabilities-property---ids type TrackingID struct { SystemName string `json:"system_name"` Text string `json:"text"` } // ThreatData contains information about a threat to a product. // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32314-vulnerabilities-property---threats type ThreatData struct { Category string `json:"category"` Details string `json:"details"` ProductIDs []string `json:"product_ids"` } // RemediationData contains information about how to remediate a vulnerability for a set of products. // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32312-vulnerabilities-property---remediations type RemediationData struct { Category string `json:"category"` Date time.Time `json:"date"` Details string `json:"details"` Entitlements []string `json:"entitlements"` GroupIDs []string `json:"group_ids"` ProductIDs []string `json:"product_ids"` Restart RestartData `json:"restart_required"` URL string `json:"url"` } // Remediation instructions for restart of affected software. // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#323127-vulnerabilities-property---remediations---restart-required type RestartData struct { Category string `json:"category"` Details string `json:"details"` } // Machine readable flags for products related to the Vulnerability // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3235-vulnerabilities-property---flags type Flag struct { Label string `json:"label"` Date time.Time `json:"date"` GroupIDs []string `json:"group_ids"` ProductIDs []string `json:"product_ids"` } // ProductBranch is a recursive struct that contains information about a product and // its nested products. // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3221-product-tree-property---branches type ProductBranch struct { Category string `json:"category"` Name string `json:"name"` Branches []ProductBranch `json:"branches"` Product Product `json:"product,omitempty"` Relationships []Relationship `json:"relationships"` } // Relationship establishes a link between two existing full_product_name_t elements, allowing // the document producer to define a combination of two products that form a new full_product_name entry. // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3224-product-tree-property---relationships type Relationship struct { Category string `json:"category"` FullProductName Product `json:"full_product_name"` ProductRef string `json:"product_reference"` RelatesToProductRef string `json:"relates_to_product_reference"` } // Product contains information used to identify a product. // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#3124-branches-type---product type Product struct { Name string `json:"name"` ID string `json:"product_id"` IdentificationHelper map[string]string `json:"product_identification_helper"` } // Score contains score information tied to the listed products. // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html#32313-vulnerabilities-property---scores type Score struct { CVSSV2 CVSSV2 `json:"cvss_v2"` CVSSV3 CVSSV3 `json:"cvss_v3"` ProductIDs []string `json:"products"` } // CVSSV2 describes CVSSv2.0 specification as defined here: // - https://www.first.org/cvss/cvss-v2.0.json type CVSSV2 struct { AccessVector string `json:"accessVector"` AccessComplexity string `json:"accessComplexity"` Authentication string `json:"authentication"` ConfidentialityImpact string `json:"confidentialityImpact"` IntegrityImpact string `json:"integrityImpact"` AvailabilityImpact string `json:"availabilityImpact"` BaseScore float64 `json:"baseScore"` Exploitability string `json:"exploitability"` RemediationLevel string `json:"remediationLevel"` ReportConfidence string `json:"reportConfidence"` TemporalScore float64 `json:"temporalScore"` CollateralDamagePotential string `json:"collateralDamagePotential"` TargetDistribution string `json:"targetDistribution"` ConfidentialityRequirement string `json:"confidentialityRequirement"` IntegrityRequirement string `json:"integrityRequirement"` AvailabilityRequirement string `json:"availabilityRequirement"` EnvironmentalScore float64 `json:"environmentalScore"` } // CVSSV3 describes both the CVSSv3.0 and CVSSv3.1 specifications as defined here: // - https://www.first.org/cvss/cvss-v3.0.json // - https://www.first.org/cvss/cvss-v3.1.json type CVSSV3 struct { AttackComplexity string `json:"attackComplexity"` AttackVector string `json:"attackVector"` AvailabilityImpact string `json:"availabilityImpact"` BaseScore float64 `json:"baseScore"` BaseSeverity string `json:"baseSeverity"` ConfidentialityImpact string `json:"confidentialityImpact"` IntegrityImpact string `json:"integrityImpact"` PrivilegesRequired string `json:"privilegesRequired"` Scope string `json:"scope"` UserInteraction string `json:"userInteraction"` VectorString string `json:"vectorString"` Version string `json:"version"` } // Open reads and parses a given file path and returns a CSAF document // or an error if the file could not be opened or parsed. func Open(path string) (*CSAF, error) { fh, err := os.Open(path) //nolint:gosec // This is supposed to open user-specified paths if err != nil { return nil, fmt.Errorf("csaf: failed to open document: %w", err) } defer fh.Close() //nolint:errcheck csafDoc := &CSAF{} err = json.NewDecoder(fh).Decode(csafDoc) if err != nil { return nil, fmt.Errorf("csaf: failed to decode document: %w", err) } return csafDoc, nil } // FirstProductName returns the first product name in the product tree // or an empty string if no product name is found. func (csafDoc *CSAF) FirstProductName() string { return csafDoc.ProductTree.FindFirstProduct() } // FindFirstProduct recursively searches for the first product identifier in the tree // and returns it or an empty string if no product identifier is found. func (branch *ProductBranch) FindFirstProduct() string { if branch.Product.ID != "" { return branch.Product.ID } // No nested branches if branch.Branches == nil { return "" } // Recursively search for the first product identifier for _, b := range branch.Branches { if p := b.FindFirstProduct(); p != "" { return p } } return "" } // FindFirstProductName recursively searches for the first product name in the tree // and returns it or an empty string if no product name is found. func (branch *ProductBranch) FindFirstProductName() string { if branch.Product.Name != "" { return branch.Product.Name } // No nested branches if branch.Branches == nil { return "" } // Recursively search for the first product identifier for _, b := range branch.Branches { if p := b.FindFirstProductName(); p != "" { return p } } return "" } // FindProductIdentifier recursively searches for the first product identifier in the tree func (branch *ProductBranch) FindProductIdentifier(helperType, helperValue string) *Product { if len(branch.Product.IdentificationHelper) != 0 { for k := range branch.Product.IdentificationHelper { if k != helperType { continue } if branch.Product.IdentificationHelper[k] == helperValue { return &branch.Product } } } // No nested branches if branch.Branches == nil { return nil } // Recursively search for the first identifier for _, b := range branch.Branches { if p := b.FindProductIdentifier(helperType, helperValue); p != nil { return p } } return nil } type ProductList []Product // Add adds a product to the product list if its not there, matching id and // software identifiers. func (pl *ProductList) Add(p Product) { if p.ID == "" && len(p.IdentificationHelper) == 0 { return } helpers := map[string]struct{}{} for _, ih := range p.IdentificationHelper { helpers[ih] = struct{}{} } for _, tp := range *pl { if tp.ID == p.ID { return } for _, idhelper := range tp.IdentificationHelper { if _, ok := helpers[idhelper]; ok { return } } } *pl = append(ProductList{p}, *pl...) } // ListProducts returns a flat list of all products in the branch func (branch *ProductBranch) ListProducts() ProductList { list := ProductList{} list.Add(branch.Product) for _, b := range branch.Branches { for _, p := range b.ListProducts() { list.Add(p) } } return list } func (csafDoc *CSAF) ListProducts() ProductList { prods := ProductList{} for _, b := range csafDoc.ProductTree.Branches { brachProds := b.ListProducts() for _, sp := range brachProds { prods.Add(sp) } } return prods } go-vex-0.2.7/pkg/csaf/csaf_test.go000066400000000000000000000061271506046251100167320ustar00rootroot00000000000000// Copyright 2023 The OpenVEX Authors // SPDX-License-Identifier: Apache-2.0 package csaf import ( "testing" "github.com/stretchr/testify/require" ) func TestOpen(t *testing.T) { doc, err := Open("testdata/csaf.json") require.NoError(t, err) require.NotNil(t, doc) require.Equal(t, "Example VEX Document", doc.Document.Title) require.Equal(t, "CSAFPID-0001", doc.FirstProductName()) // Vulnerabilities require.Len(t, doc.Vulnerabilities, 2) require.Equal(t, "CVE-2009-4487", doc.Vulnerabilities[0].CVE) require.Equal(t, "CSAFPID-0001", doc.Vulnerabilities[0].ProductStatus["known_not_affected"][0]) require.Equal(t, "CVE-2009-4488", doc.Vulnerabilities[1].CVE) require.Equal(t, "https://example.com/foo/v1.2.3/mitigation", doc.Vulnerabilities[1].Remediations[0].URL) } func TestOpenRHAdvisory(t *testing.T) { doc, err := Open("testdata/rhsa-2020_1358.json") require.NoError(t, err) require.NotNil(t, doc) require.Equal(t, "Red Hat Security Advisory: virt:rhel security and bug fix update", doc.Document.Title) require.Equal(t, "AppStream-8.1.0.Z.MAIN.EUS", doc.FirstProductName()) require.Equal(t, "https://bugzilla.redhat.com/show_bug.cgi?id=1794290", doc.Vulnerabilities[0].IDs[0].Text) // Publisher require.Equal(t, "vendor", doc.Document.Publisher.Category) require.Equal(t, "https://access.redhat.com/security/team/contact/", doc.Document.Publisher.ContactDetails) require.Equal(t, "Red Hat Product Security is responsible for vulnerability handling across all Red Hat offerings.", doc.Document.Publisher.IssuingAuthority) require.Equal(t, "https://www.redhat.com", doc.Document.Publisher.Namespace) } func TestFindFirstProduct(t *testing.T) { doc, err := Open("testdata/csaf.json") require.NoError(t, err) require.NotNil(t, doc) prod := doc.ProductTree.FindFirstProduct() require.Equal(t, "CSAFPID-0001", prod) } func TestFindFirstProductWhenBranchesAreEmpty(t *testing.T) { doc, err := Open("testdata/csaf.json") doc.ProductTree.Branches = []ProductBranch{} require.NoError(t, err) require.NotNil(t, doc) prod := doc.ProductTree.FindFirstProduct() require.Empty(t, prod) doc.ProductTree.Branches = nil emptyFirstProduct := doc.ProductTree.FindFirstProduct() require.Empty(t, emptyFirstProduct) } func TestFindByHelper(t *testing.T) { doc, err := Open("testdata/csaf.json") require.NoError(t, err) require.NotNil(t, doc) prod := doc.ProductTree.FindProductIdentifier("purl", "pkg:maven/@1.3.4") require.NotNil(t, prod) require.Equal(t, "CSAFPID-0001", prod.ID) } func TestListProducts(t *testing.T) { doc, err := Open("testdata/csaf.json") require.NoError(t, err) require.NotNil(t, doc) prods := doc.ProductTree.Branches[0].Branches[0].Branches[0].ListProducts() require.Len(t, prods, 1) require.Equal(t, "pkg:golang/github.com/go-homedir@v1.1.0", prods[0].IdentificationHelper["purl"]) require.Len(t, doc.ProductTree.Relationships, 1) allProds := doc.ProductTree.Branches[0].ListProducts() require.NotNil(t, allProds) require.Len(t, allProds, 3) } func TestAddEmptyProduct(t *testing.T) { product := Product{} list := ProductList{} list.Add(product) require.Empty(t, list) } go-vex-0.2.7/pkg/csaf/doc.go000066400000000000000000000004111506046251100155120ustar00rootroot00000000000000/* Copyright 2023 The OpenVEX Authors SPDX-License-Identifier: Apache-2.0 */ // Package csaf provides a library for Common Security Advisory Framework Version 2.0 (CSAF) documents. // // https://docs.oasis-open.org/csaf/csaf/v2.0/os/csaf-v2.0-os.html package csaf go-vex-0.2.7/pkg/csaf/testdata/000077500000000000000000000000001506046251100162335ustar00rootroot00000000000000go-vex-0.2.7/pkg/csaf/testdata/csaf.json000066400000000000000000000106361506046251100200500ustar00rootroot00000000000000{ "document": { "category": "csaf_vex", "csaf_version": "2.0", "notes": [ { "category": "summary", "text": "Example VEX document.", "title": "Document Title" } ], "publisher": { "category": "vendor", "name": "Example Company", "namespace": "https://psirt.example.com" }, "title": "Example VEX Document", "tracking": { "current_release_date": "2022-03-03T11:00:00.000Z", "generator": { "date": "2022-03-03T11:00:00.000Z", "engine": { "name": "Secvisogram", "version": "1.11.0" } }, "id": "2022-EVD-UC-01-NA-001", "initial_release_date": "2022-03-03T11:00:00.000Z", "revision_history": [ { "date": "2022-03-03T11:00:00.000Z", "number": "1", "summary": "Initial version." } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "product": { "name": "Example Company ABC 4.2", "product_id": "CSAFPID-0001", "product_identification_helper": { "purl": "pkg:maven/@1.3.4" } }, "branches": [ { "category": "product_version", "name": "4.2", "product": { "name": "Example Company ABC 4.2", "product_id": "INTERNAL-0001", "product_identification_helper": { "purl": "pkg:golang/github.com/go-homedir@v1.1.0" } } }, { "category": "product_version", "name": "2.2", "product": { "name": "Example Company ABC 2.2", "product_id": "INTERNAL-0002", "product_identification_helper": { "purl": "pkg:golang/github.com/go-homedir@v1.0.0" } } } ], "category": "product_name", "name": "ABC" } ], "category": "vendor", "name": "Example Company" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "Example Company ABC 2.2", "product_id": "ABC:INTERNAL-0002" }, "product_reference": "INTERNAL-0002", "relates_to_product_reference": "ABC" } ] }, "vulnerabilities": [ { "cve": "CVE-2009-4487", "notes": [ { "category": "description", "text": "nginx 0.7.64 writes data to a log file without sanitizing non-printable characters, which might allow remote attackers to modify a window's title, or possibly execute arbitrary commands or overwrite files, via an HTTP request containing an escape sequence for a terminal emulator.", "title": "CVE description" } ], "product_status": { "known_not_affected": [ "CSAFPID-0001" ], "known_affected": [ "ABC:CSAFPID-0002" ] }, "threats": [ { "category": "impact", "details": "Class with vulnerable code was removed before shipping.", "product_ids": [ "CSAFPID-0001" ] } ] }, { "cve": "CVE-2009-4488", "notes": [ { "category": "description", "text": "Example software foo v1.2.3 has denial of service vulnerability", "title": "CVE description" } ], "product_status": { "known_not_affected": [ "CSAFPID-0001" ], "known_affected": [ "ABC:CSAFPID-0002" ] }, "remediations": [ { "category": "mitigation", "details": "Configure a reverse proxy to limit the size of POST request bodies to 1000 bytes before forwarding them to the vulnerable application.", "product_ids": [ "CSAFPID-0001" ], "url": "https://example.com/foo/v1.2.3/mitigation" } ], "threats": [ { "category": "impact", "details": "Class with vulnerable code was removed before shipping.", "product_ids": [ "CSAFPID-0001" ] } ] } ] } go-vex-0.2.7/pkg/csaf/testdata/openvex.json000066400000000000000000000007301506046251100206120ustar00rootroot00000000000000{ "@context": "https://openvex.dev/ns", "@id": "https://openvex.dev/docs/example/vex-9fb3463de1b57", "author": "Wolfi J Inkinson", "role": "Document Creator", "timestamp": "2023-01-08T18:02:03.647787998-06:00", "version": "1", "statements": [ { "vulnerability": "CVE-2014-123456", "products": [ "pkg:apk/distro/git@2.39.0-r1?arch=armv7", "pkg:apk/distro/git@2.39.0-r1?arch=x86_64" ], "status": "fixed" } ] } go-vex-0.2.7/pkg/csaf/testdata/rhsa-2020_1358.json000066400000000000000000045306051506046251100211410ustar00rootroot00000000000000{ "document": { "aggregate_severity": { "namespace": "https://access.redhat.com/security/updates/classification/", "text": "Important" }, "category": "csaf_vex", "csaf_version": "2.0", "distribution": { "text": "Copyright \u00a9 2023 Red Hat, Inc. All rights reserved.", "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "en", "notes": [ { "category": "summary", "text": "An update for the virt:rhel and virt-devel:rhel modules is now available for Red Hat Enterprise Linux 8.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.", "title": "Topic" }, { "category": "general", "text": "Kernel-based Virtual Machine (KVM) offers a full virtualization solution for Linux on numerous hardware platforms. The virt:rhel module contains packages which provide user-space components used to run virtual machines using KVM. The packages also provide APIs for managing and interacting with the virtualized systems.\n\nSecurity Fix(es):\n\n* QEMU: block: iscsi: OOB heap access via an unexpected response of iSCSI Server (CVE-2020-1711)\n\n* QEMU: slirp: OOB buffer access while emulating tcp protocols in tcp_emu() (CVE-2020-7039)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.\n\nBug Fix(es):\n\n* libvirtd: error : virCPUx86UpdateLive:3110 : operation failed: guest CPU doesn't match specification: missing features: fxsr_opt (BZ#1809510)", "title": "Details" }, { "category": "legal_disclaimer", "text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.", "title": "Terms of Use" } ], "publisher": { "category": "vendor", "contact_details": "https://access.redhat.com/security/team/contact/", "issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat offerings.", "name": "Red Hat Product Security", "namespace": "https://www.redhat.com" }, "references": [ { "category": "self", "summary": "https://access.redhat.com/errata/RHSA-2020:1358", "url": "https://access.redhat.com/errata/RHSA-2020:1358" }, { "category": "external", "summary": "https://access.redhat.com/security/updates/classification/#important", "url": "https://access.redhat.com/security/updates/classification/#important" }, { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/data/csaf/v2/advisories/2020/rhsa-2020_1358.json" } ], "title": "Red Hat Security Advisory: virt:rhel security and bug fix update", "tracking": { "current_release_date": "2020-04-07T14:17:00Z", "generator": { "date": "2023-03-09T23:06:00Z", "engine": { "name": "Red Hat SDEngine", "version": "3.12.2" } }, "id": "RHSA-2020:1358", "initial_release_date": "2020-04-07T14:17:00Z", "revision_history": [ { "date": "2020-04-07T14:17:00Z", "number": "1", "summary": "Current version" } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_name", "name": "Red Hat Enterprise Linux AppStream (v. 8)", "product": { "name": "Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS", "product_identification_helper": { "cpe": "cpe:/a:redhat:enterprise_linux:8::appstream" } } }, { "category": "product_name", "name": "Red Hat CodeReady Linux Builder (v. 8)", "product": { "name": "Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS", "product_identification_helper": { "cpe": "cpe:/a:redhat:enterprise_linux:8::crb" } } } ], "category": "product_family", "name": "Red Hat Enterprise Linux" }, { "branches": [ { "category": "product_version", "name": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product": { "name": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "product_id": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" } }, { "category": "product_version", "name": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product": { "name": "qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product_id": "qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" } }, { "category": "product_version", "name": "qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product": { "name": "qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product_id": "qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" } }, { "category": "product_version", "name": "qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product": { "name": "qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product_id": "qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" } }, { "category": "product_version", "name": "qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product": { "name": "qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product_id": "qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" } }, { "category": "product_version", "name": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product": { "name": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product_id": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" } }, { "category": "product_version", "name": "qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product": { "name": "qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product_id": "qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" } }, { "category": "product_version", "name": "qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product": { "name": "qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product_id": "qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" } }, { "category": "product_version", "name": "qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product": { "name": "qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product_id": "qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" } }, { "category": "product_version", "name": "qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product": { "name": "qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product_id": "qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" } }, { "category": "product_version", "name": "qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product": { "name": "qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product_id": "qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" } }, { "category": "product_version", "name": "qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product": { "name": "qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product_id": "qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" } }, { "category": "product_version", "name": "qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product": { "name": "qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product_id": "qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" } }, { "category": "product_version", "name": "qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product": { "name": "qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product_id": "qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" } }, { "category": "product_version", "name": "qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product": { "name": "qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product_id": "qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" } }, { "category": "product_version", "name": "qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product": { "name": "qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product_id": "qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" } }, { "category": "product_version", "name": "qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product": { "name": "qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product_id": "qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" } }, { "category": "product_version", "name": "qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product": { "name": "qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product_id": "qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" } }, { "category": "product_version", "name": "qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product": { "name": "qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product_id": "qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" } }, { "category": "product_version", "name": "qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product": { "name": "qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product_id": "qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" } }, { "category": "product_version", "name": "qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product": { "name": "qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product_id": "qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" } }, { "category": "product_version", "name": "qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product": { "name": "qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "product_id": "qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" } }, { "category": "product_version", "name": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } }, { "category": "product_version", "name": "virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product": { "name": "virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "product_id": "virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" } } ], "category": "architecture", "name": "aarch64" }, { "branches": [ { "category": "product_version", "name": "SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.src", "product": { "name": "SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.src", "product_id": "SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.src" } }, { "category": "product_version", "name": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.src", "product": { "name": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.src", "product_id": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.src" } }, { "category": "product_version", "name": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.src", "product": { "name": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.src", "product_id": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.src" } }, { "category": "product_version", "name": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.src", "product": { "name": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.src", "product_id": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.src" } }, { "category": "product_version", "name": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.src", "product": { "name": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.src", "product_id": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.src" } }, { "category": "product_version", "name": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.src", "product": { "name": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.src", "product_id": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.src" } }, { "category": "product_version", "name": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.src", "product": { "name": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.src", "product_id": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.src" } }, { "category": "product_version", "name": "libvirt-python-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.src", "product": { "name": "libvirt-python-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.src", "product_id": "libvirt-python-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.src" } }, { "category": "product_version", "name": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.src", "product": { "name": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.src", "product_id": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.src" } }, { "category": "product_version", "name": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.src", "product": { "name": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.src", "product_id": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.src" } }, { "category": "product_version", "name": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.src", "product": { "name": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.src", "product_id": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.src" } }, { "category": "product_version", "name": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.src", "product": { "name": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.src", "product_id": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.src" } }, { "category": "product_version", "name": "seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.src", "product": { "name": "seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.src", "product_id": "seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.src" } }, { "category": "product_version", "name": "sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.src", "product": { "name": "sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.src", "product_id": "sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.src" } }, { "category": "product_version", "name": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.src", "product": { "name": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.src", "product_id": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.src" } } ], "category": "architecture", "name": "src" }, { "branches": [ { "category": "product_version", "name": "SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.noarch", "product": { "name": "SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.noarch", "product_id": "SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.noarch" } }, { "category": "product_version", "name": "libguestfs-bash-completion-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "product": { "name": "libguestfs-bash-completion-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "product_id": "libguestfs-bash-completion-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch" } }, { "category": "product_version", "name": "libguestfs-inspect-icons-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "product": { "name": "libguestfs-inspect-icons-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "product_id": "libguestfs-inspect-icons-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch" } }, { "category": "product_version", "name": "libguestfs-javadoc-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "product": { "name": "libguestfs-javadoc-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "product_id": "libguestfs-javadoc-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch" } }, { "category": "product_version", "name": "libguestfs-man-pages-ja-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "product": { "name": "libguestfs-man-pages-ja-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "product_id": "libguestfs-man-pages-ja-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch" } }, { "category": "product_version", "name": "libguestfs-man-pages-uk-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "product": { "name": "libguestfs-man-pages-uk-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "product_id": "libguestfs-man-pages-uk-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch" } }, { "category": "product_version", "name": "libguestfs-tools-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "product": { "name": "libguestfs-tools-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "product_id": "libguestfs-tools-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch" } }, { "category": "product_version", "name": "nbdkit-bash-completion-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.noarch", "product": { "name": "nbdkit-bash-completion-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.noarch", "product_id": "nbdkit-bash-completion-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.noarch" } }, { "category": "product_version", "name": "seabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch", "product": { "name": "seabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch", "product_id": "seabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch" } }, { "category": "product_version", "name": "seavgabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch", "product": { "name": "seavgabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch", "product_id": "seavgabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch" } }, { "category": "product_version", "name": "sgabios-bin-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.noarch", "product": { "name": "sgabios-bin-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.noarch", "product_id": "sgabios-bin-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.noarch" } } ], "category": "architecture", "name": "noarch" }, { "branches": [ { "category": "product_version", "name": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product": { "name": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "product_id": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" } }, { "category": "product_version", "name": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product": { "name": "qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product_id": "qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" } }, { "category": "product_version", "name": "qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product": { "name": "qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product_id": "qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" } }, { "category": "product_version", "name": "qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product": { "name": "qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product_id": "qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" } }, { "category": "product_version", "name": "qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product": { "name": "qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product_id": "qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" } }, { "category": "product_version", "name": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product": { "name": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product_id": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" } }, { "category": "product_version", "name": "qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product": { "name": "qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product_id": "qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" } }, { "category": "product_version", "name": "qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product": { "name": "qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product_id": "qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" } }, { "category": "product_version", "name": "qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product": { "name": "qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product_id": "qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" } }, { "category": "product_version", "name": "qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product": { "name": "qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product_id": "qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" } }, { "category": "product_version", "name": "qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product": { "name": "qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product_id": "qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" } }, { "category": "product_version", "name": "qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product": { "name": "qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product_id": "qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" } }, { "category": "product_version", "name": "qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product": { "name": "qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product_id": "qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" } }, { "category": "product_version", "name": "qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product": { "name": "qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product_id": "qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" } }, { "category": "product_version", "name": "qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product": { "name": "qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product_id": "qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" } }, { "category": "product_version", "name": "qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product": { "name": "qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product_id": "qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" } }, { "category": "product_version", "name": "qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product": { "name": "qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product_id": "qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" } }, { "category": "product_version", "name": "qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product": { "name": "qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product_id": "qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" } }, { "category": "product_version", "name": "qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product": { "name": "qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product_id": "qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" } }, { "category": "product_version", "name": "qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product": { "name": "qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product_id": "qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" } }, { "category": "product_version", "name": "qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product": { "name": "qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product_id": "qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" } }, { "category": "product_version", "name": "qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product": { "name": "qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "product_id": "qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" } }, { "category": "product_version", "name": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } }, { "category": "product_version", "name": "virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product": { "name": "virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "product_id": "virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" } } ], "category": "architecture", "name": "ppc64le" }, { "branches": [ { "category": "product_version", "name": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product": { "name": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "product_id": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" } }, { "category": "product_version", "name": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product": { "name": "qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product_id": "qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" } }, { "category": "product_version", "name": "qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product": { "name": "qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product_id": "qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" } }, { "category": "product_version", "name": "qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product": { "name": "qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product_id": "qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" } }, { "category": "product_version", "name": "qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product": { "name": "qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product_id": "qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" } }, { "category": "product_version", "name": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product": { "name": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product_id": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" } }, { "category": "product_version", "name": "qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product": { "name": "qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product_id": "qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" } }, { "category": "product_version", "name": "qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product": { "name": "qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product_id": "qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" } }, { "category": "product_version", "name": "qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product": { "name": "qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product_id": "qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" } }, { "category": "product_version", "name": "qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product": { "name": "qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product_id": "qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" } }, { "category": "product_version", "name": "qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product": { "name": "qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product_id": "qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" } }, { "category": "product_version", "name": "qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product": { "name": "qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product_id": "qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" } }, { "category": "product_version", "name": "qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product": { "name": "qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product_id": "qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" } }, { "category": "product_version", "name": "qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product": { "name": "qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product_id": "qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" } }, { "category": "product_version", "name": "qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product": { "name": "qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product_id": "qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" } }, { "category": "product_version", "name": "qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product": { "name": "qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product_id": "qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" } }, { "category": "product_version", "name": "qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product": { "name": "qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product_id": "qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" } }, { "category": "product_version", "name": "qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product": { "name": "qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product_id": "qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" } }, { "category": "product_version", "name": "qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product": { "name": "qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product_id": "qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" } }, { "category": "product_version", "name": "qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product": { "name": "qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product_id": "qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" } }, { "category": "product_version", "name": "qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product": { "name": "qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product_id": "qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" } }, { "category": "product_version", "name": "qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product": { "name": "qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "product_id": "qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" } }, { "category": "product_version", "name": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } }, { "category": "product_version", "name": "virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product": { "name": "virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "product_id": "virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" } } ], "category": "architecture", "name": "s390x" }, { "branches": [ { "category": "product_version", "name": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product": { "name": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "product_id": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" } }, { "category": "product_version", "name": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "nbdkit-plugin-vddk-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "nbdkit-plugin-vddk-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "nbdkit-plugin-vddk-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "nbdkit-plugin-vddk-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "nbdkit-plugin-vddk-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "nbdkit-plugin-vddk-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product": { "name": "qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product_id": "qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" } }, { "category": "product_version", "name": "qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product": { "name": "qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product_id": "qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" } }, { "category": "product_version", "name": "qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product": { "name": "qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product_id": "qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" } }, { "category": "product_version", "name": "qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product": { "name": "qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product_id": "qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" } }, { "category": "product_version", "name": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product": { "name": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product_id": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" } }, { "category": "product_version", "name": "qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product": { "name": "qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product_id": "qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" } }, { "category": "product_version", "name": "qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product": { "name": "qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product_id": "qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" } }, { "category": "product_version", "name": "qemu-kvm-block-gluster-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product": { "name": "qemu-kvm-block-gluster-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product_id": "qemu-kvm-block-gluster-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" } }, { "category": "product_version", "name": "qemu-kvm-block-gluster-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product": { "name": "qemu-kvm-block-gluster-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product_id": "qemu-kvm-block-gluster-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" } }, { "category": "product_version", "name": "qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product": { "name": "qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product_id": "qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" } }, { "category": "product_version", "name": "qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product": { "name": "qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product_id": "qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" } }, { "category": "product_version", "name": "qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product": { "name": "qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product_id": "qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" } }, { "category": "product_version", "name": "qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product": { "name": "qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product_id": "qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" } }, { "category": "product_version", "name": "qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product": { "name": "qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product_id": "qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" } }, { "category": "product_version", "name": "qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product": { "name": "qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product_id": "qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" } }, { "category": "product_version", "name": "qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product": { "name": "qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product_id": "qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" } }, { "category": "product_version", "name": "qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product": { "name": "qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product_id": "qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" } }, { "category": "product_version", "name": "qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product": { "name": "qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product_id": "qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" } }, { "category": "product_version", "name": "qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product": { "name": "qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product_id": "qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" } }, { "category": "product_version", "name": "qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product": { "name": "qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product_id": "qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" } }, { "category": "product_version", "name": "qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product": { "name": "qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product_id": "qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" } }, { "category": "product_version", "name": "qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product": { "name": "qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product_id": "qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" } }, { "category": "product_version", "name": "qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product": { "name": "qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "product_id": "qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" } }, { "category": "product_version", "name": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "virt-p2v-maker-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "virt-p2v-maker-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "virt-p2v-maker-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "virt-v2v-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "virt-v2v-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "virt-v2v-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } }, { "category": "product_version", "name": "virt-v2v-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product": { "name": "virt-v2v-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "product_id": "virt-v2v-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_version", "name": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product_id": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product_id": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product_id": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product_id": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.i686", "product_id": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "product_id": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "product_id": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "product_id": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "product_id": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "product_id": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "product_id": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "product_id": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "product_id": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "product_id": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product": { "name": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "product_id": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" } }, { "category": "product_version", "name": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "product_id": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "product_id": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "product_id": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "product_id": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "product_id": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "product_id": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "product_id": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product_id": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product_id": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product_id": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "product_id": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "product_id": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "product_id": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product_id": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product_id": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product_id": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product_id": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "product_id": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "product_id": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product_id": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "product_id": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" } }, { "category": "product_version", "name": "sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.i686", "product": { "name": "sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.i686", "product_id": "sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.i686" } } ], "category": "architecture", "name": "i686" } ], "category": "vendor", "name": "Red Hat" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.noarch" }, "product_reference": "SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.noarch", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.src" }, "product_reference": "SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.src", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.src" }, "product_reference": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.src", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.src" }, "product_reference": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.src", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-bash-completion-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-bash-completion-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch" }, "product_reference": "libguestfs-bash-completion-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-inspect-icons-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-inspect-icons-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch" }, "product_reference": "libguestfs-inspect-icons-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-javadoc-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-javadoc-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch" }, "product_reference": "libguestfs-javadoc-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-man-pages-ja-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-man-pages-ja-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch" }, "product_reference": "libguestfs-man-pages-ja-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-man-pages-uk-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-man-pages-uk-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch" }, "product_reference": "libguestfs-man-pages-uk-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-tools-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch" }, "product_reference": "libguestfs-tools-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.src" }, "product_reference": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.src", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.src" }, "product_reference": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.src", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.src" }, "product_reference": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.src", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.src" }, "product_reference": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.src", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64" }, "product_reference": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le" }, "product_reference": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x" }, "product_reference": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64" }, "product_reference": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-python-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.src" }, "product_reference": "libvirt-python-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.src", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.src" }, "product_reference": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.src", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-bash-completion-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-bash-completion-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.noarch" }, "product_reference": "nbdkit-bash-completion-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.noarch", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-vddk-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-vddk-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "nbdkit-plugin-vddk-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-vddk-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-vddk-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "nbdkit-plugin-vddk-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.src" }, "product_reference": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.src", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.src" }, "product_reference": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.src", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" }, "product_reference": "qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" }, "product_reference": "qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" }, "product_reference": "qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" }, "product_reference": "qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" }, "product_reference": "qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" }, "product_reference": "qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" }, "product_reference": "qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" }, "product_reference": "qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" }, "product_reference": "qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" }, "product_reference": "qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" }, "product_reference": "qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" }, "product_reference": "qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" }, "product_reference": "qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" }, "product_reference": "qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" }, "product_reference": "qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" }, "product_reference": "qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" }, "product_reference": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" }, "product_reference": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" }, "product_reference": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.src" }, "product_reference": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.src", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" }, "product_reference": "qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" }, "product_reference": "qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" }, "product_reference": "qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" }, "product_reference": "qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" }, "product_reference": "qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" }, "product_reference": "qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" }, "product_reference": "qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" }, "product_reference": "qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" }, "product_reference": "qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-gluster-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-gluster-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" }, "product_reference": "qemu-kvm-block-gluster-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-gluster-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-gluster-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" }, "product_reference": "qemu-kvm-block-gluster-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" }, "product_reference": "qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" }, "product_reference": "qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" }, "product_reference": "qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" }, "product_reference": "qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" }, "product_reference": "qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" }, "product_reference": "qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" }, "product_reference": "qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" }, "product_reference": "qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" }, "product_reference": "qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" }, "product_reference": "qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" }, "product_reference": "qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" }, "product_reference": "qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" }, "product_reference": "qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" }, "product_reference": "qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" }, "product_reference": "qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" }, "product_reference": "qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" }, "product_reference": "qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" }, "product_reference": "qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" }, "product_reference": "qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" }, "product_reference": "qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" }, "product_reference": "qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" }, "product_reference": "qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" }, "product_reference": "qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" }, "product_reference": "qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" }, "product_reference": "qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" }, "product_reference": "qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" }, "product_reference": "qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" }, "product_reference": "qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" }, "product_reference": "qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" }, "product_reference": "qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" }, "product_reference": "qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" }, "product_reference": "qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" }, "product_reference": "qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" }, "product_reference": "qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" }, "product_reference": "qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" }, "product_reference": "qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" }, "product_reference": "qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" }, "product_reference": "qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" }, "product_reference": "qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" }, "product_reference": "qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" }, "product_reference": "qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" }, "product_reference": "qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" }, "product_reference": "qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" }, "product_reference": "qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" }, "product_reference": "qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" }, "product_reference": "qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" }, "product_reference": "qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" }, "product_reference": "qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.src" }, "product_reference": "seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.src", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "seabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:seabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch" }, "product_reference": "seabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "seavgabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:seavgabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch" }, "product_reference": "seavgabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.src" }, "product_reference": "sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.src", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "sgabios-bin-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.noarch as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:sgabios-bin-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.noarch" }, "product_reference": "sgabios-bin-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.noarch", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.src as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.src" }, "product_reference": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.src", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "virt-p2v-maker-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:virt-p2v-maker-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "virt-p2v-maker-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "virt-v2v-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:virt-v2v-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "virt-v2v-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "virt-v2v-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 8)", "product_id": "AppStream-8.1.0.Z.MAIN.EUS:virt-v2v-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "virt-v2v-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "AppStream-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.src as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.src" }, "product_reference": "SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.src", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686" }, "product_reference": "libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64" }, "product_reference": "ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le" }, "product_reference": "ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x" }, "product_reference": "ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64" }, "product_reference": "ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" }, "product_reference": "qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" }, "product_reference": "qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" }, "product_reference": "qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" }, "product_reference": "qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64" }, "product_reference": "qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le" }, "product_reference": "qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x" }, "product_reference": "qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64" }, "product_reference": "qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.src as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.src" }, "product_reference": "seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.src", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.i686 as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.i686" }, "product_reference": "sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.i686", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.src as a component of Red Hat CodeReady Linux Builder (v. 8)", "product_id": "CRB-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.src" }, "product_reference": "sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.src", "relates_to_product_reference": "CRB-8.1.0.Z.MAIN.EUS" } ] }, "vulnerabilities": [ { "acknowledgments": [ { "names": [ "Peter Turschmid", "Raphael Norwitz", "Felipe Franciosi" ], "organization": "nutanix.com" } ], "cve": "CVE-2020-1711", "cwe": { "id": "CWE-122", "name": "Heap-based Buffer Overflow" }, "discovery_date": "2020-01-20T00:00:00Z", "ids": [ { "system_name": "Red Hat Bugzilla", "text": "https://bugzilla.redhat.com/show_bug.cgi?id=1794290" } ], "notes": [ { "category": "general", "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product's status, and are included for informational purposes to better understand the severity of this vulnerability.", "title": "CVSS score applicability" }, { "category": "description", "text": "An out-of-bounds heap buffer access flaw was found in the way the iSCSI Block driver in QEMU handled a response coming from an iSCSI server while checking the status of a Logical Address Block (LBA) in an iscsi_co_block_status() routine. A remote user could use this flaw to crash the QEMU process, resulting in a denial of service or potential execution of arbitrary code with privileges of the QEMU process on the host.", "title": "Vulnerability description" }, { "category": "summary", "text": "QEMU: block: iscsi: OOB heap access via an unexpected response of iSCSI Server", "title": "Vulnerability summary" } ], "product_status": { "fixed": [ "AppStream-8.1.0.Z.MAIN.EUS:SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-bash-completion-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-inspect-icons-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-javadoc-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-man-pages-ja-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-man-pages-uk-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.src", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-bash-completion-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-vddk-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-vddk-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.src", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-gluster-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-gluster-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:seabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:seavgabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:sgabios-bin-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-p2v-maker-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-v2v-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-v2v-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.src", "CRB-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.src", "CRB-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.src" ] }, "references": [ { "category": "external", "summary": "CVE-2020-1711", "url": "https://access.redhat.com/security/cve/CVE-2020-1711" }, { "category": "external", "summary": "bz#1794290: CVE-2020-1711 QEMU: block: iscsi: OOB heap access via an unexpected response of iSCSI Server", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1794290" } ], "release_date": "2020-01-23T00:00:00Z", "remediations": [ { "category": "vendor_fix", "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258", "product_ids": [ "AppStream-8.1.0.Z.MAIN.EUS:SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-bash-completion-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-inspect-icons-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-javadoc-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-man-pages-ja-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-man-pages-uk-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.src", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-bash-completion-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-vddk-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-vddk-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.src", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-gluster-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-gluster-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:seabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:seavgabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:sgabios-bin-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-p2v-maker-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-v2v-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-v2v-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.src", "CRB-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.src", "CRB-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.src" ], "url": "https://access.redhat.com/errata/RHSA-2020:1358" } ], "scores": [ { "cvss_v3": { "attackComplexity": "HIGH", "attackVector": "NETWORK", "availabilityImpact": "LOW", "baseScore": 6.0, "baseSeverity": "MEDIUM", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "privilegesRequired": "LOW", "scope": "CHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:C/C:L/I:L/A:L", "version": "3.1" }, "products": [ "AppStream-8.1.0.Z.MAIN.EUS:SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-bash-completion-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-inspect-icons-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-javadoc-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-man-pages-ja-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-man-pages-uk-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.src", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-bash-completion-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-vddk-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-vddk-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.src", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-gluster-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-gluster-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:seabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:seavgabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:sgabios-bin-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-p2v-maker-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-v2v-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-v2v-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.src", "CRB-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.src", "CRB-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.src" ] } ], "threats": [ { "category": "impact", "date": "2020-01-20T00:00:00Z", "details": "Important" } ], "title": "CVE-2020-1711 QEMU: block: iscsi: OOB heap access via an unexpected response of iSCSI Server" }, { "acknowledgments": [ { "names": [ "Vishnu Dev TJ" ] } ], "cve": "CVE-2020-7039", "cwe": { "id": "CWE-122", "name": "Heap-based Buffer Overflow" }, "discovery_date": "2019-08-05T00:00:00Z", "ids": [ { "system_name": "Red Hat Bugzilla", "text": "https://bugzilla.redhat.com/show_bug.cgi?id=1791551" } ], "notes": [ { "category": "general", "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product's status, and are included for informational purposes to better understand the severity of this vulnerability.", "title": "CVSS score applicability" }, { "category": "description", "text": "A heap buffer overflow issue was found in the SLiRP networking implementation of the QEMU emulator. This flaw occurs in the tcp_emu() routine while emulating IRC and other protocols. An attacker could use this flaw to crash the QEMU process on the host, resulting in a denial of service or potential execution of arbitrary code with privileges of the QEMU process.", "title": "Vulnerability description" }, { "category": "summary", "text": "QEMU: slirp: OOB buffer access while emulating tcp protocols in tcp_emu()", "title": "Vulnerability summary" } ], "product_status": { "fixed": [ "AppStream-8.1.0.Z.MAIN.EUS:SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-bash-completion-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-inspect-icons-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-javadoc-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-man-pages-ja-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-man-pages-uk-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.src", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-bash-completion-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-vddk-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-vddk-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.src", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-gluster-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-gluster-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:seabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:seavgabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:sgabios-bin-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-p2v-maker-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-v2v-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-v2v-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.src", "CRB-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.src", "CRB-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.src" ] }, "references": [ { "category": "external", "summary": "CVE-2020-7039", "url": "https://access.redhat.com/security/cve/CVE-2020-7039" }, { "category": "external", "summary": "bz#1791551: CVE-2020-7039 QEMU: slirp: OOB buffer access while emulating tcp protocols in tcp_emu()", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=1791551" } ], "release_date": "2020-01-07T00:00:00Z", "remediations": [ { "category": "vendor_fix", "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258", "product_ids": [ "AppStream-8.1.0.Z.MAIN.EUS:SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-bash-completion-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-inspect-icons-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-javadoc-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-man-pages-ja-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-man-pages-uk-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.src", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-bash-completion-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-vddk-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-vddk-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.src", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-gluster-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-gluster-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:seabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:seavgabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:sgabios-bin-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-p2v-maker-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-v2v-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-v2v-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.src", "CRB-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.src", "CRB-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.src" ], "url": "https://access.redhat.com/errata/RHSA-2020:1358" } ], "scores": [ { "cvss_v3": { "attackComplexity": "HIGH", "attackVector": "NETWORK", "availabilityImpact": "LOW", "baseScore": 5.6, "baseSeverity": "MEDIUM", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "privilegesRequired": "NONE", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L", "version": "3.1" }, "products": [ "AppStream-8.1.0.Z.MAIN.EUS:SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-bash-completion-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-benchmarking-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-debugsource-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gfs2-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-gobject-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-inspect-icons-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-java-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-javadoc-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-man-pages-ja-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-man-pages-uk-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rescue-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-rsync-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-tools-c-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libguestfs-xfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.src", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-qemu-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-gluster-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-daemon-kvm-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-lock-sanlock-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:lua-guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-bash-completion-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-basic-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-debugsource-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-devel-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-example-plugins-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-gzip-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python-common-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-python3-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-vddk-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-vddk-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:nbdkit-plugin-xz-debuginfo-0:1.4.2-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Guestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-guest-agent-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-img-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.src", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-curl-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-gluster-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-gluster-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-iscsi-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-rbd-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-block-ssh-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-common-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-core-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "AppStream-8.1.0.Z.MAIN.EUS:qemu-kvm-debugsource-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:ruby-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:seabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:seavgabios-bin-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:sgabios-bin-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.noarch", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.src", "AppStream-8.1.0.Z.MAIN.EUS:supermin-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debuginfo-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-debugsource-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:supermin-devel-0:5.1.19-9.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "AppStream-8.1.0.Z.MAIN.EUS:virt-dib-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-p2v-maker-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-v2v-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "AppStream-8.1.0.Z.MAIN.EUS:virt-v2v-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:SLOF-0:20171214-6.gitfa98132.module+el8.1.0+4066+0f1aadab.src", "CRB-8.1.0.Z.MAIN.EUS:hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:hivex-debugsource-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libguestfs-winsupport-0:8.0-4.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-debugsource-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-devel-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-utils-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libiscsi-utils-debuginfo-0:1.18.0-8.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-admin-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-admin-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-bash-completion-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-client-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-client-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-config-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-interface-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-network-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nodedev-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-nwfilter-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-secret-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-core-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-disk-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-iscsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-logical-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-mpath-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-rbd-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-daemon-driver-storage-scsi-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-dbus-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-dbus-debuginfo-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-dbus-debugsource-0:1.2.0-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-debugsource-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-devel-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-docs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-libs-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-libs-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-nss-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-nss-debuginfo-0:4.5.0-35.3.module+el8.1.0+5931+8897e7e1.i686", "CRB-8.1.0.Z.MAIN.EUS:libvirt-python-debugsource-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-debugsource-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-devel-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-libs-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:netcf-libs-debuginfo-0:0.2.8-12.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-hivex-devel-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-debuginfo-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.aarch64", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.s390x", "CRB-8.1.0.Z.MAIN.EUS:ocaml-libguestfs-devel-1:1.38.4-14.module+el8.1.0+4066+0f1aadab.x86_64", "CRB-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debuginfo-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-Sys-Virt-debugsource-0:4.5.0-5.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:perl-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-libvirt-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:python3-libvirt-debuginfo-0:4.5.0-2.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.aarch64", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.ppc64le", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.s390x", "CRB-8.1.0.Z.MAIN.EUS:qemu-kvm-tests-debuginfo-15:2.12.0-88.module+el8.1.0+5708+85d8e057.3.x86_64", "CRB-8.1.0.Z.MAIN.EUS:ruby-hivex-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:ruby-hivex-debuginfo-0:1.3.15-7.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:seabios-0:1.11.1-4.module+el8.1.0+4066+0f1aadab.src", "CRB-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.i686", "CRB-8.1.0.Z.MAIN.EUS:sgabios-1:0.20170427git-3.module+el8.1.0+4066+0f1aadab.src" ] } ], "threats": [ { "category": "impact", "date": "2019-08-05T00:00:00Z", "details": "Important" } ], "title": "CVE-2020-7039 QEMU: slirp: OOB buffer access while emulating tcp protocols in tcp_emu()" } ] }go-vex-0.2.7/pkg/sarif/000077500000000000000000000000001506046251100146125ustar00rootroot00000000000000go-vex-0.2.7/pkg/sarif/sarif.go000066400000000000000000000016241506046251100162500ustar00rootroot00000000000000// Copyright 2023 The OpenVEX Authors // SPDX-License-Identifier: Apache-2.0 package sarif import ( "encoding/json" "fmt" "io" "os" gosarif "github.com/owenrumney/go-sarif/sarif" ) type Report struct { gosarif.Report } func Open(path string) (*Report, error) { data, err := os.ReadFile(path) //nolint:gosec // This is supposed to open user-specified paths if err != nil { return nil, fmt.Errorf("opening yaml file: %w", err) } report := New() if err := json.Unmarshal(data, report); err != nil { return nil, fmt.Errorf("unmarshalling vex data: %w", err) } return report, nil } func New() *Report { return &Report{ Report: gosarif.Report{}, } } func (report *Report) ToJSON(w io.Writer) error { enc := json.NewEncoder(w) enc.SetIndent("", " ") enc.SetEscapeHTML(false) if err := enc.Encode(report); err != nil { return fmt.Errorf("encoding sarif report: %w", err) } return nil } go-vex-0.2.7/pkg/vex/000077500000000000000000000000001506046251100143105ustar00rootroot00000000000000go-vex-0.2.7/pkg/vex/compat.go000066400000000000000000000066711506046251100161340ustar00rootroot00000000000000/* Copyright 2023 The OpenVEX Authors SPDX-License-Identifier: Apache-2.0 */ package vex import ( "encoding/json" "fmt" "strconv" "time" ) type legacyParser func([]byte) (*VEX, error) // getLegacyVersionParser returns a parser that can read older OpenVEX formats. The // project will have a version skew policy and try to support older versions // up to a point. If a version is not supported, this function returns nil. func getLegacyVersionParser(version string) legacyParser { switch version { case "v0.0.1": return parse001 default: return nil } } var parse001 = func(data []byte) (*VEX, error) { oldVex := &vex001{} if err := json.Unmarshal(data, oldVex); err != nil { return nil, fmt.Errorf( "decoding OpenVEX v0.0.1 in compatibility mode: %w", err, ) } newVex := New() newVex.Timestamp = oldVex.Timestamp newVex.Author = oldVex.Author newVex.AuthorRole = oldVex.AuthorRole newVex.ID = oldVex.ID newVex.Tooling = oldVex.Tooling ver, err := strconv.Atoi(oldVex.Version) if err == nil { newVex.Version = ver } // Transcode the statements for _, oldStmt := range oldVex.Statements { newStmt := Statement{} newStmt.Status = Status(oldStmt.Status) newStmt.StatusNotes = oldStmt.StatusNotes newStmt.ActionStatement = oldStmt.ActionStatement newStmt.ActionStatementTimestamp = oldStmt.ActionStatementTimestamp newStmt.Justification = Justification(oldStmt.Justification) newStmt.ImpactStatement = oldStmt.ImpactStatement newStmt.Timestamp = oldStmt.Timestamp // Add the vulnerability newStmt.Vulnerability = Vulnerability{ Name: VulnerabilityID(oldStmt.Vulnerability), Description: oldStmt.VulnDescription, } // Transcode the products from the old statement for _, productID := range oldStmt.Products { newProduct := Product{ Component: Component{ ID: productID, }, Subcomponents: []Subcomponent{}, } for _, sc := range oldStmt.Subcomponents { if sc == "" { continue } newProduct.Subcomponents = append(newProduct.Subcomponents, Subcomponent{ Component: Component{ ID: sc, }, }) } newStmt.Products = append(newStmt.Products, newProduct) } newVex.Statements = append(newVex.Statements, newStmt) } return &newVex, nil } type vex001 struct { Context string `json:"@context"` ID string `json:"@id"` Author string `json:"author"` AuthorRole string `json:"role"` Timestamp *time.Time `json:"timestamp"` Version string `json:"version"` Tooling string `json:"tooling,omitempty"` Supplier string `json:"supplier,omitempty"` Statements []statement001 `json:"statements"` } type statement001 struct { Vulnerability string `json:"vulnerability,omitempty"` VulnDescription string `json:"vuln_description,omitempty"` Timestamp *time.Time `json:"timestamp,omitempty"` Products []string `json:"products,omitempty"` Subcomponents []string `json:"subcomponents,omitempty"` Status string `json:"status"` StatusNotes string `json:"status_notes,omitempty"` Justification string `json:"justification,omitempty"` ImpactStatement string `json:"impact_statement,omitempty"` ActionStatement string `json:"action_statement,omitempty"` ActionStatementTimestamp *time.Time `json:"action_statement_timestamp,omitempty"` } go-vex-0.2.7/pkg/vex/compat_test.go000066400000000000000000000031641506046251100171650ustar00rootroot00000000000000// Copyright 2023 The OpenVEX Authors // SPDX-License-Identifier: Apache-2.0 package vex import ( "os" "testing" "time" "github.com/google/go-cmp/cmp" "github.com/stretchr/testify/require" ) func TestParse001(t *testing.T) { d, err := time.Parse(time.RFC3339, "2023-01-08T18:02:03.647787998-06:00") require.NoError(t, err) for msg, tc := range map[string]struct { path string shouldErr bool expected *VEX }{ "normal": { "testdata/v0.0.1.json", false, &VEX{ Metadata: Metadata{ Context: "https://openvex.dev/ns/v" + SpecVersion, ID: "https://openvex.dev/docs/example/vex-9fb3463de1b57", Author: "Wolfi J Inkinson", AuthorRole: "Document Creator", Timestamp: &d, Version: 1, }, Statements: []Statement{ { Vulnerability: Vulnerability{Name: "CVE-2023-12345"}, Products: []Product{ {Component: Component{ID: "pkg:apk/wolfi/git@2.39.0-r1?arch=armv7"}, Subcomponents: []Subcomponent{}}, {Component: Component{ID: "pkg:apk/wolfi/git@2.39.0-r1?arch=x86_64"}, Subcomponents: []Subcomponent{}}, }, Status: "fixed", }, }, }, }, } { data, err := os.ReadFile(tc.path) require.NoError(t, err, msg) doc, err := parse001(data) if tc.shouldErr { require.Error(t, err, msg) return } require.True(t, cmp.Equal(doc.Metadata, tc.expected.Metadata), "%+v + %+v", doc.Metadata, tc.expected.Metadata) require.Equal(t, doc.Statements, tc.expected.Statements, "%+v + %+v", doc.Statements, tc.expected.Statements) require.True(t, cmp.Equal(doc, tc.expected), msg) require.NoError(t, err, msg) } } go-vex-0.2.7/pkg/vex/component.go000066400000000000000000000043401506046251100166420ustar00rootroot00000000000000/* Copyright 2023 The OpenVEX Authors SPDX-License-Identifier: Apache-2.0 */ package vex import "strings" // Component abstracts the common construct shared by product and subcomponents // allowing OpenVEX statements to point to a piece of software by referencing it // by hash or identifier. // // The ID should be an IRI uniquely identifying the product. Software can be // referenced as a VEX product or subcomponent using only its IRI or it may be // referenced by its crptographic hashes and/or other identifiers but, in no case, // must an IRI describe two different pieces of software or used to describe // a range of software. type Component struct { // ID is an IRI identifying the component. It is optional as the component // can also be identified using hashes or software identifiers. ID string `json:"@id,omitempty"` // Hashes is a map of hashes to identify the component using cryptographic // hashes. Hashes map[Algorithm]Hash `json:"hashes,omitempty"` // Identifiers is a list of software identifiers that describe the component. Identifiers map[IdentifierType]string `json:"identifiers,omitempty"` // Supplier is an optional machine-readable identifier for the supplier of // the component. Valid examples include email address or IRIs. Supplier string `json:"supplier,omitempty"` } // Matches returns true if one of the components identifiers match a string. // All types except purl are checked string vs string. Purls are a special // case and can match from more generic to more specific. // Note that a future iterarion of this function will treat CPEs in the same // way. func (c *Component) Matches(identifier string) bool { // If we have an exact match in the ID, match if c.ID == identifier && c.ID != "" { return true } else if strings.HasPrefix(c.ID, "pkg:") { // ... but the identifier can be a purl. If it is, then do // a purl comparison: if PurlMatches(c.ID, identifier) { return true } } for t, id := range c.Identifiers { if id == identifier { return true } if t == PURL && strings.HasPrefix(identifier, "pkg:") { if PurlMatches(id, identifier) { return true } } } for _, hashVal := range c.Hashes { if hashVal == Hash(identifier) { return true } } return false } go-vex-0.2.7/pkg/vex/component_test.go000066400000000000000000000035711506046251100177060ustar00rootroot00000000000000// Copyright 2023 The OpenVEX Authors // SPDX-License-Identifier: Apache-2.0 package vex import ( "testing" "github.com/stretchr/testify/require" ) func TestComponentMatches(t *testing.T) { for testCase, tc := range map[string]struct { identifier string component *Component mustMatch bool }{ "iri": { "https://example.com/document.spdx.json#node", &Component{ID: "https://example.com/document.spdx.json#node"}, true, }, "misc identifier": { "madeup-2023-12345", &Component{ Identifiers: map[IdentifierType]string{"customIdentifier": "madeup-2023-12345"}, }, true, }, "wrong misc identifier": { "madeup-2023-12345", &Component{ Identifiers: map[IdentifierType]string{"customIdentifier": "another-string"}, }, false, }, "same purl": { "pkg:apk/wolfi/curl@8.1.2-r0?arch=x86_64", &Component{ Identifiers: map[IdentifierType]string{PURL: "pkg:apk/wolfi/curl@8.1.2-r0?arch=x86_64"}, }, true, }, "globing purl": { "pkg:oci/curl@sha256:47fed8868b46b060efb8699dc40e981a0c785650223e03602d8c4493fc75b68c", &Component{ Identifiers: map[IdentifierType]string{PURL: "pkg:oci/curl"}, }, true, }, "globing purl (inverse)": { "pkg:oci/curl", &Component{ Identifiers: map[IdentifierType]string{ PURL: "pkg:oci/curl@sha256:47fed8868b46b060efb8699dc40e981a0c785650223e03602d8c4493fc75b68c", }, }, false, }, "hash": { "77d86e9752cb933569dfa1f693ee4338e65b28b4", &Component{ Hashes: map[Algorithm]Hash{ SHA1: "77d86e9752cb933569dfa1f693ee4338e65b28b4", }, }, true, }, "wrong hash": { "77d86e9752cb933569dfa1f693ee4338e65b28b4", &Component{ Hashes: map[Algorithm]Hash{ SHA1: "b5cc41d90d7ccc195c4a24ceb32656942c9854ea", }, }, false, }, } { require.Equal(t, tc.mustMatch, tc.component.Matches(tc.identifier), "failed: %s", testCase) } } go-vex-0.2.7/pkg/vex/functions_documents.go000066400000000000000000000066621506046251100207420ustar00rootroot00000000000000// Copyright 2023 The OpenVEX Authors // SPDX-License-Identifier: Apache-2.0 package vex import ( "crypto/sha256" "errors" "fmt" "sort" "strings" ) type MergeOptions struct { DocumentID string // ID to use in the new document Author string // Author to use in the new document AuthorRole string // Role of the document author Products []string // Product IDs to consider Vulnerabilities []string // IDs of vulnerabilities to merge } // MergeDocuments is a convenience wrapper over MergeDocumentsWithOptions // that does not take options. func MergeDocuments(docs []*VEX) (*VEX, error) { return MergeDocumentsWithOptions(&MergeOptions{}, docs) } // Merge combines the statements from a number of documents into // a new one, preserving time context from each of them. func MergeDocumentsWithOptions(mergeOpts *MergeOptions, docs []*VEX) (*VEX, error) { if len(docs) == 0 { return nil, fmt.Errorf("at least one vex document is required to merge") } docID := mergeOpts.DocumentID // If no document id is specified we compute a // deterministic ID using the merged docs if docID == "" { ids := []string{} for i, d := range docs { if d.ID == "" { ids = append(ids, fmt.Sprintf("VEX-DOC-%d", i)) } else { ids = append(ids, d.ID) } } sort.Strings(ids) h := sha256.New() h.Write([]byte(strings.Join(ids, ":"))) // Hash the sorted IDs list docID = fmt.Sprintf("merged-vex-%x", h.Sum(nil)) } newDoc := New() newDoc.ID = docID if author := mergeOpts.Author; author != "" { newDoc.Author = author } if authorRole := mergeOpts.AuthorRole; authorRole != "" { newDoc.AuthorRole = authorRole } ss := []Statement{} // Create an inverse dict of products and vulnerabilities to filter // these will only be used if ids to filter on are defined in the options. iProds := map[string]struct{}{} iVulns := map[string]struct{}{} for _, id := range mergeOpts.Products { iProds[id] = struct{}{} } for _, id := range mergeOpts.Vulnerabilities { iVulns[id] = struct{}{} } for _, doc := range docs { for _, s := range doc.Statements { //nolint:gocritic // this IS supposed to copy matchesProduct := false for id := range iProds { if s.MatchesProduct(id, "") { matchesProduct = true break } } if len(iProds) > 0 && !matchesProduct { continue } matchesVuln := false for id := range iVulns { if s.Vulnerability.Matches(id) { matchesVuln = true break } } if len(iVulns) > 0 && !matchesVuln { continue } // If statement does not have a timestamp, cascade // the timestamp down from the document. // See https://github.com/chainguard-dev/vex/issues/49 if s.Timestamp == nil { if doc.Timestamp == nil { return nil, errors.New("unable to cascade timestamp from doc to timeless statement") } s.Timestamp = doc.Timestamp } ss = append(ss, s) } } SortStatements(ss, *newDoc.Timestamp) newDoc.Statements = ss return &newDoc, nil } // SortDocuments sorts and returns a slice of documents based on their date. // VEXes should be applied sequentially in chronological order as they capture // knowledge about an artifact as it changes over time. func SortDocuments(docs []*VEX) []*VEX { sort.Slice(docs, func(i, j int) bool { if docs[j].Timestamp == nil { return true } if docs[i].Timestamp == nil { return false } return docs[i].Timestamp.Before(*(docs[j].Timestamp)) }) return docs } go-vex-0.2.7/pkg/vex/functions_documents_test.go000066400000000000000000000037351506046251100217770ustar00rootroot00000000000000/* Copyright 2023 The OpenVEX Authors SPDX-License-Identifier: Apache-2.0 */ package vex import ( "testing" "github.com/stretchr/testify/require" ) func TestMergeDocumentsWithOptions(t *testing.T) { doc1, err := Open("testdata/v001-1.vex.json") require.NoError(t, err) doc2, err := Open("testdata/v001-2.vex.json") require.NoError(t, err) doc3, err := Open("testdata/v020-1.vex.json") require.NoError(t, err) doc4, err := Open("testdata/v020-2.vex.json") require.NoError(t, err) for _, tc := range []struct { opts *MergeOptions docs []*VEX expectedDoc *VEX shouldErr bool }{ // Zero docs should fail { opts: &MergeOptions{}, docs: []*VEX{}, expectedDoc: &VEX{}, shouldErr: true, }, // One doc results in the same doc { opts: &MergeOptions{}, docs: []*VEX{doc1}, expectedDoc: doc1, shouldErr: false, }, // Two docs, as they are { opts: &MergeOptions{}, docs: []*VEX{doc1, doc2}, expectedDoc: &VEX{ Metadata: Metadata{}, Statements: []Statement{ doc1.Statements[0], doc2.Statements[0], }, }, shouldErr: false, }, // Two docs, filter product { opts: &MergeOptions{ Products: []string{"pkg:apk/wolfi/git@2.41.0-1"}, }, docs: []*VEX{doc3, doc4}, expectedDoc: &VEX{ Metadata: Metadata{}, Statements: []Statement{ doc4.Statements[0], }, }, shouldErr: false, }, // Two docs, filter vulnerability { opts: &MergeOptions{ Vulnerabilities: []string{"CVE-9876-54321"}, }, docs: []*VEX{doc3, doc4}, expectedDoc: &VEX{ Metadata: Metadata{}, Statements: []Statement{ doc3.Statements[0], }, }, shouldErr: false, }, } { doc, err := MergeDocumentsWithOptions(tc.opts, tc.docs) if tc.shouldErr { require.Error(t, err) continue } // Check doc require.Len(t, doc.Statements, len(tc.expectedDoc.Statements)) require.Equal(t, doc.Statements, tc.expectedDoc.Statements) } } go-vex-0.2.7/pkg/vex/functions_files.go000066400000000000000000000145211506046251100200340ustar00rootroot00000000000000// Copyright 2023 The OpenVEX Authors // SPDX-License-Identifier: Apache-2.0 package vex import ( "bytes" "encoding/json" "fmt" "log/slog" "os" "strings" "time" "gopkg.in/yaml.v3" "github.com/openvex/go-vex/pkg/csaf" ) // Load reads the VEX document file at the given path and returns a decoded VEX // object. If Load is unable to read the file or decode the document, it returns // an error. func Load(path string) (*VEX, error) { data, err := os.ReadFile(path) //nolint:gosec // This is supposed to open user-specified paths if err != nil { return nil, fmt.Errorf("loading VEX file: %w", err) } return Parse(data) } // Parse parses an OpenVEX document in the latest version from the data byte array. func Parse(data []byte) (*VEX, error) { vexDoc := &VEX{} if err := json.Unmarshal(data, vexDoc); err != nil { return nil, fmt.Errorf("%s: %w", errMsgParse, err) } return vexDoc, nil } // OpenYAML opens a VEX file in YAML format. func OpenYAML(path string) (*VEX, error) { data, err := os.ReadFile(path) //nolint:gosec // This is supposed to open user-specified paths if err != nil { return nil, fmt.Errorf("opening YAML file: %w", err) } vexDoc := New() if err := yaml.Unmarshal(data, &vexDoc); err != nil { return nil, fmt.Errorf("unmarshalling VEX data: %w", err) } return &vexDoc, nil } // OpenJSON opens an OpenVEX file in JSON format. func OpenJSON(path string) (*VEX, error) { data, err := os.ReadFile(path) //nolint:gosec // This is supposed to open user-specified paths if err != nil { return nil, fmt.Errorf("opening JSON file: %w", err) } vexDoc := New() if err := json.Unmarshal(data, &vexDoc); err != nil { return nil, fmt.Errorf("unmarshalling VEX data: %w", err) } return &vexDoc, nil } // parseContext light parses a JSON document to look for the OpenVEX context locator func parseContext(rawDoc []byte) (string, error) { pd := struct { Context string `json:"@context"` }{} if err := json.Unmarshal(rawDoc, &pd); err != nil { return "", fmt.Errorf("parsing context from json data: %w", err) } if strings.HasPrefix(pd.Context, Context) { return pd.Context, nil } return "", nil } // Open tries to autodetect the vex format and open it func Open(path string) (*VEX, error) { data, err := os.ReadFile(path) //nolint:gosec // This is supposed to open user-specified paths if err != nil { return nil, fmt.Errorf("opening VEX file: %w", err) } documentContextLocator, err := parseContext(data) if err != nil { return nil, err } if documentContextLocator == ContextLocator() { return Parse(data) } else if documentContextLocator != "" { version := strings.TrimPrefix(documentContextLocator, Context) version = strings.TrimPrefix(version, "/") // If version is nil, then we assume v0.0.1 if version == "" { version = "v0.0.1" } parser := getLegacyVersionParser(version) if parser == nil { return nil, fmt.Errorf("unable to get parser for version %s", version) } doc, err := parser(data) if err != nil { return nil, fmt.Errorf("parsing document: %w", err) } return doc, nil } if bytes.Contains(data, []byte(`"csaf_version"`)) { slog.Info("Abriendo CSAF") doc, err := OpenCSAF(path, []string{}) if err != nil { return nil, fmt.Errorf("attempting to open csaf doc: %w", err) } return doc, nil } return nil, fmt.Errorf("unable to detect document format reading %s", path) } // OpenCSAF opens a CSAF document and builds a VEX object from it. func OpenCSAF(path string, products []string) (*VEX, error) { csafDoc, err := csaf.Open(path) if err != nil { return nil, fmt.Errorf("opening csaf doc: %w", err) } productDict := map[string]string{} filterDict := map[string]string{} for _, pid := range products { filterDict[pid] = pid } prods := csafDoc.ProductTree.ListProducts() for _, sp := range prods { // Check if we need to filter if len(filterDict) > 0 { foundID := false for _, i := range sp.IdentificationHelper { if _, ok := filterDict[i]; ok { foundID = true break } } _, ok := filterDict[sp.ID] if !foundID && !ok { continue } } for _, h := range sp.IdentificationHelper { productDict[sp.ID] = h } } // Create the vex doc v := &VEX{ Metadata: Metadata{ ID: csafDoc.Document.Tracking.ID, Author: "", AuthorRole: "", Timestamp: &time.Time{}, }, Statements: []Statement{}, } // Cycle the CSAF vulns list and get those that apply for i := range csafDoc.Vulnerabilities { for status, docProducts := range csafDoc.Vulnerabilities[i].ProductStatus { for _, productID := range docProducts { if _, ok := productDict[productID]; ok { // Check we have a valid status if StatusFromCSAF(status) == "" { return nil, fmt.Errorf("invalid status for product %s", productID) } // TODO search the threats struct for justification, etc just := "" for _, t := range csafDoc.Vulnerabilities[i].Threats { // Search the threats for a justification for _, p := range t.ProductIDs { if p == productID { just = t.Details } } } v.Statements = append(v.Statements, Statement{ Vulnerability: Vulnerability{Name: VulnerabilityID(csafDoc.Vulnerabilities[i].CVE)}, Status: StatusFromCSAF(status), Justification: "", // Justifications are not machine readable in csaf, it seems ActionStatement: just, Products: []Product{ { Component: Component{ ID: productID, }, }, }, }) } } } } return v, nil } // MergeFilesWithOptions opens a list of vex documents and after parsing them // merges them into a single file using the specified merge options. func MergeFilesWithOptions(mergeOpts *MergeOptions, filePaths []string) (*VEX, error) { vexDocs := []*VEX{} for i := range filePaths { doc, err := Open(filePaths[i]) if err != nil { return nil, fmt.Errorf("opening %s: %w", filePaths[i], err) } vexDocs = append(vexDocs, doc) } doc, err := MergeDocumentsWithOptions(mergeOpts, vexDocs) if err != nil { return nil, fmt.Errorf("merging opened files: %w", err) } return doc, nil } // MergeFiles is a convenience wrapper around MergeFilesWithOptions that // does not take options but performs the merge using the default options func MergeFiles(filePaths []string) (*VEX, error) { return MergeFilesWithOptions(&MergeOptions{}, filePaths) } go-vex-0.2.7/pkg/vex/functions_files_test.go000066400000000000000000000052611506046251100210740ustar00rootroot00000000000000// Copyright 2023 The OpenVEX Authors // SPDX-License-Identifier: Apache-2.0 package vex import ( "os" "sort" "testing" "github.com/stretchr/testify/require" ) func TestParse(t *testing.T) { for m, tc := range map[string]struct { path string product string vulns []string shouldErr bool }{ // Previous versions fail on test "OpenVEX v0.0.1": {"testdata/v0.0.1.json", "", []string{}, true}, // Current version "OpenVEX v0.2.0": {"testdata/v0.2.0.json", "pkg:oci/alpine@sha256%3A124c7d2707904eea7431fffe91522a01e5a861a624ee31d03372cc1d138a3126", []string{"CVE-2023-1255", "CVE-2023-2650", "CVE-2023-2975", "CVE-2023-3446", "CVE-2023-3817"}, false}, } { data, err := os.ReadFile(tc.path) require.NoError(t, err) doc, err := Parse(data) if tc.shouldErr { require.Error(t, err, m) continue } require.NoError(t, err, "%s: reading %s", m, tc.path) require.NotNil(t, doc, m) require.Equal(t, doc.Context, ContextLocator()) require.Len(t, doc.Statements, 5) vulns := []string{} for _, s := range doc.Statements { vulns = append(vulns, string(s.Vulnerability.Name)) require.Equal(t, tc.product, s.Products[0].ID) } sort.Strings(vulns) require.Equal(t, vulns, tc.vulns, m) } } func TestLoadYAML(t *testing.T) { vexDoc, err := OpenYAML("testdata/vex.yaml") require.NoError(t, err) require.Len(t, vexDoc.Statements, 2) } func TestLoadCSAF(t *testing.T) { vexDoc, err := OpenCSAF("testdata/csaf.json", []string{}) require.NoError(t, err) require.Len(t, vexDoc.Statements, 1) require.Len(t, vexDoc.Statements[0].Products, 1) require.Equal(t, "CVE-2009-4487", string(vexDoc.Statements[0].Vulnerability.Name)) require.Equal(t, StatusNotAffected, vexDoc.Statements[0].Status) require.Equal(t, "2022-EVD-UC-01-NA-001", vexDoc.ID) } func TestOpenCSAF(t *testing.T) { for _, tc := range []struct { doc string len int id []string }{ {"testdata/csaf.json", 1, []string{"CSAFPID-0001"}}, {"testdata/csaf.json", 1, []string{"pkg:golang/github.com/go-homedir@v1.2.0"}}, } { doc, err := OpenCSAF(tc.doc, tc.id) require.NoError(t, err) require.NotNil(t, doc) require.Len(t, doc.Statements, tc.len) } } func TestOpen(t *testing.T) { for m, tc := range map[string]struct { path string shouldErr bool }{ "OpenVEX v0.0.1": {"testdata/v0.0.1.json", false}, "OpenVEX v0.0.1 (no version)": {"testdata/v0.0.1-noversion.json", false}, "OpenVEX v0.2.0": {"testdata/v0.2.0.json", false}, "CSAF document": {"testdata/csaf.json", false}, } { doc, err := Open(tc.path) if tc.shouldErr { require.Error(t, err, m) continue } require.NoError(t, err, m) require.NotNil(t, doc, m) } } go-vex-0.2.7/pkg/vex/justification.go000066400000000000000000000056341506046251100175220ustar00rootroot00000000000000/* Copyright 2023 The OpenVEX Authors SPDX-License-Identifier: Apache-2.0 */ package vex // Justification describes why a given component is not affected by a // vulnerability. type Justification string const ( // ComponentNotPresent means the vulnerable component is not included in the artifact. // // ComponentNotPresent is a strong justification that the artifact is not affected. ComponentNotPresent Justification = "component_not_present" // VulnerableCodeNotPresent means the vulnerable component is included in // artifact, but the vulnerable code is not present. Typically, this case occurs // when source code is configured or built in a way that excluded the vulnerable // code. // // VulnerableCodeNotPresent is a strong justification that the artifact is not affected. VulnerableCodeNotPresent Justification = "vulnerable_code_not_present" // VulnerableCodeNotInExecutePath means the vulnerable code (likely in // [subcomponent_id]) can not be executed as it is used by [product_id]. // Typically, this case occurs when [product_id] includes the vulnerable // [subcomponent_id] and the vulnerable code but does not call or use the // vulnerable code. VulnerableCodeNotInExecutePath Justification = "vulnerable_code_not_in_execute_path" // VulnerableCodeCannotBeControlledByAdversary means the vulnerable code cannot // be controlled by an attacker to exploit the vulnerability. // // This justification could be difficult to prove conclusively. VulnerableCodeCannotBeControlledByAdversary Justification = "vulnerable_code_cannot_be_controlled_by_adversary" // InlineMitigationsAlreadyExist means [product_id] includes built-in protections // or features that prevent exploitation of the vulnerability. These built-in // protections cannot be subverted by the attacker and cannot be configured or // disabled by the user. These mitigations completely prevent exploitation based // on known attack vectors. // // This justification could be difficult to prove conclusively. History is // littered with examples of mitigation bypasses, typically involving minor // modifications of existing exploit code. InlineMitigationsAlreadyExist Justification = "inline_mitigations_already_exist" ) // Justifications returns a list of the valid Justification values. func Justifications() []string { return []string{ string(ComponentNotPresent), string(VulnerableCodeNotPresent), string(VulnerableCodeNotInExecutePath), string(VulnerableCodeCannotBeControlledByAdversary), string(InlineMitigationsAlreadyExist), } } // Valid returns a bool indicating whether the Justification value is equal to // one of the enumerated allowed values for Justification. func (j Justification) Valid() bool { switch j { case ComponentNotPresent, VulnerableCodeNotPresent, VulnerableCodeNotInExecutePath, VulnerableCodeCannotBeControlledByAdversary, InlineMitigationsAlreadyExist: return true default: return false } } go-vex-0.2.7/pkg/vex/product.go000066400000000000000000000043211506046251100163170ustar00rootroot00000000000000// Copyright 2023 The OpenVEX Authors // SPDX-License-Identifier: Apache-2.0 package vex // Product abstracts the VEX product into a struct that can identify software // through various means. The main one is the ID field which contains an IRI // identifying the product, possibly pointing to another document with more data, // like an SBOM. The Product struct also supports naming software using its // identifiers and/or cryptographic hashes. type Product struct { Component Subcomponents []Subcomponent `json:"subcomponents,omitempty"` } // Subcomponents are nested entries that list the product's components that are // related to the statement's vulnerability. The main difference with Product // and Subcomponent objects is that a Subcomponent cannot nest components. type Subcomponent struct { Component } // Product returns true if an identifier and subcomponent identifier match any // of the identifiers in the product and subcomponents. func (p *Product) Matches(identifier, subIdentifier string) bool { if !p.Component.Matches(identifier) { return false } // If the product has no subcomponents or no subcomponent was specified, // matching the product part is enough: if len(p.Subcomponents) == 0 || subIdentifier == "" { return true } for _, s := range p.Subcomponents { if s.Matches(subIdentifier) { return true } } return false } type ( IdentifierLocator string IdentifierType string ) const ( PURL IdentifierType = "purl" CPE22 IdentifierType = "cpe22" CPE23 IdentifierType = "cpe23" ) type ( Algorithm string Hash string ) // The following list of algorithms follows and expands the IANA list at: // https://www.iana.org/assignments/named-information/named-information.xhtml // It expands it, trying to keep the naming pattern. const ( MD5 Algorithm = "md5" SHA1 Algorithm = "sha1" SHA256 Algorithm = "sha-256" SHA384 Algorithm = "sha-384" SHA512 Algorithm = "sha-512" SHA3224 Algorithm = "sha3-224" SHA3256 Algorithm = "sha3-256" SHA3384 Algorithm = "sha3-384" SHA3512 Algorithm = "sha3-512" BLAKE2S256 Algorithm = "blake2s-256" BLAKE2B256 Algorithm = "blake2b-256" BLAKE2B512 Algorithm = "blake2b-512" BLAKE3 Algorithm = "blake3" ) go-vex-0.2.7/pkg/vex/product_test.go000066400000000000000000000060671506046251100173670ustar00rootroot00000000000000// Copyright 2023 The OpenVEX Authors // SPDX-License-Identifier: Apache-2.0 package vex import ( "testing" "github.com/stretchr/testify/require" ) func TestProductMatches(t *testing.T) { for testCase, tc := range map[string]struct { sut *Product product string subcomponent string mustMach bool }{ "identifier only": { sut: &Product{ Component: Component{ID: "pkg:apk/alpine/libcrypto3@3.0.8-r3"}, }, product: "pkg:apk/alpine/libcrypto3@3.0.8-r3", subcomponent: "", mustMach: true, }, "purl only": { sut: &Product{ Component: Component{Identifiers: map[IdentifierType]string{ PURL: "pkg:apk/alpine/libcrypto3@3.0.8-r3", }}, }, product: "pkg:apk/alpine/libcrypto3@3.0.8-r3", subcomponent: "", mustMach: true, }, "generic purl only": { sut: &Product{ Component: Component{Identifiers: map[IdentifierType]string{ PURL: "pkg:apk/alpine/libcrypto3", }}, }, product: "pkg:apk/alpine/libcrypto3@3.0.8-r3", subcomponent: "", mustMach: true, }, "identifier and components in doc and statement": { sut: &Product{ Component: Component{ID: "pkg:oci/alpine@sha256%3A124c7d2707904eea7431fffe91522a01e5a861a624ee31d03372cc1d138a3126"}, Subcomponents: []Subcomponent{ { Component{ID: "pkg:apk/alpine/libcrypto3@3.0.8-r3"}, }, }, }, product: "pkg:oci/alpine@sha256%3A124c7d2707904eea7431fffe91522a01e5a861a624ee31d03372cc1d138a3126", subcomponent: "pkg:apk/alpine/libcrypto3@3.0.8-r3", mustMach: true, }, "identifier and no components in query": { sut: &Product{ Component: Component{ID: "pkg:oci/alpine@sha256%3A124c7d2707904eea7431fffe91522a01e5a861a624ee31d03372cc1d138a3126"}, Subcomponents: []Subcomponent{ { Component{ID: "pkg:apk/alpine/libcrypto3@3.0.8-r3"}, }, }, }, product: "pkg:oci/alpine@sha256%3A124c7d2707904eea7431fffe91522a01e5a861a624ee31d03372cc1d138a3126", subcomponent: "", mustMach: true, }, "identifier and no components in document": { sut: &Product{ Component: Component{ID: "pkg:oci/alpine@sha256%3A124c7d2707904eea7431fffe91522a01e5a861a624ee31d03372cc1d138a3126"}, Subcomponents: []Subcomponent{}, }, product: "pkg:oci/alpine@sha256%3A124c7d2707904eea7431fffe91522a01e5a861a624ee31d03372cc1d138a3126", subcomponent: "pkg:apk/alpine/libcrypto3@3.0.8-r3", mustMach: true, }, "identifier + multicomponent doc": { sut: &Product{ Component: Component{ID: "pkg:oci/alpine@sha256%3A124c7d2707904eea7431fffe91522a01e5a861a624ee31d03372cc1d138a3126"}, Subcomponents: []Subcomponent{ {Component{ID: "pkg:apk/alpine/libcrypto3@3.0.8-r3"}}, {Component{ID: "pkg:apk/alpine/libssl@3.0.8-r3"}}, }, }, product: "pkg:oci/alpine@sha256%3A124c7d2707904eea7431fffe91522a01e5a861a624ee31d03372cc1d138a3126", subcomponent: "pkg:apk/alpine/libssl@3.0.8-r3", mustMach: true, }, } { require.Equal(t, tc.mustMach, tc.sut.Matches(tc.product, tc.subcomponent), "failed: %s", testCase) } } go-vex-0.2.7/pkg/vex/statement.go000066400000000000000000000210631506046251100166450ustar00rootroot00000000000000// Copyright 2023 The OpenVEX Authors // SPDX-License-Identifier: Apache-2.0 package vex import ( "encoding/json" "fmt" "sort" "strings" "time" ) // A Statement is a declaration conveying a single [status] for a single // [vul_id] for one or more [product_id]s. A VEX Statement exists within a VEX // Document. type Statement struct { // ID is an optional identifier for the statement. It takes an IRI and must // be unique for each statement in the document. ID string `json:"@id,omitempty"` // [vul_id] SHOULD use existing and well known identifiers, for example: // CVE, the Global Security Database (GSD), or a supplier’s vulnerability // tracking system. It is expected that vulnerability identification systems // are external to and maintained separately from VEX. // // [vul_id] MAY be URIs or URLs. // [vul_id] MAY be arbitrary and MAY be created by the VEX statement [author]. Vulnerability Vulnerability `json:"vulnerability,omitempty"` // Timestamp is the time at which the information expressed in the Statement // was known to be true. Timestamp *time.Time `json:"timestamp,omitempty"` // LastUpdated records the time when the statement last had a modification LastUpdated *time.Time `json:"last_updated,omitempty"` // Product // Product details MUST specify what Status applies to. // Product details MUST include [product_id] and MAY include [subcomponent_id]. Products []Product `json:"products,omitempty"` // A VEX statement MUST provide Status of the vulnerabilities with respect to the // products and components listed in the statement. Status MUST be one of the // Status const values, some of which have further options and requirements. Status Status `json:"status"` // [status_notes] MAY convey information about how [status] was determined // and MAY reference other VEX information. StatusNotes string `json:"status_notes,omitempty"` // For ”not_affected” status, a VEX statement MUST include a status Justification // that further explains the status. Justification Justification `json:"justification,omitempty"` // For ”not_affected” status, a VEX statement MAY include an ImpactStatement // that contains a description why the vulnerability cannot be exploited. ImpactStatement string `json:"impact_statement,omitempty"` // For "affected" status, a VEX statement MUST include an ActionStatement that // SHOULD describe actions to remediate or mitigate [vul_id]. ActionStatement string `json:"action_statement,omitempty"` ActionStatementTimestamp *time.Time `json:"action_statement_timestamp,omitempty"` } // Validate checks to see whether the given Statement is valid. If it's not, an // error is returned explaining the reason the Statement is invalid. Otherwise, // nil is returned. func (stmt *Statement) Validate() error { if s := stmt.Status; !s.Valid() { return fmt.Errorf("invalid status value %q, must be one of [%s]", s, strings.Join(Statuses(), ", ")) } switch s := stmt.Status; s { case StatusNotAffected: // require a justification j := stmt.Justification is := stmt.ImpactStatement if j == "" && is == "" { return fmt.Errorf("either justification or impact statement must be defined when using status %q", s) } if j != "" && !j.Valid() { return fmt.Errorf("invalid justification value %q, must be one of [%s]", j, strings.Join(Justifications(), ", ")) } // irrelevant fields should not be set if v := stmt.ActionStatement; v != "" { return fmt.Errorf("action statement should not be set when using status %q (was set to %q)", s, v) } case StatusAffected: // irrelevant fields should not be set if v := stmt.Justification; v != "" { return fmt.Errorf("justification should not be set when using status %q (was set to %q)", s, v) } if v := stmt.ImpactStatement; v != "" { return fmt.Errorf("impact statement should not be set when using status %q (was set to %q)", s, v) } // action statement is now required if v := stmt.ActionStatement; v == "" { return fmt.Errorf("action statement must be set when using status %q", s) } case StatusUnderInvestigation: // irrelevant fields should not be set if v := stmt.Justification; v != "" { return fmt.Errorf("justification should not be set when using status %q (was set to %q)", s, v) } if v := stmt.ImpactStatement; v != "" { return fmt.Errorf("impact statement should not be set when using status %q (was set to %q)", s, v) } if v := stmt.ActionStatement; v != "" { return fmt.Errorf("action statement should not be set when using status %q (was set to %q)", s, v) } case StatusFixed: // irrelevant fields should not be set if v := stmt.Justification; v != "" { return fmt.Errorf("justification should not be set when using status %q (was set to %q)", s, v) } if v := stmt.ImpactStatement; v != "" { return fmt.Errorf("impact statement should not be set when using status %q (was set to %q)", s, v) } if v := stmt.ActionStatement; v != "" { return fmt.Errorf("action statement should not be set when using status %q (was set to %q)", s, v) } } return nil } // SortStatements does an "in-place" sort of the given slice of VEX statements. // // The documentTimestamp parameter is needed because statements without timestamps inherit the timestamp of the document. func SortStatements(stmts []Statement, documentTimestamp time.Time) { sort.SliceStable(stmts, func(i, j int) bool { // TODO: Add methods for aliases vulnComparison := strings.Compare(string(stmts[i].Vulnerability.Name), string(stmts[j].Vulnerability.Name)) if vulnComparison != 0 { // i.e. different vulnerabilities; sort by string comparison return vulnComparison < 0 } // i.e. the same vulnerability; sort statements by timestamp iTime := stmts[i].Timestamp if iTime == nil || iTime.IsZero() { iTime = &documentTimestamp } jTime := stmts[j].Timestamp if jTime == nil || jTime.IsZero() { jTime = &documentTimestamp } if iTime == nil { return false } if jTime == nil { return true } return iTime.Before(*jTime) }) } // Matches returns true if the statement matches the specified vulnerability // identifier, the VEX product and any of the identifiers from the received list. func (stmt *Statement) Matches(vuln, product string, subcomponents []string) bool { if !stmt.Vulnerability.Matches(vuln) { return false } for i := range stmt.Products { if len(subcomponents) == 0 { if stmt.Products[i].Matches(product, "") { return true } } for _, sc := range subcomponents { if stmt.Products[i].Matches(product, sc) { return true } } } return false } // MatchesProduct returns true if the statement matches the identifier string // with an optional subcomponent identifier func (stmt *Statement) MatchesProduct(identifier, subidentifier string) bool { for _, p := range stmt.Products { if p.Matches(identifier, subidentifier) { return true } } return false } // MarshalJSON the document object overrides its marshaling function to normalize // the timezones in all dates to Zulu. func (stmt *Statement) MarshalJSON() ([]byte, error) { type alias Statement var ts, lu string if stmt.Timestamp != nil { ts = stmt.Timestamp.UTC().Format(time.RFC3339Nano) } if stmt.LastUpdated != nil { lu = stmt.LastUpdated.UTC().Format(time.RFC3339Nano) } return json.Marshal(&struct { *alias TimeZonedTimestamp string `json:"timestamp,omitempty"` TimeZonedLastUpdated string `json:"last_updated,omitempty"` }{ alias: (*alias)(stmt), TimeZonedTimestamp: ts, TimeZonedLastUpdated: lu, }) } // DeepCopyInto copies the receiver and writes its value into out. func (stmt *Statement) DeepCopyInto(out *Statement) { *out = *stmt if stmt.Timestamp != nil { *out = *stmt out.Timestamp = new(time.Time) *out.Timestamp = *stmt.Timestamp } if stmt.LastUpdated != nil { *out = *stmt out.LastUpdated = new(time.Time) *out.LastUpdated = *stmt.LastUpdated } if stmt.Products != nil { *out = *stmt out.Products = make([]Product, len(stmt.Products)) copy(out.Products, stmt.Products) } *out = *stmt out.Vulnerability = Vulnerability{} stmt.Vulnerability.DeepCopyInto(&out.Vulnerability) if stmt.Justification != "" { *out = *stmt out.Justification = stmt.Justification } if stmt.ActionStatementTimestamp != nil { *out = *stmt out.ActionStatementTimestamp = new(time.Time) *out.ActionStatementTimestamp = *stmt.ActionStatementTimestamp } } // DeepCopy copies the receiver and returns a new Statement. func (stmt *Statement) DeepCopy() *Statement { if stmt == nil { return nil } out := new(Statement) stmt.DeepCopyInto(out) return out } go-vex-0.2.7/pkg/vex/statement_test.go000066400000000000000000000026111506046251100177020ustar00rootroot00000000000000// Copyright 2025 The OpenVEX Authors // SPDX-License-Identifier: Apache-2.0 package vex import ( "encoding/json" "testing" "time" "github.com/stretchr/testify/require" ) func TestStatementEmptyTimeStamp(t *testing.T) { t.Parallel() n := time.Now() for _, tt := range []struct { name string timestamp *time.Time lastUpdated *time.Time }{ {"both", &n, &n}, {"only-timestamp", &n, nil}, {"only-lastupdate", nil, &n}, {"none", nil, nil}, } { t.Run(tt.name, func(t *testing.T) { t.Parallel() data, err := json.Marshal(&Statement{ Timestamp: tt.timestamp, LastUpdated: tt.lastUpdated, }) require.NoError(t, err) jsondata := string(data) // Unmarshal the statement to check for values smap := map[string]any{} err = json.Unmarshal(data, &smap) require.NoError(t, err) tsval, tsexists := smap["timestamp"] luval, luexists := smap["last_updated"] if tt.timestamp == nil { require.NotContains(t, jsondata, `"timestamp"`) require.False(t, tsexists) } else { require.Contains(t, jsondata, `"timestamp"`) require.True(t, tsexists) require.NotEmpty(t, tsval) } if tt.lastUpdated == nil { require.NotContains(t, jsondata, `"last_updated"`) require.False(t, luexists) } else { require.Contains(t, jsondata, `"last_updated"`) require.True(t, luexists) require.NotEmpty(t, luval) } }) } } go-vex-0.2.7/pkg/vex/status.go000066400000000000000000000030711506046251100161630ustar00rootroot00000000000000/* Copyright 2023 The OpenVEX Authors SPDX-License-Identifier: Apache-2.0 */ package vex // Status describes the exploitability status of a component with respect to a // vulnerability. type Status string const ( // StatusNotAffected means no remediation or mitigation is required. StatusNotAffected Status = "not_affected" // StatusAffected means actions are recommended to remediate or mitigate. StatusAffected Status = "affected" // StatusFixed means the listed products or components have been remediated (by including fixes). StatusFixed Status = "fixed" // StatusUnderInvestigation means the author of the VEX statement is investigating. StatusUnderInvestigation Status = "under_investigation" ) // Statuses returns a list of the valid Status values. func Statuses() []string { return []string{ string(StatusNotAffected), string(StatusAffected), string(StatusFixed), string(StatusUnderInvestigation), } } // Valid returns a bool indicating whether the Status value is equal to one of the enumerated allowed values for Status. func (s Status) Valid() bool { switch s { case StatusNotAffected, StatusAffected, StatusFixed, StatusUnderInvestigation: return true default: return false } } // StatusFromCSAF returns a vex status from the CSAF status func StatusFromCSAF(csafStatus string) Status { switch csafStatus { case "known_not_affected": return StatusNotAffected case "fixed": return StatusFixed case "under_investigation": return StatusUnderInvestigation case "known_affected": return StatusAffected default: return "" } } go-vex-0.2.7/pkg/vex/testdata/000077500000000000000000000000001506046251100161215ustar00rootroot00000000000000go-vex-0.2.7/pkg/vex/testdata/csaf.json000066400000000000000000000047101506046251100177320ustar00rootroot00000000000000{ "document": { "category": "csaf_vex", "csaf_version": "2.0", "notes": [ { "category": "summary", "text": "Example VEX document.", "title": "Document Title" } ], "publisher": { "category": "vendor", "name": "Example Company", "namespace": "https://psirt.example.com" }, "title": "Example VEX Document Use Case 1 - Not Affected", "tracking": { "current_release_date": "2022-03-03T11:00:00.000Z", "generator": { "date": "2022-03-03T11:00:00.000Z", "engine": { "name": "Secvisogram", "version": "1.11.0" } }, "id": "2022-EVD-UC-01-NA-001", "initial_release_date": "2022-03-03T11:00:00.000Z", "revision_history": [ { "date": "2022-03-03T11:00:00.000Z", "number": "1", "summary": "Initial version." } ], "status": "final", "version": "1" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_version", "name": "4.2", "product": { "name": "Example Company ABC 4.2", "product_id": "CSAFPID-0001", "product_identification_helper": { "purl": "pkg:golang/github.com/go-homedir@v1.2.0" } } } ], "category": "product_name", "name": "ABC" } ], "category": "vendor", "name": "Example Company" } ] }, "vulnerabilities": [ { "cve": "CVE-2009-4487", "notes": [ { "category": "description", "text": "nginx 0.7.64 writes data to a log file without sanitizing non-printable characters, which might allow remote attackers to modify a window's title, or possibly execute arbitrary commands or overwrite files, via an HTTP request containing an escape sequence for a terminal emulator.", "title": "CVE description" } ], "product_status": { "known_not_affected": [ "CSAFPID-0001" ] }, "threats": [ { "category": "impact", "details": "Class with vulnerable code was removed before shipping.", "product_ids": [ "CSAFPID-0001" ] } ] } ] } go-vex-0.2.7/pkg/vex/testdata/v0.0.1-noversion.json000066400000000000000000000007251506046251100216620ustar00rootroot00000000000000{ "@context": "https://openvex.dev/ns", "@id": "https://openvex.dev/docs/example/vex-9fb3463de1b57", "author": "Wolfi J Inkinson", "role": "Document Creator", "timestamp": "2023-01-08T18:02:03.647787998-06:00", "version": "1", "statements": [ { "vulnerability": "CVE-2023-12345", "products": [ "pkg:apk/wolfi/git@2.39.0-r1?arch=armv7", "pkg:apk/wolfi/git@2.39.0-r1?arch=x86_64" ], "status": "fixed" } ] } go-vex-0.2.7/pkg/vex/testdata/v0.0.1.json000066400000000000000000000007341506046251100176420ustar00rootroot00000000000000{ "@context": "https://openvex.dev/ns/v0.0.1", "@id": "https://openvex.dev/docs/example/vex-9fb3463de1b57", "author": "Wolfi J Inkinson", "role": "Document Creator", "timestamp": "2023-01-08T18:02:03.647787998-06:00", "version": "1", "statements": [ { "vulnerability": "CVE-2023-12345", "products": [ "pkg:apk/wolfi/git@2.39.0-r1?arch=armv7", "pkg:apk/wolfi/git@2.39.0-r1?arch=x86_64" ], "status": "fixed" } ] } go-vex-0.2.7/pkg/vex/testdata/v0.2.0.json000066400000000000000000000053731506046251100176470ustar00rootroot00000000000000{ "@context": "https://openvex.dev/ns/v0.2.0", "@id": "https://openvex.dev/docs/public/vex-d4e9020b6d0d26f131d535e055902dd6ccf3e2088bce3079a8cd3588a4b14c78", "author": "The OpenVEX Project ", "role": "Demo Writer", "timestamp": "2023-07-17T18:28:47.696004345-06:00", "version": 1, "statements": [ { "vulnerability": { "name": "CVE-2023-1255" }, "products": [ { "@id": "pkg:oci/alpine@sha256%3A124c7d2707904eea7431fffe91522a01e5a861a624ee31d03372cc1d138a3126", "subcomponents": [ { "@id": "pkg:apk/alpine/libssl3@3.0.8-r3" }, { "@id": "pkg:apk/alpine/libcrypto3@3.0.8-r3" } ] } ], "status": "fixed" }, { "vulnerability": { "name": "CVE-2023-2650" }, "products": [ { "@id": "pkg:oci/alpine@sha256%3A124c7d2707904eea7431fffe91522a01e5a861a624ee31d03372cc1d138a3126", "subcomponents": [ { "@id": "pkg:apk/alpine/libssl3@3.0.8-r3" }, { "@id": "pkg:apk/alpine/libcrypto3@3.0.8-r3" } ] } ], "status": "fixed" }, { "vulnerability": { "name": "CVE-2023-2975" }, "products": [ { "@id": "pkg:oci/alpine@sha256%3A124c7d2707904eea7431fffe91522a01e5a861a624ee31d03372cc1d138a3126", "subcomponents": [ { "@id": "pkg:apk/alpine/libssl3@3.0.8-r3" }, { "@id": "pkg:apk/alpine/libcrypto3@3.0.8-r3" } ] } ], "status": "fixed" }, { "vulnerability": { "name": "CVE-2023-3446" }, "products": [ { "@id": "pkg:oci/alpine@sha256%3A124c7d2707904eea7431fffe91522a01e5a861a624ee31d03372cc1d138a3126", "subcomponents": [ { "@id": "pkg:apk/alpine/libssl3@3.0.8-r3" }, { "@id": "pkg:apk/alpine/libcrypto3@3.0.8-r3" } ] } ], "status": "not_affected", "justification": "vulnerable_code_not_present", "impact_statement": "affected functions were removed before packaging" }, { "vulnerability": { "name": "CVE-2023-3817" }, "products": [ { "@id": "pkg:oci/alpine@sha256%3A124c7d2707904eea7431fffe91522a01e5a861a624ee31d03372cc1d138a3126", "subcomponents": [ { "@id": "pkg:apk/alpine/libssl3@3.0.8-r3" }, { "@id": "pkg:apk/alpine/libcrypto3@3.0.8-r3" } ] } ], "status": "not_affected", "justification": "vulnerable_code_not_present", "impact_statement": "affected functions were removed before packaging" } ] } go-vex-0.2.7/pkg/vex/testdata/v001-1.vex.json000066400000000000000000000006431506046251100204440ustar00rootroot00000000000000{ "@context": "https://openvex.dev/ns", "@id": "my-vexdoc2", "format": "text/vex+json", "author": "John Doe", "role": "vex issuer", "statements": [ { "timestamp": "2022-12-22T16:36:43-05:00", "products": ["pkg:apk/wolfi/bash@1.0.0"], "vulnerability": "CVE-1234-5678", "status": "under_investigation", "status_notes": "" } ] } go-vex-0.2.7/pkg/vex/testdata/v001-2.vex.json000066400000000000000000000005701506046251100204440ustar00rootroot00000000000000{ "@context": "https://openvex.dev/ns", "@id": "my-vexdoc2", "format": "text/vex+json", "author": "John Doe", "role": "vex issuer", "statements": [ { "timestamp": "2022-12-22T20:56:05-05:00", "products": ["pkg:apk/wolfi/bash@1.0.0"], "vulnerability": "CVE-1234-5678", "status": "fixed" } ] } go-vex-0.2.7/pkg/vex/testdata/v020-1.vex.json000066400000000000000000000007331506046251100204450ustar00rootroot00000000000000{ "@context": "https://openvex.dev/ns/v0.2.0", "@id": "https://openvex.dev/docs/public/vex-3f59b4dffdeae0183e5e6a9d7a2461fdf86a03c079f4129050bb462eca366beb", "author": "John Doe", "role": "Senior Trusted VEX Issuer", "statements": [ { "timestamp": "2022-12-22T16:36:43-05:00", "products": [ { "@id": "pkg:apk/wolfi/bash@1.0.0" } ], "vulnerability": { "name": "CVE-9876-54321" }, "status": "under_investigation" } ] } go-vex-0.2.7/pkg/vex/testdata/v020-2.vex.json000066400000000000000000000007341506046251100204470ustar00rootroot00000000000000{ "@context": "https://openvex.dev/ns/v0.2.0", "@id": "https://openvex.dev/docs/public/vex-99f523e8cec348eb9917eefe85cd335410946391b959a8b6dab80f3514c8546c", "author": "John Doe", "role": "Senior Trusted VEX Issuer", "statements": [ { "timestamp": "2022-12-22T16:36:43-05:00", "products": [ { "@id": "pkg:apk/wolfi/git@2.41.0-1" } ], "vulnerability": { "name": "CVE-1234-5678" }, "status": "under_investigation" } ] } go-vex-0.2.7/pkg/vex/testdata/vex.yaml000066400000000000000000000012231506046251100176050ustar00rootroot00000000000000--- format: vex_attestation id: "" author: "Chainguard" role: "author" timestamp: "2022-08-29T17:48:53.697543267-05:00" statements: - vulnerability: name: "CVE-2022-31030" aliases: - "FEDORA-2022-1da581ac6d" - "DSA-5162" status: "not_affected" justification: "vulnerable_code_not_in_execute_path" action_statement: "Affected library function not called" - vulnerability: name: "CVE-2021-44228" # Log4j aliases: - "FEDORA-2021-66d6c484f3" - "VU#930724" - "cisco-sa-apache-log4j-qRuKNEbd" status: "affected" action_statement: "Customers are advised to upgrade" go-vex-0.2.7/pkg/vex/vex.go000066400000000000000000000312461506046251100154470ustar00rootroot00000000000000/* Copyright 2023 The OpenVEX Authors SPDX-License-Identifier: Apache-2.0 */ package vex import ( "crypto/sha256" "encoding/json" "fmt" "io" "log/slog" "os" "sort" "strconv" "strings" "time" "github.com/package-url/packageurl-go" ) const ( // TypeURI is the type used to describe VEX documents, e.g. within [in-toto // statements]. // // [in-toto statements]: https://github.com/in-toto/attestation/blob/main/spec/README.md#statement TypeURI = "https://openvex.dev/ns" // SpecVersion is the latest released version of the openvex. This constant // is used to form the context URL when generating new documents. SpecVersion = "0.2.0" // DefaultAuthor is the default value for a document's Author field. DefaultAuthor = "Unknown Author" // DefaultRole is the default value for a document's AuthorRole field. DefaultRole = "" // Context is the URL of the json-ld context definition Context = "https://openvex.dev/ns" // PublicNamespace is the public openvex namespace for common @ids PublicNamespace = "https://openvex.dev/docs" // NoActionStatementMsg is the action statement that informs that there is no action statement :/ NoActionStatementMsg = "No action statement provided" errMsgParse = "error" ) // DefaultNamespace is the URL that will be used to generate new IRIs for generated // documents and nodes. It is set to the OpenVEX public namespace by default. var DefaultNamespace = PublicNamespace // The VEX type represents a VEX document and all of its contained information. type VEX struct { Metadata Statements []Statement `json:"statements"` } // The Metadata type represents the metadata associated with a VEX document. type Metadata struct { // Context is the URL pointing to the jsonld context definition Context string `json:"@context"` // ID is the identifying string for the VEX document. This should be unique per // document. ID string `json:"@id"` // Author is the identifier for the author of the VEX statement, ideally a common // name, may be a URI. [author] is an individual or organization. [author] // identity SHOULD be cryptographically associated with the signature of the VEX // statement or document or transport. Author string `json:"author"` // AuthorRole describes the role of the document Author. AuthorRole string `json:"role,omitempty"` // Timestamp defines the time at which the document was issued. Timestamp *time.Time `json:"timestamp"` // LastUpdated marks the time when the document had its last update. When the // document changes both version and this field should be updated. LastUpdated *time.Time `json:"last_updated,omitempty"` // Version is the document version. It must be incremented when any content // within the VEX document changes, including any VEX statements included within // the VEX document. Version int `json:"version"` // Tooling expresses how the VEX document and contained VEX statements were // generated. It's optional. It may specify tools or automated processes used in // the document or statement generation. Tooling string `json:"tooling,omitempty"` // Supplier is an optional field. Supplier string `json:"supplier,omitempty"` } // New returns a new, initialized VEX document. func New() VEX { now := time.Now() t, err := DateFromEnv() if err != nil { slog.Warn(err.Error()) } if t != nil { now = *t } return VEX{ Metadata: Metadata{ Context: ContextLocator(), Author: DefaultAuthor, AuthorRole: DefaultRole, Version: 1, Timestamp: &now, }, Statements: []Statement{}, } } // ToJSON serializes the VEX document to JSON and writes it to the passed writer. func (vexDoc *VEX) ToJSON(w io.Writer) error { enc := json.NewEncoder(w) enc.SetIndent("", " ") enc.SetEscapeHTML(false) if err := enc.Encode(vexDoc); err != nil { return fmt.Errorf("encoding vex document: %w", err) } return nil } // MarshalJSON the document object overrides its marshaling function to normalize // the timezones in all dates to Zulu. func (vexDoc *VEX) MarshalJSON() ([]byte, error) { type alias VEX var ts, lu string if vexDoc.Timestamp != nil { ts = vexDoc.Timestamp.UTC().Format(time.RFC3339) } if vexDoc.LastUpdated != nil { lu = vexDoc.LastUpdated.UTC().Format(time.RFC3339) } return json.Marshal(&struct { *alias TimeZonedTimestamp string `json:"timestamp"` TimeZonedLastUpdated string `json:"last_updated,omitempty"` }{ TimeZonedTimestamp: ts, TimeZonedLastUpdated: lu, alias: (*alias)(vexDoc), }) } // EffectiveStatement returns the latest VEX statement for a given product and // vulnerability, that is the statement that contains the latest data about // impact to a given product. func (vexDoc *VEX) EffectiveStatement(product, vulnID string) (s *Statement) { statements := vexDoc.Statements var t time.Time if vexDoc.Timestamp != nil { t = *vexDoc.Timestamp } SortStatements(statements, t) for i := len(statements) - 1; i >= 0; i-- { if statements[i].Matches(vulnID, product, nil) { return &statements[i] } } return nil } // StatementFromID returns a statement for a given vulnerability if there is one. // // Deprecated: vex.StatementFromID is deprecated and will be removed in an upcoming version func (vexDoc *VEX) StatementFromID(id string) *Statement { slog.Warn("vex.StatementFromID is deprecated and will be removed in an upcoming version") for i := range vexDoc.Statements { if string(vexDoc.Statements[i].Vulnerability.Name) == id && len(vexDoc.Statements[i].Products) > 0 { return vexDoc.EffectiveStatement(vexDoc.Statements[i].Products[0].ID, id) } } return nil } // Matches returns the latest VEX statement for a given product and // vulnerability. That is, the statement that contains the latest data with // impact data of a vulnerability on a given product. func (vexDoc *VEX) Matches(vulnID, product string, subcomponents []string) []Statement { statements := vexDoc.Statements var t time.Time if vexDoc.Timestamp != nil { t = *vexDoc.Timestamp } matches := []Statement{} for i := len(statements) - 1; i >= 0; i-- { if statements[i].Matches(vulnID, product, subcomponents) { matches = append(matches, statements[i]) } } SortStatements(matches, t) return matches } // CanonicalHash returns a hash representing the state of impact statements // expressed in it. This hash should be constant as long as the impact // statements are not modified. Changes in extra information and metadata // will not alter the hash. func (vexDoc *VEX) CanonicalHash() (string, error) { // Here's the algo: // 1. Start with the document date. In unixtime to avoid format variance. cString := fmt.Sprintf("%d", vexDoc.Timestamp.Unix()) // 2. Document version cString += fmt.Sprintf(":%d", vexDoc.Version) // 3. Author identity cString += fmt.Sprintf(":%s", vexDoc.Author) // 4. Sort the statements stmts := vexDoc.Statements SortStatements(stmts, *vexDoc.Timestamp) // 5. Now add the data from each statement //nolint:gocritic for _, s := range stmts { // 5a. Vulnerability cString += cstringFromVulnerability(s.Vulnerability) // 5b. Status + Justification cString += fmt.Sprintf(":%s:%s", s.Status, s.Justification) // 5c. Statement time, in unixtime. If it exists, if not the doc's if s.Timestamp != nil { cString += fmt.Sprintf(":%d", s.Timestamp.Unix()) } else { cString += fmt.Sprintf(":%d", vexDoc.Timestamp.Unix()) } // 5d. Sorted product strings prods := []string{} for _, p := range s.Products { prodString := cstringFromComponent(p.Component) if len(p.Subcomponents) > 0 { for _, sc := range p.Subcomponents { prodString += cstringFromComponent(sc.Component) } } prods = append(prods, prodString) } sort.Strings(prods) cString += strings.Join(prods, ":") } // 6. Hash the string in sha256 and return h := sha256.New() if _, err := h.Write([]byte(cString)); err != nil { return "", fmt.Errorf("hashing canonicalization string: %w", err) } return fmt.Sprintf("%x", h.Sum(nil)), nil } // cstringFromComponent returns a string concatenating the data of a component // this internal function is meant to generate a predicatable string to generate // the document's CanonicalHash func cstringFromComponent(c Component) string { s := fmt.Sprintf(":%s", c.ID) for algo, val := range c.Hashes { s += fmt.Sprintf(":%s@%s", algo, val) } for t, id := range c.Identifiers { s += fmt.Sprintf(":%s@%s", t, id) } return s } // cstringFromVulnerability returns a string concatenating the vulnerability // elements into a reproducible string that can be used to hash or index the // vulnerability data or the statement. func cstringFromVulnerability(v Vulnerability) string { cString := fmt.Sprintf(":%s:%s", v.ID, v.Name) list := []string{} for i := range v.Aliases { list = append(list, string(v.Aliases[i])) } sort.Strings(list) cString += fmt.Sprintf(":%s", strings.Join(list, ":")) return cString } // GenerateCanonicalID generates an ID for the document. The ID will be // based on the canonicalization hash. This means that documents // with the same impact statements will always get the same ID. // Trying to generate the id of a doc with an existing ID will // not do anything. func (vexDoc *VEX) GenerateCanonicalID() (string, error) { if vexDoc.ID != "" { return vexDoc.ID, nil } cHash, err := vexDoc.CanonicalHash() if err != nil { return "", fmt.Errorf("getting canonical hash: %w", err) } // For common namespaced documents we namespace them into /public vexDoc.ID = fmt.Sprintf("%s/public/vex-%s", DefaultNamespace, cHash) return vexDoc.ID, nil } // DateFromEnv returns a time object representing the time specified in the // `SOURCE_DATE_EPOCH` environment variable, whose value can be specified as // either UNIX seconds or as a RFC3339 value. func DateFromEnv() (*time.Time, error) { // Support env var for reproducible vexing d := os.Getenv("SOURCE_DATE_EPOCH") if d == "" { return nil, nil } var t time.Time sec, err := strconv.ParseInt(d, 10, 64) if err == nil { t = time.Unix(sec, 0) } else { t, err = time.Parse(time.RFC3339, d) if err != nil { return nil, fmt.Errorf("failed to parse env var SOURCE_DATE_EPOCH: %w", err) } } return &t, nil } // ContextLocator returns the locator string for the current OpenVEX version. func ContextLocator() string { return fmt.Sprintf("%s/v%s", Context, SpecVersion) } // PurlMatches returns true if purl1 matches the more specific purl2. It takes into // account all segments of the pURL, including qualifiers. purl1 is considered to // be more general and purl2 more specific and thus, the following considerations // are made when matching: // // - If purl1 does not have a version, it will match any version in purl2 // - If purl1 has qualifers, purl2 must have the same set of qualifiers to match. // - Inversely, purl2 can have any number of qualifiers not found on purl1 and // still match. // - If any of the purls is invalid, the function returns false. // // Purl version ranges are not supported yet but they will be in a future version // of this matching function. func PurlMatches(purl1, purl2 string) bool { p1, err := packageurl.FromString(purl1) if err != nil { return false } p2, err := packageurl.FromString(purl2) if err != nil { return false } if p1.Type != p2.Type { return false } if p1.Namespace != p2.Namespace { return false } if p1.Name != p2.Name { return false } if p1.Version != "" && p2.Version == "" { return false } if p1.Version != p2.Version && p1.Version != "" && p2.Version != "" { return false } p1q := p1.Qualifiers.Map() p2q := p2.Qualifiers.Map() // All qualifiers in p1 must be in p2 to match for k, v1 := range p1q { if v2, ok := p2q[k]; !ok || v1 != v2 { return false } } return true } // StatementsByVulnerability returns a list of statements that apply to a // vulnerability ID. These are guaranteed to be ordered according to the VEX // history. func (vexDoc *VEX) StatementsByVulnerability(id string) []Statement { ret := []Statement{} for i := range vexDoc.Statements { if vexDoc.Statements[i].Vulnerability.Matches(id) { ret = append(ret, vexDoc.Statements[i]) } } SortStatements(ret, *vexDoc.Timestamp) return ret } // ExtractStatements extracts the statements from the document with the dates // inherited from the encapsuling doc to make them stand alone. func (vexDoc *VEX) ExtractStatements() []*Statement { ret := []*Statement{} // Cycle the VEX statements, copy each and complete the dates for i := range vexDoc.Statements { nstatement := vexDoc.Statements[i].DeepCopy() // Carry over the dates from the doc if nstatement.Timestamp == nil { nstatement.Timestamp = vexDoc.Timestamp } if nstatement.LastUpdated == nil { nstatement.LastUpdated = vexDoc.LastUpdated } ret = append(ret, nstatement) } return ret } go-vex-0.2.7/pkg/vex/vex_test.go000066400000000000000000000304431506046251100165040ustar00rootroot00000000000000// Copyright 2023 The OpenVEX Authors // SPDX-License-Identifier: Apache-2.0 package vex import ( "testing" "time" "github.com/stretchr/testify/require" ) func TestEffectiveStatement(t *testing.T) { date1 := time.Date(2023, 4, 17, 20, 34, 58, 0, time.UTC) date2 := time.Date(2023, 4, 18, 20, 34, 58, 0, time.UTC) for caseName, tc := range map[string]struct { vexDoc *VEX vulnID string product string shouldNil bool expectedDate *time.Time expectedStatus Status }{ "Single statement": { vexDoc: &VEX{ Statements: []Statement{ { Vulnerability: Vulnerability{Name: "CVE-2014-123456"}, Timestamp: &date1, Products: []Product{{Component: Component{ID: "pkg:deb/pkg@1.0"}}}, Status: StatusNotAffected, }, }, }, vulnID: "CVE-2014-123456", product: "pkg:deb/pkg@1.0", shouldNil: false, expectedDate: &date1, expectedStatus: StatusNotAffected, }, "Two consecutive statemente": { vexDoc: &VEX{ Statements: []Statement{ { Vulnerability: Vulnerability{Name: "CVE-2014-123456"}, Timestamp: &date1, Products: []Product{{Component: Component{ID: "pkg:deb/pkg@1.0"}}}, Status: StatusUnderInvestigation, }, { Vulnerability: Vulnerability{Name: "CVE-2014-123456"}, Timestamp: &date2, Products: []Product{{Component: Component{ID: "pkg:deb/pkg@1.0"}}}, Status: StatusNotAffected, }, }, }, vulnID: "CVE-2014-123456", product: "pkg:deb/pkg@1.0", shouldNil: false, expectedDate: &date2, expectedStatus: StatusNotAffected, }, "Different products": { vexDoc: &VEX{ Statements: []Statement{ { Vulnerability: Vulnerability{Name: "CVE-2014-123456"}, Timestamp: &date1, Products: []Product{{Component: Component{ID: "pkg:deb/pkg@1.0"}}}, Status: StatusUnderInvestigation, }, { Vulnerability: Vulnerability{Name: "CVE-2014-123456"}, Timestamp: &date2, Products: []Product{{Component: Component{ID: "pkg:deb/pkg@2.0"}}}, Status: StatusNotAffected, }, }, }, vulnID: "CVE-2014-123456", product: "pkg:deb/pkg@1.0", shouldNil: false, expectedDate: &date1, expectedStatus: StatusUnderInvestigation, }, "Vulnerability aliases": { vexDoc: &VEX{ Statements: []Statement{ { Vulnerability: Vulnerability{ Name: "CVE-2014-123456", Aliases: []VulnerabilityID{"ghsa-92xj-mqp7-vmcj"}, }, Timestamp: &date1, Products: []Product{{Component: Component{ID: "pkg:deb/pkg@1.0"}}}, Status: StatusUnderInvestigation, }, { Vulnerability: Vulnerability{ID: "CVE-2014-123456"}, Timestamp: &date2, Products: []Product{{Component: Component{ID: "pkg:deb/pkg@2.0"}}}, Status: StatusNotAffected, }, }, }, vulnID: "ghsa-92xj-mqp7-vmcj", product: "pkg:deb/pkg@1.0", shouldNil: false, expectedDate: &date1, expectedStatus: StatusUnderInvestigation, }, } { s := tc.vexDoc.EffectiveStatement(tc.product, tc.vulnID) if tc.shouldNil { require.Nil(t, s) } else { require.NotNil(t, s, caseName) require.Equal(t, tc.expectedDate, s.Timestamp) require.Equal(t, tc.expectedStatus, s.Status) } } } func genTestDoc(t *testing.T) VEX { ts, err := time.Parse(time.RFC3339, "2022-12-22T16:36:43-05:00") require.NoError(t, err) return VEX{ Metadata: Metadata{ Author: "John Doe", AuthorRole: "VEX Writer Extraordinaire", Timestamp: &ts, Version: 1, Tooling: "OpenVEX", Supplier: "Chainguard Inc", }, Statements: []Statement{ { Vulnerability: Vulnerability{ Name: "CVE-1234-5678", Aliases: []VulnerabilityID{ VulnerabilityID("some vulnerability alias"), }, }, Products: []Product{ { Component: Component{ ID: "pkg:oci/example@sha256:47fed8868b46b060efb8699dc40e981a0c785650223e03602d8c4493fc75b68c", }, Subcomponents: []Subcomponent{ { Component: Component{ ID: "pkg:apk/wolfi/bash@1.0.0", }, }, }, }, }, Status: "under_investigation", }, }, } } func TestCanonicalHash(t *testing.T) { // Not a credential goldenHash := `8ed99017785c3b43219018c7c50353c031cdaaf1c7efc146c683b0ce57123cf6` otherTS, err := time.Parse(time.RFC3339, "2019-01-22T16:36:43-05:00") require.NoError(t, err) for i, tc := range []struct { prepare func(*VEX) expected string shouldErr bool }{ // Default Expected {func(_ *VEX) {}, goldenHash, false}, // Adding a statement changes the hash { func(v *VEX) { v.Statements = append(v.Statements, Statement{ Vulnerability: Vulnerability{Name: "CVE-2010-543231"}, Products: []Product{ {Component: Component{ID: "pkg:apk/wolfi/git@2.0.0"}}, }, Status: "affected", }) }, "cbfbba00d118572164b5b934e3ced71c1b02e171f942abfe66d42775dba703cf", false, }, // Changing metadata should not change hash { func(v *VEX) { v.AuthorRole = "abc" v.ID = "298347" // Mmhh... v.Supplier = "Mr Supplier" v.Tooling = "Fake Tool 1.0" }, goldenHash, false, }, // Changing other statement metadata should not change the hash { func(v *VEX) { v.Statements[0].ActionStatement = "Action!" v.Statements[0].StatusNotes = "Let's note somthn here" v.Statements[0].ImpactStatement = "We evaded this CVE by a hair" v.Statements[0].ActionStatementTimestamp = &otherTS }, goldenHash, false, }, // Changing products changes the hash { func(v *VEX) { v.Statements[0].Products[0].ID = "cool router, bro" }, "010aaeb3d6bf69c486e199a48ec40038ca347d2603142dd48d97937d8477fe37", false, }, // Changing document time changes the hash { func(v *VEX) { v.Timestamp = &otherTS }, "d585979c1cc06797d2486382b3fd5e95d3a9b416525c95c9fefcef9863a595c8", false, }, // Same timestamp in statement as doc should not change the hash { func(v *VEX) { v.Statements[0].Timestamp = v.Timestamp }, goldenHash, false, }, } { doc := genTestDoc(t) tc.prepare(&doc) hashString, err := doc.CanonicalHash() if tc.shouldErr { require.Error(t, err) } else { require.NoError(t, err) } require.Equal(t, tc.expected, hashString, "Testcase #%d %s", i, doc.Statements[0].Products[0]) } } func TestGenerateCanonicalID(t *testing.T) { for _, tc := range []struct { prepare func(*VEX) expectedID string }{ { // Normal generation prepare: func(_ *VEX) {}, expectedID: "https://openvex.dev/docs/public/vex-8ed99017785c3b43219018c7c50353c031cdaaf1c7efc146c683b0ce57123cf6", }, { // Existing IDs should not be changed prepare: func(v *VEX) { v.ID = "VEX-ID-THAT-ALREADY-EXISTED" }, expectedID: "VEX-ID-THAT-ALREADY-EXISTED", }, } { doc := genTestDoc(t) tc.prepare(&doc) id, err := doc.GenerateCanonicalID() require.NoError(t, err) require.Equal(t, tc.expectedID, id) } } func TestPurlMatches(t *testing.T) { for caseName, tc := range map[string]struct { p1 string p2 string mustMatch bool }{ "same purl": {"pkg:apk/wolfi/curl@8.1.2-r0?arch=x86_64", "pkg:apk/wolfi/curl@8.1.2-r0?arch=x86_64", true}, "different type": {"pkg:apk/wolfi/curl@8.1.2-r0?arch=x86_64", "pkg:rpm/wolfi/curl@8.1.2-r0?arch=x86_64", false}, "different ns": {"pkg:apk/wolfi/curl@8.1.2-r0?arch=x86_64", "pkg:apk/alpine/curl@8.1.2-r0?arch=x86_64", false}, "different package": {"pkg:apk/wolfi/curl@8.1.2-r0?arch=x86_64", "pkg:apk/wolfi/bash@8.1.2-r0?arch=x86_64", false}, "different version": {"pkg:apk/wolfi/curl@8.1.2-r0?arch=x86_64", "pkg:apk/wolfi/bash@8.1.3-r0?arch=x86_64", false}, "p1 no qualifiers": {"pkg:apk/wolfi/curl@8.1.2-r0", "pkg:apk/wolfi/curl@8.1.2-r0?arch=x86_64", true}, "p2 no qualifiers": {"pkg:apk/wolfi/curl@8.1.2-r0?arch=x86_64", "pkg:apk/wolfi/curl@8.1.2-r0", false}, "versionless": { "pkg:oci/curl", "pkg:oci/curl@sha256:47fed8868b46b060efb8699dc40e981a0c785650223e03602d8c4493fc75b68c", true, }, "different qualifier": { "pkg:oci/curl@sha256:47fed8868b46b060efb8699dc40e981a0c785650223e03602d8c4493fc75b68c?arch=amd64&os=linux", "pkg:oci/curl@sha256:47fed8868b46b060efb8699dc40e981a0c785650223e03602d8c4493fc75b68c?arch=arm64&os=linux", false, }, "p2 more qualifiers": { "pkg:apk/wolfi/curl@8.1.2-r0?arch=x86_64", "pkg:apk/wolfi/curl@8.1.2-r0?arch=x86_64&os=linux", true, }, } { require.Equal(t, tc.mustMatch, PurlMatches(tc.p1, tc.p2), "failed testcase: %s", caseName) } } func TestDocumentMatches(t *testing.T) { now := time.Now() for testCase, tc := range map[string]struct { sut *VEX product string vulnerability string subcomponents []string mustMach bool numMatches int }{ "regular match": { sut: &VEX{ Metadata: Metadata{Timestamp: &now}, Statements: []Statement{ { Vulnerability: Vulnerability{ID: "CVE-2023-1255"}, Products: []Product{ { Component: Component{ ID: "pkg:oci/alpine@sha256%3A124c7d2707904eea7431fffe91522a01e5a861a624ee31d03372cc1d138a3126", }, Subcomponents: []Subcomponent{ // {Component: Component{ID: "pkg:apk/alpine/libcrypto3@3.0.8-r3"}}, }, }, }, }, }, }, product: "pkg:oci/alpine@sha256%3A124c7d2707904eea7431fffe91522a01e5a861a624ee31d03372cc1d138a3126", vulnerability: "CVE-2023-1255", mustMach: true, numMatches: 1, }, } { matches := tc.sut.Matches( tc.vulnerability, tc.product, tc.subcomponents, ) require.Len(t, matches, tc.numMatches, "failed: %s", testCase) } } func TestParseContext(t *testing.T) { for tCase, tc := range map[string]struct { docData string expected string shouldErr bool }{ "Normal": {`{"@context": "https://openvex.dev/ns"}`, "https://openvex.dev/ns", false}, "Other JSON": {`{"document": { "category": "csaf_vex" } }`, "", false}, "Invalid JSON": {`@context": "https://openvex.dev/ns`, "", true}, "Other json-ld": {`{"@context": "https://spdx.dev/"}`, "", false}, } { res, err := parseContext([]byte(tc.docData)) if tc.shouldErr { require.Error(t, err, tCase) continue } require.NoError(t, err, tCase) require.Equal(t, tc.expected, res, tCase) } } func TestExtractStatements(t *testing.T) { t.Parallel() tm1 := time.Now() tm2 := time.Now().Add(1 * time.Hour) tm3 := time.Now().Add(2 * time.Hour) var nilTime *time.Time for _, tc := range []struct { name string sut *VEX validate func(*testing.T, []*Statement) }{ { "replace-all", &VEX{ Metadata: Metadata{Timestamp: &tm1, LastUpdated: &tm2}, Statements: []Statement{{Timestamp: nil, LastUpdated: nil}}, }, func(t *testing.T, s []*Statement) { t.Helper() require.Equal(t, &tm1, s[0].Timestamp) require.Equal(t, &tm2, s[0].LastUpdated) }, }, { "replace-ts", &VEX{ Metadata: Metadata{Timestamp: &tm1, LastUpdated: &tm2}, Statements: []Statement{{Timestamp: nil, LastUpdated: &tm3}}, }, func(t *testing.T, s []*Statement) { t.Helper() require.Equal(t, &tm1, s[0].Timestamp) require.Equal(t, &tm3, s[0].LastUpdated) }, }, { "replace-lu", &VEX{ Metadata: Metadata{Timestamp: &tm1, LastUpdated: &tm2}, Statements: []Statement{{Timestamp: &tm3, LastUpdated: nil}}, }, func(t *testing.T, s []*Statement) { t.Helper() require.Equal(t, &tm3, s[0].Timestamp) require.Equal(t, &tm2, s[0].LastUpdated) }, }, { "all-nil", &VEX{ Metadata: Metadata{Timestamp: nil, LastUpdated: nil}, Statements: []Statement{{Timestamp: nil, LastUpdated: nil}}, }, func(t *testing.T, s []*Statement) { t.Helper() require.Equal(t, nilTime, s[0].Timestamp) require.Equal(t, nilTime, s[0].LastUpdated) }, }, { "doc-nil", &VEX{ Metadata: Metadata{Timestamp: nil, LastUpdated: nil}, Statements: []Statement{{Timestamp: &tm1, LastUpdated: &tm2}}, }, func(t *testing.T, s []*Statement) { t.Helper() require.Equal(t, &tm1, s[0].Timestamp) require.Equal(t, &tm2, s[0].LastUpdated) }, }, } { t.Run(tc.name, func(t *testing.T) { t.Parallel() tc.validate(t, tc.sut.ExtractStatements()) }) } } go-vex-0.2.7/pkg/vex/vulnerability.go000066400000000000000000000034051506046251100175320ustar00rootroot00000000000000/* Copyright 2023 The OpenVEX Authors SPDX-License-Identifier: Apache-2.0 */ package vex // Vulnerability is a struct that captures the vulnerability identifier and // its aliases. When defined, the ID field should be an IRI. type Vulnerability struct { // ID is an IRI to reference the vulnerability in the statement. ID string `json:"@id,omitempty"` // Name is the main vulnerability identifier. Name VulnerabilityID `json:"name,omitempty"` // Description is a short free form text description of the vulnerability. Description string `json:"description,omitempty"` // Aliases is a list of other vulnerability identifier strings that // locate the vulnerability in other tracking systems. Aliases []VulnerabilityID `json:"aliases,omitempty"` } // VulnerabilityID is a string that captures a vulnerability identifier. It is // a free form string but it is intended to capture the identifiers used by // tracking systems. type VulnerabilityID string // Matches returns true if the vulnerability's name or aliases matches the // identifier string. func (v *Vulnerability) Matches(identifier string) bool { // Identifier is an IRI, not te vuln ID. To match against the vuln.ID // we should normalize the identifier to the full IRI (ie de-localize) if v.ID == identifier { return true } if string(v.Name) == identifier { return true } for _, id := range v.Aliases { if id == VulnerabilityID(identifier) { return true } } return false } func (v *Vulnerability) DeepCopy() *Vulnerability { if v == nil { return nil } out := &Vulnerability{} v.DeepCopyInto(out) return out } func (v *Vulnerability) DeepCopyInto(out *Vulnerability) { if out == nil { return } out.ID = v.ID out.Name = v.Name out.Aliases = v.Aliases out.Description = v.Description }