From 452b0474eb09e8ab7592cb6b2c06c5f8db461468 Mon Sep 17 00:00:00 2001 From: Alessandro Franceschi Date: Fri, 9 Jan 2026 18:12:46 +0100 Subject: [PATCH] Add external facts of top scope vars --- Puppetfile | 48 +- hiera_pabawi.yaml | 15 + keys | 1 - manifests/site.pp | 48 +- run_onceover.sh | 2 + spec/factsets/lab.json | 13972 ++++++++++++++++ .../lab.psick.io}/build.lab.psick.io_spec.rb | 0 .../jenkins.lab.psick.io_spec.rb | 0 .../lab.psick.io}/puppet.lab.psick.io_spec.rb | 0 .../windows2012.lab.psick.io_spec.rb | 0 spec/onceover.yaml | 36 +- spec/spec_helper.rb | 61 +- 12 files changed, 14096 insertions(+), 87 deletions(-) create mode 100644 hiera_pabawi.yaml delete mode 120000 keys create mode 100755 run_onceover.sh create mode 100644 spec/factsets/lab.json rename spec/{hosts => hosts-lab/lab.psick.io}/build.lab.psick.io_spec.rb (100%) rename spec/{hosts => hosts-lab/lab.psick.io}/jenkins.lab.psick.io_spec.rb (100%) rename spec/{hosts => hosts-lab/lab.psick.io}/puppet.lab.psick.io_spec.rb (100%) rename spec/{hosts => hosts-lab/lab.psick.io}/windows2012.lab.psick.io_spec.rb (100%) diff --git a/Puppetfile b/Puppetfile index fcc19118..34b8a3f0 100644 --- a/Puppetfile +++ b/Puppetfile @@ -9,21 +9,22 @@ mod 'example42/hieradata', :branch => :control_branch, :default_branch => 'production' -# Puppet 6 Core Modues -mod 'puppetlabs/mount_core', :latest -mod 'puppetlabs/augeas_core', :latest -mod 'puppetlabs/zfs_core', :latest -mod 'puppetlabs/yumrepo_core', :latest +# Puppet 6 Core Modules +# They are included in official puppet/openvox agent packages +# mod 'puppetlabs/mount_core', :latest +# mod 'puppetlabs/augeas_core', :latest +# mod 'puppetlabs/zfs_core', :latest +# mod 'puppetlabs/yumrepo_core', :latest mod 'puppetlabs/host_core', :latest -mod 'puppetlabs/selinux_core', :latest -mod 'puppetlabs/zone_core', :latest -mod 'puppetlabs/cron_core', :latest -mod 'puppetlabs/sshkeys_core', :latest -mod 'puppetlabs/nagios_core', :latest -mod 'puppetlabs/mailalias_core', :latest -mod 'puppetlabs/macdslocal_core', :latest -mod 'puppetlabs/maillist_core', :latest -mod 'puppetlabs/k5login_core', :latest +# mod 'puppetlabs/selinux_core', :latest +# mod 'puppetlabs/zone_core', :latest +# mod 'puppetlabs/cron_core', :latest +# mod 'puppetlabs/sshkeys_core', :latest +# mod 'puppetlabs/nagios_core', :latest +# mod 'puppetlabs/mailalias_core', :latest +# mod 'puppetlabs/macdslocal_core', :latest +# mod 'puppetlabs/maillist_core', :latest +# mod 'puppetlabs/k5login_core', :latest # Example42 modules # From Forge @@ -36,12 +37,12 @@ mod 'example42/psick_profile', :latest mod 'puppetlabs/concat', :latest mod 'puppetlabs/stdlib', :latest mod 'puppetlabs/vcsrepo', :latest -mod 'puppetlabs/firewall', :latest +# mod 'puppetlabs/firewall', :latest mod 'puppetlabs/inifile', :latest -mod 'jdowning/rbenv', :latest +# mod 'jdowning/rbenv', :latest mod 'trlinkin/noop', :latest mod 'puppet/archive', :latest -mod 'puppetlabs-dropsonde', :latest +# mod 'puppetlabs-dropsonde', :latest # Optionally used by psick_profile::openvpn @@ -51,6 +52,7 @@ mod 'puppetlabs-dropsonde', :latest # mod 'puppetlabs/aws', :latest # Used by psick::puppet::foss_server + # mod 'puppetlabs-bolt_shim', '0.3.0' # mod 'puppetlabs/postgresql', :latest # mod 'puppetlabs/puppetdb', :latest @@ -71,7 +73,7 @@ mod 'puppetlabs-dropsonde', :latest #mod 'dwerder/graphite', :latest # Docker and Containers -mod 'puppetlabs/dummy_service', :latest +# mod 'puppetlabs/dummy_service', :latest #mod 'puppetlabs/image_build', :latest #mod 'puppetlabs/rkt', :latest @@ -79,15 +81,15 @@ mod 'puppetlabs/dummy_service', :latest # mod 'puppetlabs/firewall', :latest # Used by psick_profile::vagrant -mod 'unibet/vagrant', :latest +# mod 'unibet/vagrant', :latest # Used by psick::icinga -mod 'icinga/icinga2', :latest +# mod 'icinga/icinga2', :latest # Used by psick_profile::sensu -mod 'sensu/sensu', :latest -mod 'yelp/uchiwa', :latest -mod 'puppet/rabbitmq', :latest +# mod 'sensu/sensu', :latest +# mod 'yelp/uchiwa', :latest +# mod 'puppet/rabbitmq', :latest # deprecated: mod 'puppet/staging', :latest # Used by Windows profiles diff --git a/hiera_pabawi.yaml b/hiera_pabawi.yaml new file mode 100644 index 00000000..7b6acb09 --- /dev/null +++ b/hiera_pabawi.yaml @@ -0,0 +1,15 @@ +version: 5 +defaults: + datadir: modules/hieradata/data +hierarchy: + - name: Eyaml hierarchy + lookup_key: eyaml_lookup_key + paths: + - "nodes/%{trusted.certname}.yaml" + - "role/%{fact_role}-%{fact_env}.yaml" + - "role/%{fact_role}.yaml" + - "zone/%{fact_zone}.yaml" + - common.yaml + options: + pkcs7_private_key: /etc/puppetlabs/puppet/keys/private_key.pkcs7.pem + pkcs7_public_key: /etc/puppetlabs/puppet/keys/public_key.pkcs7.pem diff --git a/keys b/keys deleted file mode 120000 index b1609898..00000000 --- a/keys +++ /dev/null @@ -1 +0,0 @@ -/etc/puppetlabs/puppet/keys \ No newline at end of file diff --git a/manifests/site.pp b/manifests/site.pp index c28c8d5b..39c41f47 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -11,33 +11,52 @@ ### SETTING TOP SCOPE VARIABLES USED IN HIERA.YAML # The following lines are used to assign to top-scope variables (used in -# hiera.yaml) the values of eventual trusted facts. -# More info: https://docs.puppet.com/puppet/latest/reference/ssl_attributes_extensions.html +# hiera.yaml) the values of eventual trusted facts or relevant Hiera keys +# if a fact for them is not already set. # You may need to change and adapt them according to your hiera.yaml # You can keep them also if you don't set extended trusted facts. + if defined('$facts') and defined('$trusted') { - if $trusted['extensions']['pp_role'] and ! getvar('facts.role') { - $role = $trusted['extensions']['pp_role'] + if ! getvar('facts.role') { + $role = pick_default(getvar('trusted.extensions.pp_role'), lookup('role', Optional[String], 'first', undef)) } - if $trusted['extensions']['pp_environment'] and ! getvar('facts.env') { - $env = $trusted['extensions']['pp_environment'] + if ! getvar('facts.env') { + $env = pick_default(getvar('trusted.extensions.pp_environment'), lookup('env', Optional[String], 'first', undef)) } - if $trusted['extensions']['pp_datacenter'] and ! getvar('facts.datacenter') { - $datacenter = $trusted['extensions']['pp_datacenter'] + if ! getvar('facts.datacenter') { + $datacenter = pick_default(getvar('trusted.extensions.pp_datacenter'), lookup('datacenter', Optional[String], 'first', undef)) } - if $trusted['extensions']['pp_zone'] and ! getvar('facts.zone') { - $zone = $trusted['extensions']['pp_zone'] + if ! getvar('facts.zone') { + $zone = pick_default(getvar('trusted.extensions.pp_zone'), lookup('zone', Optional[String], 'first', undef)) } - if $trusted['extensions']['pp_application'] and ! getvar('facts.application') { - $application = $trusted['extensions']['pp_application'] + if ! getvar('facts.application') { + $application = pick_default(getvar('trusted.extensions.pp_application'), lookup('application', Optional[String], 'first', undef)) } # Note: with the above settings we allow overriding of our trusted facts by normal facts. # This is done here to adapt to different approaches, if you use trusted facts # you will probably want to change the above into something like: - # if $trusted['extensions']['pp_role'] { + # if getvar('trusted.extensions.pp_role') { # $role = $trusted['extensions']['pp_role'] # } + # Creation of external facts with the values of the TopScope variables set here and used in hiera.yaml + # Useful for custom hiera_pabawi.yaml file to allow Hiera resolution without catalog compilation (in Pabawi or HDM) + psick::puppet::set_external_fact { 'fact_role': + value => $role, + } + psick::puppet::set_external_fact { 'fact_env': + value => $env, + } + psick::puppet::set_external_fact { 'fact_datacenter': + value => $datacenter, + } + psick::puppet::set_external_fact { 'fact_zone': + value => $zone, + } + psick::puppet::set_external_fact { 'fact_application': + value => $application, + } + ### RESOURCE DEFAULTS # Some resource defaults for Files, Execs and Tiny Puppet @@ -77,6 +96,7 @@ ### ADDITIONS FOR RUNS INSIDE DOCKER IMAGES AND NOOP MODE # Building Docker container support # This has a fix for service provider on docker + # Uncomment mod 'puppetlabs/dummy_service', :latest in Puppetfile to make it working if $virtual == 'docker' { include ::dummy_service } @@ -89,5 +109,5 @@ } # We just do everything in psick module - include '::psick' + include 'psick' } diff --git a/run_onceover.sh b/run_onceover.sh new file mode 100755 index 00000000..03e6696a --- /dev/null +++ b/run_onceover.sh @@ -0,0 +1,2 @@ +#!/bin/bash +podman run --rm -v $(pwd):/repo --userns=keep-id puppet/puppet-dev-tools:4.x onceover "$@" diff --git a/spec/factsets/lab.json b/spec/factsets/lab.json new file mode 100644 index 00000000..7cbf32a3 --- /dev/null +++ b/spec/factsets/lab.json @@ -0,0 +1,13972 @@ +{ + "_puppet_inventory_1": { + "packages": [ + [ + "ModemManager", + "1.20.2-1.el9", + "dnf" + ], + [ + "ModemManager-glib", + "1.20.2-1.el9", + "dnf" + ], + [ + "NetworkManager", + "1:1.52.0-3.el9_6", + "dnf" + ], + [ + "NetworkManager-adsl", + "1:1.52.0-3.el9_6", + "dnf" + ], + [ + "NetworkManager-bluetooth", + "1:1.52.0-3.el9_6", + "dnf" + ], + [ + "NetworkManager-config-server", + "1:1.52.0-3.el9_6", + "dnf" + ], + [ + "NetworkManager-libnm", + "1:1.52.0-3.el9_6", + "dnf" + ], + [ + "NetworkManager-team", + "1:1.52.0-3.el9_6", + "dnf" + ], + [ + "NetworkManager-tui", + "1:1.52.0-3.el9_6", + "dnf" + ], + [ + "NetworkManager-wifi", + "1:1.52.0-3.el9_6", + "dnf" + ], + [ + "NetworkManager-wwan", + "1:1.52.0-3.el9_6", + "dnf" + ], + [ + "PackageKit", + "1.2.6-1.el9", + "dnf" + ], + [ + "PackageKit-command-not-found", + "1.2.6-1.el9", + "dnf" + ], + [ + "PackageKit-glib", + "1.2.6-1.el9", + "dnf" + ], + [ + "PackageKit-gstreamer-plugin", + "1.2.6-1.el9", + "dnf" + ], + [ + "PackageKit-gtk3-module", + "1.2.6-1.el9", + "dnf" + ], + [ + "aardvark-dns", + "2:1.14.0-1.el9", + "dnf" + ], + [ + "abattis-cantarell-fonts", + "0.301-4.el9", + "dnf" + ], + [ + "accountsservice", + "0.6.55-10.el9", + "dnf" + ], + [ + "accountsservice-libs", + "0.6.55-10.el9", + "dnf" + ], + [ + "acl", + "2.3.1-4.el9", + "dnf" + ], + [ + "adcli", + "0.9.2-1.el9", + "dnf" + ], + [ + "adobe-mappings-cmap", + "20171205-12.el9", + "dnf" + ], + [ + "adobe-mappings-cmap-deprecated", + "20171205-12.el9", + "dnf" + ], + [ + "adobe-mappings-pdf", + "20180407-10.el9", + "dnf" + ], + [ + "adobe-source-code-pro-fonts", + "2.030.1.050-12.el9.1", + "dnf" + ], + [ + "adwaita-cursor-theme", + "40.1.1-3.el9", + "dnf" + ], + [ + "adwaita-icon-theme", + "40.1.1-3.el9", + "dnf" + ], + [ + "almalinux-backgrounds", + "90.6-1.el9", + "dnf" + ], + [ + "almalinux-gpg-keys", + "9.6-1.el9", + "dnf" + ], + [ + "almalinux-indexhtml", + "9-4.el9", + "dnf" + ], + [ + "almalinux-logos", + "90.6-1.el9", + "dnf" + ], + [ + "almalinux-release", + "9.6-1.el9", + "dnf" + ], + [ + "almalinux-repos", + "9.6-1.el9", + "dnf" + ], + [ + "alsa-lib", + "1.2.13-2.el9", + "dnf" + ], + [ + "alsa-ucm", + "1.2.13-2.el9", + "dnf" + ], + [ + "alsa-utils", + "1.2.13-1.el9", + "dnf" + ], + [ + "alternatives", + "1.24-2.el9", + "dnf" + ], + [ + "appstream", + "0.16.1-1.el9", + "dnf" + ], + [ + "appstream-data", + "1:9-20240827.el9", + "dnf" + ], + [ + "at", + "3.1.23-11.el9", + "dnf" + ], + [ + "at-spi2-atk", + "2.38.0-4.el9", + "dnf" + ], + [ + "at-spi2-core", + "2.40.3-1.el9", + "dnf" + ], + [ + "atk", + "2.36.0-5.el9", + "dnf" + ], + [ + "atkmm", + "2.28.2-2.el9", + "dnf" + ], + [ + "attr", + "2.5.1-3.el9", + "dnf" + ], + [ + "audit", + "3.1.5-4.el9", + "dnf" + ], + [ + "audit-libs", + "3.1.5-4.el9", + "dnf" + ], + [ + "authselect", + "1.2.6-3.el9", + "dnf" + ], + [ + "authselect-libs", + "1.2.6-3.el9", + "dnf" + ], + [ + "avahi", + "0.8-22.el9_6", + "dnf" + ], + [ + "avahi-glib", + "0.8-22.el9_6", + "dnf" + ], + [ + "avahi-libs", + "0.8-22.el9_6", + "dnf" + ], + [ + "avahi-tools", + "0.8-22.el9_6", + "dnf" + ], + [ + "baobab", + "40.0-3.el9", + "dnf" + ], + [ + "basesystem", + "11-13.el9", + "dnf" + ], + [ + "bash", + "5.1.8-9.el9", + "dnf" + ], + [ + "bash-completion", + "1:2.11-5.el9", + "dnf" + ], + [ + "bc", + "1.07.1-14.el9", + "dnf" + ], + [ + "bind-libs", + "32:9.16.23-28.el9_6", + "dnf" + ], + [ + "bind-license", + "32:9.16.23-28.el9_6", + "dnf" + ], + [ + "bind-utils", + "32:9.16.23-28.el9_6", + "dnf" + ], + [ + "binutils", + "2.35.2-63.el9", + "dnf" + ], + [ + "binutils-gold", + "2.35.2-63.el9", + "dnf" + ], + [ + "blktrace", + "1.2.0-20.el9", + "dnf" + ], + [ + "bluez", + "5.72-4.el9", + "dnf" + ], + [ + "bluez-libs", + "5.72-4.el9", + "dnf" + ], + [ + "bluez-obexd", + "5.72-4.el9", + "dnf" + ], + [ + "bolt", + "0.9.7-1.el9", + "dnf" + ], + [ + "bpftool", + "7.5.0-802.el9_6", + "dnf" + ], + [ + "brlapi", + "0.8.2-4.el9", + "dnf" + ], + [ + "brltty", + "6.3-4.el9", + "dnf" + ], + [ + "bubblewrap", + "0.4.1-8.el9_5", + "dnf" + ], + [ + "buildah", + "2:1.39.4-1.el9_6", + "dnf" + ], + [ + "bzip2", + "1.0.8-10.el9_5", + "dnf" + ], + [ + "bzip2-libs", + "1.0.8-10.el9_5", + "dnf" + ], + [ + "c-ares", + "1.19.1-2.el9_4", + "dnf" + ], + [ + "ca-certificates", + "2024.2.69_v8.0.303-91.4.el9_4", + "dnf" + ], + [ + "cairo", + "1.17.4-7.el9", + "dnf" + ], + [ + "cairo-gobject", + "1.17.4-7.el9", + "dnf" + ], + [ + "cairomm", + "1.14.2-10.el9", + "dnf" + ], + [ + "checkpolicy", + "3.6-1.el9", + "dnf" + ], + [ + "cheese", + "2:3.38.0-6.el9", + "dnf" + ], + [ + "cheese-libs", + "2:3.38.0-6.el9", + "dnf" + ], + [ + "chkconfig", + "1.24-2.el9", + "dnf" + ], + [ + "chrome-gnome-shell", + "42.1-1.el9", + "dnf" + ], + [ + "chrony", + "4.6.1-1.el9", + "dnf" + ], + [ + "clevis", + "21-208.el9", + "dnf" + ], + [ + "clevis-luks", + "21-208.el9", + "dnf" + ], + [ + "clutter", + "1.26.4-7.el9", + "dnf" + ], + [ + "clutter-gst3", + "3.0.27-7.el9", + "dnf" + ], + [ + "clutter-gtk", + "1.8.4-13.el9", + "dnf" + ], + [ + "cockpit", + "334.1-1.el9_6", + "dnf" + ], + [ + "cockpit-bridge", + "334.1-1.el9_6", + "dnf" + ], + [ + "cockpit-packagekit", + "334.1-1.el9_6", + "dnf" + ], + [ + "cockpit-podman", + "101-1.el9", + "dnf" + ], + [ + "cockpit-storaged", + "334.1-1.el9_6", + "dnf" + ], + [ + "cockpit-system", + "334.1-1.el9_6", + "dnf" + ], + [ + "cockpit-ws", + "334.1-1.el9_6", + "dnf" + ], + [ + "cogl", + "1.22.8-5.el9", + "dnf" + ], + [ + "color-filesystem", + "1-28.el9", + "dnf" + ], + [ + "colord", + "1.4.5-6.el9_6", + "dnf" + ], + [ + "colord-gtk", + "0.2.0-7.el9", + "dnf" + ], + [ + "colord-libs", + "1.4.5-6.el9_6", + "dnf" + ], + [ + "composefs", + "1.0.8-1.el9", + "dnf" + ], + [ + "composefs-libs", + "1.0.8-1.el9", + "dnf" + ], + [ + "conmon", + "3:2.1.12-1.el9", + "dnf" + ], + [ + "container-selinux", + "4:2.235.0-2.el9_6", + "dnf" + ], + [ + "containernetworking-plugins", + "1:1.6.2-1.el9", + "dnf" + ], + [ + "containers-common", + "2:1-117.el9_6", + "dnf" + ], + [ + "containers-common-extra", + "2:1-117.el9_6", + "dnf" + ], + [ + "coreutils", + "8.32-39.el9", + "dnf" + ], + [ + "coreutils-common", + "8.32-39.el9", + "dnf" + ], + [ + "cpio", + "2.13-16.el9", + "dnf" + ], + [ + "cpp", + "11.5.0-5.el9_5.alma.1", + "dnf" + ], + [ + "cracklib", + "2.9.6-27.el9", + "dnf" + ], + [ + "cracklib-dicts", + "2.9.6-27.el9", + "dnf" + ], + [ + "criu", + "3.19-1.el9", + "dnf" + ], + [ + "criu-libs", + "3.19-1.el9", + "dnf" + ], + [ + "cronie", + "1.5.7-13.el9", + "dnf" + ], + [ + "cronie-anacron", + "1.5.7-13.el9", + "dnf" + ], + [ + "crontabs", + "1.11-27.20190603git.el9_0", + "dnf" + ], + [ + "crun", + "1.21-1.el9_6", + "dnf" + ], + [ + "crypto-policies", + "20250128-1.git5269e22.el9", + "dnf" + ], + [ + "crypto-policies-scripts", + "20250128-1.git5269e22.el9", + "dnf" + ], + [ + "cryptsetup", + "2.7.2-3.el9_5", + "dnf" + ], + [ + "cryptsetup-libs", + "2.7.2-3.el9_5", + "dnf" + ], + [ + "cups", + "1:2.3.3op2-33.el9", + "dnf" + ], + [ + "cups-client", + "1:2.3.3op2-33.el9", + "dnf" + ], + [ + "cups-filesystem", + "1:2.3.3op2-33.el9", + "dnf" + ], + [ + "cups-filters", + "1.28.7-20.el9", + "dnf" + ], + [ + "cups-filters-libs", + "1.28.7-20.el9", + "dnf" + ], + [ + "cups-ipptool", + "1:2.3.3op2-33.el9", + "dnf" + ], + [ + "cups-libs", + "1:2.3.3op2-33.el9", + "dnf" + ], + [ + "cups-pk-helper", + "0.2.6-14.el9", + "dnf" + ], + [ + "curl", + "7.76.1-31.el9", + "dnf" + ], + [ + "cyrus-sasl-gssapi", + "2.1.27-21.el9", + "dnf" + ], + [ + "cyrus-sasl-lib", + "2.1.27-21.el9", + "dnf" + ], + [ + "cyrus-sasl-plain", + "2.1.27-21.el9", + "dnf" + ], + [ + "dbus", + "1:1.12.20-8.el9", + "dnf" + ], + [ + "dbus-broker", + "28-7.el9", + "dnf" + ], + [ + "dbus-common", + "1:1.12.20-8.el9", + "dnf" + ], + [ + "dbus-daemon", + "1:1.12.20-8.el9", + "dnf" + ], + [ + "dbus-glib", + "0.110-13.el9", + "dnf" + ], + [ + "dbus-libs", + "1:1.12.20-8.el9", + "dnf" + ], + [ + "dbus-tools", + "1:1.12.20-8.el9", + "dnf" + ], + [ + "dconf", + "0.40.0-6.el9", + "dnf" + ], + [ + "dejavu-sans-fonts", + "2.37-18.el9", + "dnf" + ], + [ + "dejavu-sans-mono-fonts", + "2.37-18.el9", + "dnf" + ], + [ + "dejavu-serif-fonts", + "2.37-18.el9", + "dnf" + ], + [ + "desktop-file-utils", + "0.26-6.el9", + "dnf" + ], + [ + "device-mapper", + "9:1.02.202-6.el9", + "dnf" + ], + [ + "device-mapper-event", + "9:1.02.202-6.el9", + "dnf" + ], + [ + "device-mapper-event-libs", + "9:1.02.202-6.el9", + "dnf" + ], + [ + "device-mapper-libs", + "9:1.02.202-6.el9", + "dnf" + ], + [ + "device-mapper-multipath", + "0.8.7-35.el9", + "dnf" + ], + [ + "device-mapper-multipath-libs", + "0.8.7-35.el9", + "dnf" + ], + [ + "device-mapper-persistent-data", + "1.1.0-1.el9", + "dnf" + ], + [ + "diffutils", + "3.7-12.el9", + "dnf" + ], + [ + "dmidecode", + "1:3.6-1.el9", + "dnf" + ], + [ + "dnf", + "4.14.0-25.el9.alma.1", + "dnf" + ], + [ + "dnf-data", + "4.14.0-25.el9.alma.1", + "dnf" + ], + [ + "dnf-plugins-core", + "4.3.0-20.el9", + "dnf" + ], + [ + "dnsmasq", + "2.85-16.el9_4", + "dnf" + ], + [ + "dos2unix", + "7.4.2-4.el9", + "dnf" + ], + [ + "dosfstools", + "4.2-3.el9", + "dnf" + ], + [ + "dotconf", + "1.3-28.el9", + "dnf" + ], + [ + "dracut", + "057-87.git20250311.el9_6", + "dnf" + ], + [ + "dracut-config-rescue", + "057-87.git20250311.el9_6", + "dnf" + ], + [ + "dracut-network", + "057-87.git20250311.el9_6", + "dnf" + ], + [ + "dracut-squash", + "057-87.git20250311.el9_6", + "dnf" + ], + [ + "e2fsprogs", + "1.46.5-7.el9", + "dnf" + ], + [ + "e2fsprogs-libs", + "1.46.5-7.el9", + "dnf" + ], + [ + "ed", + "1.14.2-12.el9", + "dnf" + ], + [ + "efi-filesystem", + "6-2.el9_0.0.1", + "dnf" + ], + [ + "efibootmgr", + "16-12.el9", + "dnf" + ], + [ + "efivar-libs", + "38-3.el9", + "dnf" + ], + [ + "elfutils-debuginfod-client", + "0.192-5.el9", + "dnf" + ], + [ + "elfutils-default-yama-scope", + "0.192-5.el9", + "dnf" + ], + [ + "elfutils-libelf", + "0.192-5.el9", + "dnf" + ], + [ + "elfutils-libs", + "0.192-5.el9", + "dnf" + ], + [ + "emacs-filesystem", + "1:27.2-13.el9_6", + "dnf" + ], + [ + "enchant2", + "2.2.15-6.el9", + "dnf" + ], + [ + "enscript", + "1.6.6-28.el9", + "dnf" + ], + [ + "eog", + "40.3-2.el9", + "dnf" + ], + [ + "espeak-ng", + "1.50-9.el9", + "dnf" + ], + [ + "ethtool", + "2:6.11-1.el9", + "dnf" + ], + [ + "evince", + "40.5-2.el9", + "dnf" + ], + [ + "evince-libs", + "40.5-2.el9", + "dnf" + ], + [ + "evince-nautilus", + "40.5-2.el9", + "dnf" + ], + [ + "evince-previewer", + "40.5-2.el9", + "dnf" + ], + [ + "evince-thumbnailer", + "40.5-2.el9", + "dnf" + ], + [ + "evolution-data-server", + "3.40.4-10.el9", + "dnf" + ], + [ + "evolution-data-server-langpacks", + "3.40.4-10.el9", + "dnf" + ], + [ + "evolution-data-server-ui", + "3.40.4-10.el9", + "dnf" + ], + [ + "exempi", + "2.6.0-0.2.20211007gite23c213.el9", + "dnf" + ], + [ + "exiv2", + "0.27.5-2.el9", + "dnf" + ], + [ + "exiv2-libs", + "0.27.5-2.el9", + "dnf" + ], + [ + "expat", + "2.5.0-5.el9_6", + "dnf" + ], + [ + "fdk-aac-free", + "2.0.0-8.el9", + "dnf" + ], + [ + "file", + "5.39-16.el9", + "dnf" + ], + [ + "file-libs", + "5.39-16.el9", + "dnf" + ], + [ + "filesystem", + "3.16-5.el9", + "dnf" + ], + [ + "findutils", + "1:4.8.0-7.el9", + "dnf" + ], + [ + "firefox", + "128.10.1-1.el9_6.alma.1", + "dnf" + ], + [ + "firewalld", + "1.3.4-9.el9_5", + "dnf" + ], + [ + "firewalld-filesystem", + "1.3.4-9.el9_5", + "dnf" + ], + [ + "flac-libs", + "1.3.3-10.el9_2.1", + "dnf" + ], + [ + "flashrom", + "1.2-10.el9", + "dnf" + ], + [ + "flatpak", + "1.12.9-4.el9_6", + "dnf" + ], + [ + "flatpak-libs", + "1.12.9-4.el9_6", + "dnf" + ], + [ + "flatpak-selinux", + "1.12.9-4.el9_6", + "dnf" + ], + [ + "flatpak-session-helper", + "1.12.9-4.el9_6", + "dnf" + ], + [ + "fontconfig", + "2.14.0-2.el9_1", + "dnf" + ], + [ + "fonts-filesystem", + "1:2.0.5-7.el9.1", + "dnf" + ], + [ + "foomatic", + "4.0.13-19.el9", + "dnf" + ], + [ + "foomatic-db", + "4.0-72.20210209.el9", + "dnf" + ], + [ + "foomatic-db-filesystem", + "4.0-72.20210209.el9", + "dnf" + ], + [ + "foomatic-db-ppds", + "4.0-72.20210209.el9", + "dnf" + ], + [ + "fprintd", + "1.94.0-3.el9", + "dnf" + ], + [ + "fprintd-pam", + "1.94.0-3.el9", + "dnf" + ], + [ + "freetype", + "2.10.4-10.el9_5", + "dnf" + ], + [ + "fribidi", + "1.0.10-6.el9.2", + "dnf" + ], + [ + "fstrm", + "0.6.1-3.el9", + "dnf" + ], + [ + "fuse", + "2.9.9-17.el9", + "dnf" + ], + [ + "fuse-common", + "3.10.2-9.el9", + "dnf" + ], + [ + "fuse-libs", + "2.9.9-17.el9", + "dnf" + ], + [ + "fuse-overlayfs", + "1.14-1.el9", + "dnf" + ], + [ + "fuse3", + "3.10.2-9.el9", + "dnf" + ], + [ + "fuse3-libs", + "3.10.2-9.el9", + "dnf" + ], + [ + "fwupd", + "1.9.26-1.el9.alma.1", + "dnf" + ], + [ + "fwupd-plugin-flashrom", + "1.9.26-1.el9.alma.1", + "dnf" + ], + [ + "gawk", + "5.1.0-6.el9", + "dnf" + ], + [ + "gawk-all-langpacks", + "5.1.0-6.el9", + "dnf" + ], + [ + "gcr", + "3.40.0-3.el9", + "dnf" + ], + [ + "gcr-base", + "3.40.0-3.el9", + "dnf" + ], + [ + "gd", + "2.3.2-3.el9", + "dnf" + ], + [ + "gdbm-libs", + "1:1.23-1.el9", + "dnf" + ], + [ + "gdisk", + "1.0.7-5.el9", + "dnf" + ], + [ + "gdk-pixbuf2", + "2.42.6-4.el9_4", + "dnf" + ], + [ + "gdk-pixbuf2-modules", + "2.42.6-4.el9_4", + "dnf" + ], + [ + "gdm", + "1:40.1-28.el9_6", + "dnf" + ], + [ + "gedit", + "2:40.0-6.el9", + "dnf" + ], + [ + "geoclue2", + "2.6.0-8.el9_6.1", + "dnf" + ], + [ + "geoclue2-libs", + "2.6.0-8.el9_6.1", + "dnf" + ], + [ + "geocode-glib", + "3.26.2-5.el9", + "dnf" + ], + [ + "gettext", + "0.21-8.el9", + "dnf" + ], + [ + "gettext-libs", + "0.21-8.el9", + "dnf" + ], + [ + "ghostscript", + "9.54.0-19.el9_6", + "dnf" + ], + [ + "ghostscript-tools-fonts", + "9.54.0-19.el9_6", + "dnf" + ], + [ + "ghostscript-tools-printing", + "9.54.0-19.el9_6", + "dnf" + ], + [ + "giflib", + "5.2.1-9.el9", + "dnf" + ], + [ + "git", + "2.47.1-2.el9_6", + "dnf" + ], + [ + "git-core", + "2.47.1-2.el9_6", + "dnf" + ], + [ + "git-core-doc", + "2.47.1-2.el9_6", + "dnf" + ], + [ + "gjs", + "1.68.6-4.el9", + "dnf" + ], + [ + "glib-networking", + "2.68.3-3.el9", + "dnf" + ], + [ + "glib2", + "2.68.4-16.el9", + "dnf" + ], + [ + "glibc", + "2.34-168.el9_6.14.alma.1", + "dnf" + ], + [ + "glibc-all-langpacks", + "2.34-168.el9_6.14.alma.1", + "dnf" + ], + [ + "glibc-common", + "2.34-168.el9_6.14.alma.1", + "dnf" + ], + [ + "glibc-gconv-extra", + "2.34-168.el9_6.14.alma.1", + "dnf" + ], + [ + "glibc-langpack-en", + "2.34-168.el9_6.14.alma.1", + "dnf" + ], + [ + "glibmm24", + "2.66.1-1.el9", + "dnf" + ], + [ + "glx-utils", + "8.4.0-12.20210504git0f9e7d9.el9", + "dnf" + ], + [ + "gmp", + "1:6.2.0-13.el9", + "dnf" + ], + [ + "gnome-autoar", + "0.4.1-2.el9", + "dnf" + ], + [ + "gnome-bluetooth", + "1:3.34.5-3.el9", + "dnf" + ], + [ + "gnome-bluetooth-libs", + "1:3.34.5-3.el9", + "dnf" + ], + [ + "gnome-calculator", + "40.1-2.el9", + "dnf" + ], + [ + "gnome-characters", + "40.0-3.el9", + "dnf" + ], + [ + "gnome-classic-session", + "40.7-25.el9", + "dnf" + ], + [ + "gnome-color-manager", + "3.36.0-7.el9", + "dnf" + ], + [ + "gnome-control-center", + "40.0-38.el9", + "dnf" + ], + [ + "gnome-control-center-filesystem", + "40.0-38.el9", + "dnf" + ], + [ + "gnome-desktop3", + "40.4-1.el9", + "dnf" + ], + [ + "gnome-disk-utility", + "40.2-2.el9", + "dnf" + ], + [ + "gnome-font-viewer", + "40.0-3.el9", + "dnf" + ], + [ + "gnome-initial-setup", + "40.4-3.el9", + "dnf" + ], + [ + "gnome-keyring", + "40.0-4.el9_4", + "dnf" + ], + [ + "gnome-keyring-pam", + "40.0-4.el9_4", + "dnf" + ], + [ + "gnome-logs", + "3.36.0-8.el9", + "dnf" + ], + [ + "gnome-menus", + "3.36.0-9.el9_4", + "dnf" + ], + [ + "gnome-online-accounts", + "3.40.0-8.el9", + "dnf" + ], + [ + "gnome-remote-desktop", + "40.0-10.el9", + "dnf" + ], + [ + "gnome-screenshot", + "40.0-5.el9", + "dnf" + ], + [ + "gnome-session", + "40.1.1-9.el9", + "dnf" + ], + [ + "gnome-session-wayland-session", + "40.1.1-9.el9", + "dnf" + ], + [ + "gnome-session-xsession", + "40.1.1-9.el9", + "dnf" + ], + [ + "gnome-settings-daemon", + "40.0.1-19.el9", + "dnf" + ], + [ + "gnome-shell", + "40.10-24.el9", + "dnf" + ], + [ + "gnome-shell-extension-apps-menu", + "40.7-25.el9", + "dnf" + ], + [ + "gnome-shell-extension-background-logo", + "40.0~rc-4.el9", + "dnf" + ], + [ + "gnome-shell-extension-common", + "40.7-25.el9", + "dnf" + ], + [ + "gnome-shell-extension-desktop-icons", + "40.7-25.el9", + "dnf" + ], + [ + "gnome-shell-extension-launch-new-instance", + "40.7-25.el9", + "dnf" + ], + [ + "gnome-shell-extension-places-menu", + "40.7-25.el9", + "dnf" + ], + [ + "gnome-shell-extension-window-list", + "40.7-25.el9", + "dnf" + ], + [ + "gnome-software", + "45.3-3.el9", + "dnf" + ], + [ + "gnome-system-monitor", + "40.1-3.el9", + "dnf" + ], + [ + "gnome-terminal", + "3.40.3-1.el9", + "dnf" + ], + [ + "gnome-terminal-nautilus", + "3.40.3-1.el9", + "dnf" + ], + [ + "gnome-tour", + "40.1-2.el9", + "dnf" + ], + [ + "gnome-user-docs", + "40.0-3.el9", + "dnf" + ], + [ + "gnome-video-effects", + "0.5.0-7.el9", + "dnf" + ], + [ + "gnupg2", + "2.3.3-4.el9", + "dnf" + ], + [ + "gnutls", + "3.8.3-6.el9", + "dnf" + ], + [ + "gobject-introspection", + "1.68.0-11.el9", + "dnf" + ], + [ + "gom", + "0.4-6.el9", + "dnf" + ], + [ + "google-droid-sans-fonts", + "20200215-11.el9.2", + "dnf" + ], + [ + "google-noto-cjk-fonts-common", + "20230817-2.el9", + "dnf" + ], + [ + "google-noto-emoji-color-fonts", + "20211102-1.el9", + "dnf" + ], + [ + "google-noto-fonts-common", + "20201206-5.el9", + "dnf" + ], + [ + "google-noto-sans-cjk-ttc-fonts", + "20230817-2.el9", + "dnf" + ], + [ + "google-noto-sans-gurmukhi-fonts", + "20201206-5.el9", + "dnf" + ], + [ + "google-noto-sans-sinhala-vf-fonts", + "20201206-5.el9", + "dnf" + ], + [ + "google-noto-serif-cjk-ttc-fonts", + "20230817-2.el9", + "dnf" + ], + [ + "gpg-pubkey", + "957f5868-5e5499b8; 9e61ef26-63615580; b86b3716-61e69f29", + "dnf" + ], + [ + "gpgme", + "1.15.1-6.el9", + "dnf" + ], + [ + "gpm-libs", + "1.20.7-29.el9", + "dnf" + ], + [ + "graphene", + "1.10.6-2.el9", + "dnf" + ], + [ + "graphite2", + "1.3.14-9.el9", + "dnf" + ], + [ + "grep", + "3.6-5.el9", + "dnf" + ], + [ + "grilo", + "0.3.13-7.el9", + "dnf" + ], + [ + "grilo-plugins", + "0.3.13-6.el9", + "dnf" + ], + [ + "groff-base", + "1.22.4-10.el9", + "dnf" + ], + [ + "grub2-common", + "1:2.06-104.el9_6.alma.1", + "dnf" + ], + [ + "grub2-efi-x64", + "1:2.06-104.el9_6.alma.1", + "dnf" + ], + [ + "grub2-tools", + "1:2.06-104.el9_6.alma.1", + "dnf" + ], + [ + "grub2-tools-minimal", + "1:2.06-104.el9_6.alma.1", + "dnf" + ], + [ + "grubby", + "8.40-64.el9", + "dnf" + ], + [ + "gsettings-desktop-schemas", + "40.0-6.el9", + "dnf" + ], + [ + "gsm", + "1.0.19-6.el9", + "dnf" + ], + [ + "gsound", + "1.0.2-15.el9", + "dnf" + ], + [ + "gspell", + "1.9.1-3.el9", + "dnf" + ], + [ + "gstreamer1", + "1.22.12-3.el9", + "dnf" + ], + [ + "gstreamer1-plugins-bad-free", + "1.22.12-3.el9", + "dnf" + ], + [ + "gstreamer1-plugins-bad-free-libs", + "1.22.12-3.el9", + "dnf" + ], + [ + "gstreamer1-plugins-base", + "1.22.12-4.el9", + "dnf" + ], + [ + "gstreamer1-plugins-good", + "1.22.12-4.el9", + "dnf" + ], + [ + "gstreamer1-plugins-good-gtk", + "1.22.12-4.el9", + "dnf" + ], + [ + "gstreamer1-plugins-ugly-free", + "1.22.12-3.el9", + "dnf" + ], + [ + "gtk-update-icon-cache", + "3.24.31-5.el9", + "dnf" + ], + [ + "gtk3", + "3.24.31-5.el9", + "dnf" + ], + [ + "gtk4", + "4.12.3-2.el9", + "dnf" + ], + [ + "gtkmm30", + "3.24.5-1.el9", + "dnf" + ], + [ + "gtksourceview4", + "4.8.1-5.el9", + "dnf" + ], + [ + "gutenprint", + "5.3.4-4.el9", + "dnf" + ], + [ + "gutenprint-cups", + "5.3.4-4.el9", + "dnf" + ], + [ + "gutenprint-doc", + "5.3.4-4.el9", + "dnf" + ], + [ + "gutenprint-libs", + "5.3.4-4.el9", + "dnf" + ], + [ + "gvfs", + "1.48.1-6.el9", + "dnf" + ], + [ + "gvfs-client", + "1.48.1-6.el9", + "dnf" + ], + [ + "gvfs-fuse", + "1.48.1-6.el9", + "dnf" + ], + [ + "gvfs-goa", + "1.48.1-6.el9", + "dnf" + ], + [ + "gvfs-gphoto2", + "1.48.1-6.el9", + "dnf" + ], + [ + "gvfs-mtp", + "1.48.1-6.el9", + "dnf" + ], + [ + "gvfs-smb", + "1.48.1-6.el9", + "dnf" + ], + [ + "gzip", + "1.12-1.el9", + "dnf" + ], + [ + "harfbuzz", + "2.7.4-10.el9", + "dnf" + ], + [ + "harfbuzz-icu", + "2.7.4-10.el9", + "dnf" + ], + [ + "hdparm", + "9.62-2.el9", + "dnf" + ], + [ + "hicolor-icon-theme", + "0.17-13.el9", + "dnf" + ], + [ + "highcontrast-icon-theme", + "3.28-14.el9", + "dnf" + ], + [ + "hostname", + "3.23-6.el9", + "dnf" + ], + [ + "hplip-common", + "3.21.2-6.el9.alma", + "dnf" + ], + [ + "hplip-libs", + "3.21.2-6.el9.alma", + "dnf" + ], + [ + "hunspell", + "1.7.0-11.el9", + "dnf" + ], + [ + "hunspell-en", + "0.20140811.1-20.el9", + "dnf" + ], + [ + "hunspell-en-GB", + "0.20140811.1-20.el9", + "dnf" + ], + [ + "hunspell-en-US", + "0.20140811.1-20.el9", + "dnf" + ], + [ + "hunspell-filesystem", + "1.7.0-11.el9", + "dnf" + ], + [ + "hwdata", + "0.348-9.18.el9", + "dnf" + ], + [ + "hyperv-daemons", + "0-0.43.20190303git.el9", + "dnf" + ], + [ + "hyperv-daemons-license", + "0-0.43.20190303git.el9", + "dnf" + ], + [ + "hypervfcopyd", + "0-0.43.20190303git.el9", + "dnf" + ], + [ + "hypervkvpd", + "0-0.43.20190303git.el9", + "dnf" + ], + [ + "hypervvssd", + "0-0.43.20190303git.el9", + "dnf" + ], + [ + "hyphen", + "2.8.8-17.el9", + "dnf" + ], + [ + "ibus", + "1.5.25-6.el9", + "dnf" + ], + [ + "ibus-gtk3", + "1.5.25-6.el9", + "dnf" + ], + [ + "ibus-libs", + "1.5.25-6.el9", + "dnf" + ], + [ + "ibus-setup", + "1.5.25-6.el9", + "dnf" + ], + [ + "iio-sensor-proxy", + "3.3-1.el9", + "dnf" + ], + [ + "ima-evm-utils", + "1.5-3.el9", + "dnf" + ], + [ + "info", + "6.7-15.el9", + "dnf" + ], + [ + "inih", + "49-6.el9", + "dnf" + ], + [ + "initscripts", + "10.11.8-4.el9", + "dnf" + ], + [ + "initscripts-rename-device", + "10.11.8-4.el9", + "dnf" + ], + [ + "initscripts-service", + "10.11.8-4.el9", + "dnf" + ], + [ + "iproute", + "6.11.0-1.el9", + "dnf" + ], + [ + "iproute-tc", + "6.11.0-1.el9", + "dnf" + ], + [ + "iprutils", + "2.4.19-5.el9", + "dnf" + ], + [ + "ipset", + "7.11-11.el9_5", + "dnf" + ], + [ + "ipset-libs", + "7.11-11.el9_5", + "dnf" + ], + [ + "iptables-libs", + "1.8.10-11.el9_5", + "dnf" + ], + [ + "iptables-nft", + "1.8.10-11.el9_5", + "dnf" + ], + [ + "iputils", + "20210202-11.el9", + "dnf" + ], + [ + "irqbalance", + "2:1.9.4-2.el9", + "dnf" + ], + [ + "iscsi-initiator-utils", + "6.2.1.9-1.gita65a472.el9", + "dnf" + ], + [ + "iscsi-initiator-utils-iscsiuio", + "6.2.1.9-1.gita65a472.el9", + "dnf" + ], + [ + "isns-utils-libs", + "0.101-4.el9", + "dnf" + ], + [ + "iso-codes", + "4.6.0-3.el9", + "dnf" + ], + [ + "itstool", + "2.0.6-7.el9", + "dnf" + ], + [ + "iw", + "6.9-1.el9", + "dnf" + ], + [ + "iwl100-firmware", + "39.31.5.1-151.el9_6", + "dnf" + ], + [ + "iwl1000-firmware", + "1:39.31.5.1-151.el9_6", + "dnf" + ], + [ + "iwl105-firmware", + "18.168.6.1-151.el9_6", + "dnf" + ], + [ + "iwl135-firmware", + "18.168.6.1-151.el9_6", + "dnf" + ], + [ + "iwl2000-firmware", + "18.168.6.1-151.el9_6", + "dnf" + ], + [ + "iwl2030-firmware", + "18.168.6.1-151.el9_6", + "dnf" + ], + [ + "iwl3160-firmware", + "1:25.30.13.0-151.el9_6", + "dnf" + ], + [ + "iwl5000-firmware", + "8.83.5.1_1-151.el9_6", + "dnf" + ], + [ + "iwl5150-firmware", + "8.24.2.2-151.el9_6", + "dnf" + ], + [ + "iwl6000g2a-firmware", + "18.168.6.1-151.el9_6", + "dnf" + ], + [ + "iwl6000g2b-firmware", + "18.168.6.1-151.el9_6", + "dnf" + ], + [ + "iwl6050-firmware", + "41.28.5.1-151.el9_6", + "dnf" + ], + [ + "iwl7260-firmware", + "1:25.30.13.0-151.el9_6", + "dnf" + ], + [ + "jansson", + "2.14-1.el9", + "dnf" + ], + [ + "jbig2dec-libs", + "0.19-7.el9", + "dnf" + ], + [ + "jbigkit-libs", + "2.1-23.el9", + "dnf" + ], + [ + "jomolhari-fonts", + "0.003-34.el9", + "dnf" + ], + [ + "jose", + "14-1.el9", + "dnf" + ], + [ + "jq", + "1.6-17.el9", + "dnf" + ], + [ + "json-c", + "0.14-11.el9", + "dnf" + ], + [ + "json-glib", + "1.6.6-1.el9", + "dnf" + ], + [ + "julietaula-montserrat-fonts", + "1:7.210-6.el9", + "dnf" + ], + [ + "kbd", + "2.4.0-11.el9", + "dnf" + ], + [ + "kbd-legacy", + "2.4.0-11.el9", + "dnf" + ], + [ + "kbd-misc", + "2.4.0-11.el9", + "dnf" + ], + [ + "kernel", + "5.14.0-570.12.1.el9_6", + "dnf" + ], + [ + "kernel-core", + "5.14.0-570.12.1.el9_6", + "dnf" + ], + [ + "kernel-modules", + "5.14.0-570.12.1.el9_6", + "dnf" + ], + [ + "kernel-modules-core", + "5.14.0-570.12.1.el9_6", + "dnf" + ], + [ + "kernel-tools", + "5.14.0-570.12.1.el9_6", + "dnf" + ], + [ + "kernel-tools-libs", + "5.14.0-570.12.1.el9_6", + "dnf" + ], + [ + "kexec-tools", + "2.0.29-5.el9", + "dnf" + ], + [ + "keyutils", + "1.6.3-1.el9", + "dnf" + ], + [ + "keyutils-libs", + "1.6.3-1.el9", + "dnf" + ], + [ + "khmer-os-system-fonts", + "5.0-36.el9", + "dnf" + ], + [ + "kmod", + "28-10.el9", + "dnf" + ], + [ + "kmod-kvdo", + "8.2.5.10-161.el9", + "dnf" + ], + [ + "kmod-libs", + "28-10.el9", + "dnf" + ], + [ + "kpartx", + "0.8.7-35.el9", + "dnf" + ], + [ + "kpatch", + "0.9.7-3.el9_6", + "dnf" + ], + [ + "kpatch-dnf", + "0.9.7_0.5-3.el9_6", + "dnf" + ], + [ + "krb5-libs", + "1.21.1-6.el9", + "dnf" + ], + [ + "lame-libs", + "3.100-12.el9", + "dnf" + ], + [ + "langpacks-core-en", + "3.0-16.el9", + "dnf" + ], + [ + "langpacks-core-font-en", + "3.0-16.el9", + "dnf" + ], + [ + "langpacks-en", + "3.0-16.el9", + "dnf" + ], + [ + "lcms2", + "2.12-3.el9", + "dnf" + ], + [ + "ledmon", + "1.1.0-1.el9", + "dnf" + ], + [ + "ledmon-libs", + "1.1.0-1.el9", + "dnf" + ], + [ + "less", + "590-5.el9", + "dnf" + ], + [ + "libICE", + "1.0.10-8.el9", + "dnf" + ], + [ + "libSM", + "1.2.3-10.el9", + "dnf" + ], + [ + "libX11", + "1.7.0-11.el9", + "dnf" + ], + [ + "libX11-common", + "1.7.0-11.el9", + "dnf" + ], + [ + "libX11-xcb", + "1.7.0-11.el9", + "dnf" + ], + [ + "libXau", + "1.0.9-8.el9", + "dnf" + ], + [ + "libXcomposite", + "0.4.5-7.el9", + "dnf" + ], + [ + "libXcursor", + "1.2.0-7.el9", + "dnf" + ], + [ + "libXdamage", + "1.1.5-7.el9", + "dnf" + ], + [ + "libXdmcp", + "1.1.3-8.el9", + "dnf" + ], + [ + "libXext", + "1.3.4-8.el9", + "dnf" + ], + [ + "libXfixes", + "5.0.3-16.el9", + "dnf" + ], + [ + "libXfont2", + "2.0.3-12.el9", + "dnf" + ], + [ + "libXft", + "2.3.3-8.el9", + "dnf" + ], + [ + "libXi", + "1.7.10-8.el9", + "dnf" + ], + [ + "libXinerama", + "1.1.4-10.el9", + "dnf" + ], + [ + "libXmu", + "1.1.3-8.el9", + "dnf" + ], + [ + "libXpm", + "3.5.13-10.el9", + "dnf" + ], + [ + "libXrandr", + "1.5.2-8.el9", + "dnf" + ], + [ + "libXrender", + "0.9.10-16.el9", + "dnf" + ], + [ + "libXres", + "1.2.0-14.el9", + "dnf" + ], + [ + "libXt", + "1.2.0-6.el9", + "dnf" + ], + [ + "libXtst", + "1.2.3-16.el9", + "dnf" + ], + [ + "libXv", + "1.0.11-16.el9", + "dnf" + ], + [ + "libXxf86dga", + "1.1.5-8.el9", + "dnf" + ], + [ + "libXxf86vm", + "1.1.4-18.el9", + "dnf" + ], + [ + "liba52", + "0.7.4-42.el9", + "dnf" + ], + [ + "libacl", + "2.3.1-4.el9", + "dnf" + ], + [ + "libadwaita", + "1.4.2-2.el9", + "dnf" + ], + [ + "libaio", + "0.3.111-13.el9", + "dnf" + ], + [ + "libao", + "1.2.0-22.el9", + "dnf" + ], + [ + "libappstream-glib", + "0.7.18-5.el9_4", + "dnf" + ], + [ + "libarchive", + "3.5.3-4.el9", + "dnf" + ], + [ + "libassuan", + "2.5.5-3.el9", + "dnf" + ], + [ + "libasyncns", + "0.8-22.el9", + "dnf" + ], + [ + "libatasmart", + "0.19-22.el9", + "dnf" + ], + [ + "libatomic", + "11.5.0-5.el9_5.alma.1", + "dnf" + ], + [ + "libattr", + "2.5.1-3.el9", + "dnf" + ], + [ + "libbabeltrace", + "1.5.8-10.el9", + "dnf" + ], + [ + "libbasicobjects", + "0.1.1-53.el9", + "dnf" + ], + [ + "libblkid", + "2.37.4-21.el9", + "dnf" + ], + [ + "libblockdev", + "2.28-13.el9_6", + "dnf" + ], + [ + "libblockdev-crypto", + "2.28-13.el9_6", + "dnf" + ], + [ + "libblockdev-fs", + "2.28-13.el9_6", + "dnf" + ], + [ + "libblockdev-loop", + "2.28-13.el9_6", + "dnf" + ], + [ + "libblockdev-lvm", + "2.28-13.el9_6", + "dnf" + ], + [ + "libblockdev-mdraid", + "2.28-13.el9_6", + "dnf" + ], + [ + "libblockdev-part", + "2.28-13.el9_6", + "dnf" + ], + [ + "libblockdev-swap", + "2.28-13.el9_6", + "dnf" + ], + [ + "libblockdev-utils", + "2.28-13.el9_6", + "dnf" + ], + [ + "libbpf", + "2:1.5.0-1.el9", + "dnf" + ], + [ + "libbrotli", + "1.0.9-7.el9_5", + "dnf" + ], + [ + "libbytesize", + "2.5-3.el9", + "dnf" + ], + [ + "libcanberra", + "0.30-27.el9", + "dnf" + ], + [ + "libcanberra-gtk3", + "0.30-27.el9", + "dnf" + ], + [ + "libcap", + "2.48-9.el9_2", + "dnf" + ], + [ + "libcap-ng", + "0.8.2-7.el9", + "dnf" + ], + [ + "libcap-ng-python3", + "0.8.2-7.el9", + "dnf" + ], + [ + "libcbor", + "0.7.0-5.el9", + "dnf" + ], + [ + "libcdio", + "2.1.0-6.el9", + "dnf" + ], + [ + "libcdio-paranoia", + "10.2+2.0.1-6.el9", + "dnf" + ], + [ + "libcollection", + "0.7.0-53.el9", + "dnf" + ], + [ + "libcom_err", + "1.46.5-7.el9", + "dnf" + ], + [ + "libcomps", + "0.1.18-1.el9", + "dnf" + ], + [ + "libconfig", + "1.7.2-9.el9", + "dnf" + ], + [ + "libcurl", + "7.76.1-31.el9", + "dnf" + ], + [ + "libdaemon", + "0.14-23.el9", + "dnf" + ], + [ + "libdatrie", + "0.2.13-4.el9", + "dnf" + ], + [ + "libdb", + "5.3.28-55.el9", + "dnf" + ], + [ + "libdecor", + "0.1.1-1.el9", + "dnf" + ], + [ + "libdhash", + "0.5.0-53.el9", + "dnf" + ], + [ + "libdmx", + "1.1.4-12.el9", + "dnf" + ], + [ + "libdnf", + "0.69.0-13.el9.alma.1", + "dnf" + ], + [ + "libdrm", + "2.4.123-2.el9", + "dnf" + ], + [ + "libdvdnav", + "6.1.0-4.el9", + "dnf" + ], + [ + "libdvdread", + "6.1.1-4.el9", + "dnf" + ], + [ + "libeconf", + "0.4.1-4.el9", + "dnf" + ], + [ + "libedit", + "3.1-38.20210216cvs.el9", + "dnf" + ], + [ + "libepoxy", + "1.5.5-4.el9", + "dnf" + ], + [ + "liberation-fonts-common", + "1:2.1.3-5.el9", + "dnf" + ], + [ + "liberation-mono-fonts", + "1:2.1.3-5.el9", + "dnf" + ], + [ + "liberation-sans-fonts", + "1:2.1.3-5.el9", + "dnf" + ], + [ + "liberation-serif-fonts", + "1:2.1.3-5.el9", + "dnf" + ], + [ + "libertas-sd8787-firmware", + "20250314-151.el9_6", + "dnf" + ], + [ + "libestr", + "0.1.11-4.el9", + "dnf" + ], + [ + "libevdev", + "1.11.0-3.el9", + "dnf" + ], + [ + "libevent", + "2.1.12-8.el9_4", + "dnf" + ], + [ + "libexif", + "0.6.22-6.el9", + "dnf" + ], + [ + "libfastjson", + "0.99.9-5.el9", + "dnf" + ], + [ + "libfdisk", + "2.37.4-21.el9", + "dnf" + ], + [ + "libffi", + "3.4.2-8.el9", + "dnf" + ], + [ + "libfido2", + "1.13.0-2.el9", + "dnf" + ], + [ + "libfontenc", + "1.1.3-17.el9", + "dnf" + ], + [ + "libfprint", + "1.94.6-1.el9", + "dnf" + ], + [ + "libgcc", + "11.5.0-5.el9_5.alma.1", + "dnf" + ], + [ + "libgcrypt", + "1.10.0-11.el9", + "dnf" + ], + [ + "libgdata", + "0.18.1-4.el9", + "dnf" + ], + [ + "libgee", + "0.20.4-3.el9", + "dnf" + ], + [ + "libgexiv2", + "0.12.3-1.el9", + "dnf" + ], + [ + "libglvnd", + "1:1.3.4-1.el9", + "dnf" + ], + [ + "libglvnd-egl", + "1:1.3.4-1.el9", + "dnf" + ], + [ + "libglvnd-gles", + "1:1.3.4-1.el9", + "dnf" + ], + [ + "libglvnd-glx", + "1:1.3.4-1.el9", + "dnf" + ], + [ + "libgnomekbd", + "3.26.1-7.el9", + "dnf" + ], + [ + "libgomp", + "11.5.0-5.el9_5.alma.1", + "dnf" + ], + [ + "libgpg-error", + "1.42-5.el9", + "dnf" + ], + [ + "libgphoto2", + "2.5.27-3.el9", + "dnf" + ], + [ + "libgs", + "9.54.0-19.el9_6", + "dnf" + ], + [ + "libgsf", + "1.14.47-5.el9", + "dnf" + ], + [ + "libgtop2", + "2.40.0-9.el9", + "dnf" + ], + [ + "libgudev", + "237-1.el9", + "dnf" + ], + [ + "libgusb", + "0.3.8-2.el9", + "dnf" + ], + [ + "libgweather", + "40.0-3.el9", + "dnf" + ], + [ + "libgxps", + "0.3.2-3.el9", + "dnf" + ], + [ + "libhandy", + "1.2.3-1.el9", + "dnf" + ], + [ + "libibverbs", + "54.0-1.el9", + "dnf" + ], + [ + "libical", + "3.0.14-1.el9", + "dnf" + ], + [ + "libical-glib", + "3.0.14-1.el9", + "dnf" + ], + [ + "libicu", + "67.1-9.el9", + "dnf" + ], + [ + "libidn2", + "2.3.0-7.el9", + "dnf" + ], + [ + "libieee1284", + "0.2.11-37.el9", + "dnf" + ], + [ + "libijs", + "0.35-15.el9", + "dnf" + ], + [ + "libini_config", + "1.3.1-53.el9", + "dnf" + ], + [ + "libinput", + "1.19.3-5.el9_6", + "dnf" + ], + [ + "libipa_hbac", + "2.9.6-4.el9_6.2", + "dnf" + ], + [ + "libiptcdata", + "1.0.5-10.el9", + "dnf" + ], + [ + "libjcat", + "0.1.6-3.el9", + "dnf" + ], + [ + "libjose", + "14-1.el9", + "dnf" + ], + [ + "libjpeg-turbo", + "2.0.90-7.el9", + "dnf" + ], + [ + "libkcapi", + "1.4.0-2.el9", + "dnf" + ], + [ + "libkcapi-hmaccalc", + "1.4.0-2.el9", + "dnf" + ], + [ + "libksba", + "1.5.1-7.el9", + "dnf" + ], + [ + "libldac", + "2.0.2.3-10.el9", + "dnf" + ], + [ + "libldb", + "4.21.3-3.el9", + "dnf" + ], + [ + "liblouis", + "3.16.1-5.el9", + "dnf" + ], + [ + "libluksmeta", + "9-12.el9", + "dnf" + ], + [ + "libmaxminddb", + "1.5.2-4.el9", + "dnf" + ], + [ + "libmbim", + "1.28.2-2.el9", + "dnf" + ], + [ + "libmbim-utils", + "1.28.2-2.el9", + "dnf" + ], + [ + "libmediaart", + "1.9.5-2.el9", + "dnf" + ], + [ + "libmnl", + "1.0.4-16.el9_4", + "dnf" + ], + [ + "libmodulemd", + "2.13.0-2.el9", + "dnf" + ], + [ + "libmount", + "2.37.4-21.el9", + "dnf" + ], + [ + "libmpc", + "1.2.1-4.el9", + "dnf" + ], + [ + "libmpeg2", + "0.5.1-24.el9", + "dnf" + ], + [ + "libmspack", + "0.10.1-0.7.alpha.el9", + "dnf" + ], + [ + "libmtp", + "1.1.18-6.el9", + "dnf" + ], + [ + "libndp", + "1.9-1.el9", + "dnf" + ], + [ + "libnet", + "1.2-7.el9", + "dnf" + ], + [ + "libnetfilter_conntrack", + "1.0.9-1.el9", + "dnf" + ], + [ + "libnfnetlink", + "1.0.1-23.el9_5", + "dnf" + ], + [ + "libnftnl", + "1.2.6-4.el9_4", + "dnf" + ], + [ + "libnghttp2", + "1.43.0-6.el9", + "dnf" + ], + [ + "libnl3", + "3.11.0-1.el9", + "dnf" + ], + [ + "libnl3-cli", + "3.11.0-1.el9", + "dnf" + ], + [ + "libnma", + "1.8.40-1.el9", + "dnf" + ], + [ + "libnotify", + "0.7.9-8.el9", + "dnf" + ], + [ + "libnvme", + "1.11.1-1.el9", + "dnf" + ], + [ + "libogg", + "2:1.3.4-6.el9", + "dnf" + ], + [ + "libosinfo", + "1.10.0-1.el9", + "dnf" + ], + [ + "libpaper", + "1.1.28-4.el9", + "dnf" + ], + [ + "libpath_utils", + "0.2.1-53.el9", + "dnf" + ], + [ + "libpcap", + "14:1.10.0-4.el9", + "dnf" + ], + [ + "libpciaccess", + "0.16-7.el9", + "dnf" + ], + [ + "libpeas", + "1.30.0-4.el9", + "dnf" + ], + [ + "libpeas-gtk", + "1.30.0-4.el9", + "dnf" + ], + [ + "libpeas-loader-python3", + "1.30.0-4.el9", + "dnf" + ], + [ + "libpipeline", + "1.5.3-4.el9", + "dnf" + ], + [ + "libpkgconf", + "1.7.3-10.el9", + "dnf" + ], + [ + "libpng", + "2:1.6.37-12.el9", + "dnf" + ], + [ + "libproxy", + "0.4.15-35.el9", + "dnf" + ], + [ + "libproxy-webkitgtk4", + "0.4.15-35.el9", + "dnf" + ], + [ + "libpsl", + "0.21.1-5.el9", + "dnf" + ], + [ + "libpwquality", + "1.4.4-8.el9", + "dnf" + ], + [ + "libqmi", + "1.32.2-1.el9", + "dnf" + ], + [ + "libqmi-utils", + "1.32.2-1.el9", + "dnf" + ], + [ + "libqrtr-glib", + "1.2.2-1.el9", + "dnf" + ], + [ + "libref_array", + "0.1.5-53.el9", + "dnf" + ], + [ + "librelp", + "1.10.0-5.el9", + "dnf" + ], + [ + "librepo", + "1.14.5-2.el9", + "dnf" + ], + [ + "libreport-filesystem", + "2.15.2-6.el9.alma", + "dnf" + ], + [ + "librsvg2", + "2.50.7-3.el9", + "dnf" + ], + [ + "librsvg2-tools", + "2.50.7-3.el9", + "dnf" + ], + [ + "libsamplerate", + "0.1.9-10.el9", + "dnf" + ], + [ + "libsane-airscan", + "0.99.24-3.el9", + "dnf" + ], + [ + "libsane-hpaio", + "3.21.2-6.el9.alma", + "dnf" + ], + [ + "libsbc", + "1.4-9.el9", + "dnf" + ], + [ + "libseccomp", + "2.5.2-2.el9", + "dnf" + ], + [ + "libsecret", + "0.20.4-4.el9", + "dnf" + ], + [ + "libselinux", + "3.6-3.el9", + "dnf" + ], + [ + "libselinux-utils", + "3.6-3.el9", + "dnf" + ], + [ + "libsemanage", + "3.6-5.el9_6", + "dnf" + ], + [ + "libsepol", + "3.6-2.el9", + "dnf" + ], + [ + "libshout", + "2.4.3-7.el9", + "dnf" + ], + [ + "libsigc++20", + "2.10.7-2.el9", + "dnf" + ], + [ + "libsigsegv", + "2.13-4.el9", + "dnf" + ], + [ + "libslirp", + "4.4.0-8.el9", + "dnf" + ], + [ + "libsmartcols", + "2.37.4-21.el9", + "dnf" + ], + [ + "libsmbclient", + "4.21.3-3.el9", + "dnf" + ], + [ + "libsndfile", + "1.0.31-9.el9", + "dnf" + ], + [ + "libsolv", + "0.7.24-3.el9", + "dnf" + ], + [ + "libsoup", + "2.72.0-10.el9_6.1", + "dnf" + ], + [ + "libspectre", + "0.2.9-6.el9", + "dnf" + ], + [ + "libsrtp", + "2.3.0-8.el9", + "dnf" + ], + [ + "libss", + "1.46.5-7.el9", + "dnf" + ], + [ + "libssh", + "0.10.4-13.el9", + "dnf" + ], + [ + "libssh-config", + "0.10.4-13.el9", + "dnf" + ], + [ + "libsss_certmap", + "2.9.6-4.el9_6.2", + "dnf" + ], + [ + "libsss_idmap", + "2.9.6-4.el9_6.2", + "dnf" + ], + [ + "libsss_nss_idmap", + "2.9.6-4.el9_6.2", + "dnf" + ], + [ + "libsss_sudo", + "2.9.6-4.el9_6.2", + "dnf" + ], + [ + "libstdc++", + "11.5.0-5.el9_5.alma.1", + "dnf" + ], + [ + "libstemmer", + "0-18.585svn.el9", + "dnf" + ], + [ + "libstoragemgmt", + "1.10.1-1.el9", + "dnf" + ], + [ + "libsysfs", + "2.1.1-10.el9", + "dnf" + ], + [ + "libtalloc", + "2.4.2-1.el9", + "dnf" + ], + [ + "libtasn1", + "4.16.0-9.el9", + "dnf" + ], + [ + "libtdb", + "1.4.12-1.el9", + "dnf" + ], + [ + "libteam", + "1.31-16.el9_1", + "dnf" + ], + [ + "libtevent", + "0.16.1-1.el9", + "dnf" + ], + [ + "libthai", + "0.1.28-8.el9", + "dnf" + ], + [ + "libtheora", + "1:1.1.1-31.el9", + "dnf" + ], + [ + "libtiff", + "4.4.0-13.el9", + "dnf" + ], + [ + "libtirpc", + "1.3.3-9.el9", + "dnf" + ], + [ + "libtool-ltdl", + "2.4.6-46.el9", + "dnf" + ], + [ + "libtraceevent", + "1.5.3-3.el9", + "dnf" + ], + [ + "libtracker-sparql", + "3.1.2-3.el9_1", + "dnf" + ], + [ + "libudisks2", + "2.9.4-11.el9", + "dnf" + ], + [ + "libunistring", + "0.9.10-15.el9", + "dnf" + ], + [ + "liburing", + "2.5-1.el9", + "dnf" + ], + [ + "libusbx", + "1.0.26-1.el9", + "dnf" + ], + [ + "libuser", + "0.63-16.el9", + "dnf" + ], + [ + "libutempter", + "1.2.1-6.el9", + "dnf" + ], + [ + "libuuid", + "2.37.4-21.el9", + "dnf" + ], + [ + "libuv", + "1:1.42.0-2.el9_4", + "dnf" + ], + [ + "libv4l", + "1.20.0-5.el9", + "dnf" + ], + [ + "libva", + "2.22.0-1.el9", + "dnf" + ], + [ + "libverto", + "0.3.2-3.el9", + "dnf" + ], + [ + "libvorbis", + "1:1.3.7-5.el9", + "dnf" + ], + [ + "libvpx", + "1.9.0-8.el9_5", + "dnf" + ], + [ + "libwacom", + "1.12.1-3.el9_4", + "dnf" + ], + [ + "libwacom-data", + "1.12.1-3.el9_4", + "dnf" + ], + [ + "libwayland-client", + "1.21.0-1.el9", + "dnf" + ], + [ + "libwayland-cursor", + "1.21.0-1.el9", + "dnf" + ], + [ + "libwayland-egl", + "1.21.0-1.el9", + "dnf" + ], + [ + "libwayland-server", + "1.21.0-1.el9", + "dnf" + ], + [ + "libwbclient", + "4.21.3-3.el9", + "dnf" + ], + [ + "libwebp", + "1.2.0-8.el9_3", + "dnf" + ], + [ + "libwnck3", + "40.0-2.el9", + "dnf" + ], + [ + "libxcb", + "1.13.1-9.el9", + "dnf" + ], + [ + "libxcrypt", + "4.4.18-3.el9", + "dnf" + ], + [ + "libxcrypt-compat", + "4.4.18-3.el9", + "dnf" + ], + [ + "libxcvt", + "0.1.2-2.el9", + "dnf" + ], + [ + "libxkbcommon", + "1.0.3-4.el9", + "dnf" + ], + [ + "libxkbcommon-x11", + "1.0.3-4.el9", + "dnf" + ], + [ + "libxkbfile", + "1.1.0-8.el9", + "dnf" + ], + [ + "libxklavier", + "5.4-20.el9", + "dnf" + ], + [ + "libxml2", + "2.9.13-9.el9_6", + "dnf" + ], + [ + "libxmlb", + "0.3.10-1.el9", + "dnf" + ], + [ + "libxshmfence", + "1.3-10.el9", + "dnf" + ], + [ + "libxslt", + "1.1.34-13.el9_6", + "dnf" + ], + [ + "libyaml", + "0.2.5-7.el9", + "dnf" + ], + [ + "libzstd", + "1.5.5-1.el9", + "dnf" + ], + [ + "linux-firmware", + "20250314-151.el9_6", + "dnf" + ], + [ + "linux-firmware-whence", + "20250314-151.el9_6", + "dnf" + ], + [ + "llvm-libs", + "19.1.7-2.el9", + "dnf" + ], + [ + "lmdb-libs", + "0.9.29-3.el9", + "dnf" + ], + [ + "lockdev", + "1.0.4-0.37.20111007git.el9", + "dnf" + ], + [ + "logrotate", + "3.18.0-9.el9", + "dnf" + ], + [ + "lohit-assamese-fonts", + "2.91.5-13.el9", + "dnf" + ], + [ + "lohit-bengali-fonts", + "2.91.5-13.el9", + "dnf" + ], + [ + "lohit-devanagari-fonts", + "2.95.4-14.el9", + "dnf" + ], + [ + "lohit-gujarati-fonts", + "2.92.4-13.el9", + "dnf" + ], + [ + "lohit-kannada-fonts", + "2.5.4-12.el9", + "dnf" + ], + [ + "lohit-odia-fonts", + "2.91.2-13.el9", + "dnf" + ], + [ + "lohit-tamil-fonts", + "2.91.3-13.el9", + "dnf" + ], + [ + "lohit-telugu-fonts", + "2.5.5-12.el9", + "dnf" + ], + [ + "low-memory-monitor", + "2.1-4.el9", + "dnf" + ], + [ + "lshw", + "B.02.20-1.el9", + "dnf" + ], + [ + "lsof", + "4.94.0-3.el9", + "dnf" + ], + [ + "lsscsi", + "0.32-6.el9", + "dnf" + ], + [ + "lua-libs", + "5.4.4-4.el9", + "dnf" + ], + [ + "luksmeta", + "9-12.el9", + "dnf" + ], + [ + "lvm2", + "9:2.03.28-6.el9", + "dnf" + ], + [ + "lvm2-libs", + "9:2.03.28-6.el9", + "dnf" + ], + [ + "lz4-libs", + "1.9.3-5.el9", + "dnf" + ], + [ + "lzo", + "2.10-7.el9", + "dnf" + ], + [ + "mailcap", + "2.1.49-5.el9", + "dnf" + ], + [ + "mallard-rng", + "1.1.0-7.el9", + "dnf" + ], + [ + "man-db", + "2.9.3-7.el9", + "dnf" + ], + [ + "man-pages", + "6.04-2.el9", + "dnf" + ], + [ + "man-pages-overrides", + "9.0.0.0-1.el9", + "dnf" + ], + [ + "mcelog", + "3:201-1.el9", + "dnf" + ], + [ + "mdadm", + "4.3-4.el9_5", + "dnf" + ], + [ + "mesa-dri-drivers", + "24.2.8-2.el9_6.alma.1", + "dnf" + ], + [ + "mesa-filesystem", + "24.2.8-2.el9_6.alma.1", + "dnf" + ], + [ + "mesa-libEGL", + "24.2.8-2.el9_6.alma.1", + "dnf" + ], + [ + "mesa-libGL", + "24.2.8-2.el9_6.alma.1", + "dnf" + ], + [ + "mesa-libgbm", + "24.2.8-2.el9_6.alma.1", + "dnf" + ], + [ + "mesa-libglapi", + "24.2.8-2.el9_6.alma.1", + "dnf" + ], + [ + "mesa-libxatracker", + "24.2.8-2.el9_6.alma.1", + "dnf" + ], + [ + "mesa-vulkan-drivers", + "24.2.8-2.el9_6.alma.1", + "dnf" + ], + [ + "microcode_ctl", + "4:20250211-1.el9_6", + "dnf" + ], + [ + "mlocate", + "0.26-30.el9", + "dnf" + ], + [ + "mobile-broadband-provider-info", + "20210805-2.el9", + "dnf" + ], + [ + "mokutil", + "2:0.6.0-4.el9", + "dnf" + ], + [ + "mozilla-filesystem", + "1.9-30.el9", + "dnf" + ], + [ + "mpfr", + "4.1.0-7.el9", + "dnf" + ], + [ + "mpg123-libs", + "1.32.9-1.el9_5", + "dnf" + ], + [ + "mtdev", + "1.1.5-22.el9", + "dnf" + ], + [ + "mtr", + "2:0.94-6.el9_4", + "dnf" + ], + [ + "mutter", + "40.9-24.el9", + "dnf" + ], + [ + "nano", + "5.6.1-7.el9", + "dnf" + ], + [ + "nautilus", + "40.2-15.el9", + "dnf" + ], + [ + "nautilus-extensions", + "40.2-15.el9", + "dnf" + ], + [ + "ncurses", + "6.2-10.20210508.el9", + "dnf" + ], + [ + "ncurses-base", + "6.2-10.20210508.el9", + "dnf" + ], + [ + "ncurses-libs", + "6.2-10.20210508.el9", + "dnf" + ], + [ + "net-snmp-libs", + "1:5.9.1-17.el9", + "dnf" + ], + [ + "net-tools", + "2.0-0.64.20160912git.el9", + "dnf" + ], + [ + "netavark", + "2:1.14.1-1.el9_6", + "dnf" + ], + [ + "netronome-firmware", + "20250314-151.el9_6", + "dnf" + ], + [ + "nettle", + "3.10.1-1.el9", + "dnf" + ], + [ + "newt", + "0.52.21-11.el9", + "dnf" + ], + [ + "nftables", + "1:1.0.9-3.el9", + "dnf" + ], + [ + "nm-connection-editor", + "1.26.0-2.el9", + "dnf" + ], + [ + "nmap-ncat", + "3:7.92-3.el9", + "dnf" + ], + [ + "npth", + "1.6-8.el9", + "dnf" + ], + [ + "nspr", + "4.35.0-17.el9_2", + "dnf" + ], + [ + "nss", + "3.101.0-10.el9_2", + "dnf" + ], + [ + "nss-softokn", + "3.101.0-10.el9_2", + "dnf" + ], + [ + "nss-softokn-freebl", + "3.101.0-10.el9_2", + "dnf" + ], + [ + "nss-sysinit", + "3.101.0-10.el9_2", + "dnf" + ], + [ + "nss-util", + "3.101.0-10.el9_2", + "dnf" + ], + [ + "numactl-libs", + "2.0.19-1.el9", + "dnf" + ], + [ + "nvme-cli", + "2.11-5.el9", + "dnf" + ], + [ + "oniguruma", + "6.9.6-1.el9.6", + "dnf" + ], + [ + "open-vm-tools", + "12.5.0-1.el9", + "dnf" + ], + [ + "open-vm-tools-desktop", + "12.5.0-1.el9", + "dnf" + ], + [ + "openjpeg2", + "2.4.0-8.el9", + "dnf" + ], + [ + "openldap", + "2.6.8-4.el9", + "dnf" + ], + [ + "openldap-compat", + "2.6.8-4.el9", + "dnf" + ], + [ + "openssh", + "8.7p1-45.el9", + "dnf" + ], + [ + "openssh-clients", + "8.7p1-45.el9", + "dnf" + ], + [ + "openssh-server", + "8.7p1-45.el9", + "dnf" + ], + [ + "openssl", + "1:3.2.2-6.el9_5.1", + "dnf" + ], + [ + "openssl-libs", + "1:3.2.2-6.el9_5.1", + "dnf" + ], + [ + "opus", + "1.3.1-10.el9", + "dnf" + ], + [ + "orc", + "0.4.31-8.el9", + "dnf" + ], + [ + "orca", + "40.3-1.el9", + "dnf" + ], + [ + "os-prober", + "1.77-12.el9_5", + "dnf" + ], + [ + "osinfo-db", + "20250124-1.el9", + "dnf" + ], + [ + "osinfo-db-tools", + "1.10.0-1.el9", + "dnf" + ], + [ + "ostree", + "2025.1-1.el9", + "dnf" + ], + [ + "ostree-libs", + "2025.1-1.el9", + "dnf" + ], + [ + "p11-kit", + "0.25.3-3.el9_5", + "dnf" + ], + [ + "p11-kit-server", + "0.25.3-3.el9_5", + "dnf" + ], + [ + "p11-kit-trust", + "0.25.3-3.el9_5", + "dnf" + ], + [ + "paktype-naskh-basic-fonts", + "5.0-6.el9", + "dnf" + ], + [ + "pam", + "1.5.1-23.el9", + "dnf" + ], + [ + "pango", + "1.48.7-3.el9", + "dnf" + ], + [ + "pangomm", + "2.46.1-1.el9", + "dnf" + ], + [ + "paps", + "0.7.1-4.el9", + "dnf" + ], + [ + "parted", + "3.5-3.el9", + "dnf" + ], + [ + "passt", + "0^20250217.ga1e48a0-1.el9", + "dnf" + ], + [ + "passt-selinux", + "0^20250217.ga1e48a0-1.el9", + "dnf" + ], + [ + "passwd", + "0.80-12.el9", + "dnf" + ], + [ + "pcaudiolib", + "1.1-9.el9", + "dnf" + ], + [ + "pciutils", + "3.7.0-7.el9", + "dnf" + ], + [ + "pciutils-libs", + "3.7.0-7.el9", + "dnf" + ], + [ + "pcre", + "8.44-4.el9", + "dnf" + ], + [ + "pcre2", + "10.40-6.el9", + "dnf" + ], + [ + "pcre2-syntax", + "10.40-6.el9", + "dnf" + ], + [ + "pcre2-utf32", + "10.40-6.el9", + "dnf" + ], + [ + "pe-ace-server", + "2025.1.0.0.12.gf7d4ecd-1.el9", + "dnf" + ], + [ + "pe-backup-tools", + "2025.3.0.0-1.el9", + "dnf" + ], + [ + "pe-bolt-server", + "2025.3.0.0-1.el9", + "dnf" + ], + [ + "pe-bouncy-castle-jars", + "3.0.0-1.el9", + "dnf" + ], + [ + "pe-builtin-bolt-content", + "2025.3.0.0-1.el9", + "dnf" + ], + [ + "pe-client-tools", + "25.3.0-1.el9", + "dnf" + ], + [ + "pe-console-services", + "2025.3.0.39-1.el9", + "dnf" + ], + [ + "pe-console-services-termini", + "2025.3.0.39-1.el9", + "dnf" + ], + [ + "pe-host-action-collector", + "2025.3.0.9-1.el9", + "dnf" + ], + [ + "pe-infra-assistant", + "2025.3.0.33-1.el9", + "dnf" + ], + [ + "pe-installer", + "2025.3.0.0-1.el9", + "dnf" + ], + [ + "pe-java17", + "2025.3.17.0.15.6-2.pe.el9", + "dnf" + ], + [ + "pe-license", + "2025.2.2.0.0-2.b1.pe.el9", + "dnf" + ], + [ + "pe-modules", + "2025.3.0.0-1.el9", + "dnf" + ], + [ + "pe-nginx", + "2025.3.1.26.3-2.pe.el9", + "dnf" + ], + [ + "pe-orchestration-services", + "2025.3.0.7-1.el9", + "dnf" + ], + [ + "pe-patching-service", + "2025.3.0.15-1.el9", + "dnf" + ], + [ + "pe-postgresql-common", + "2025.2-2.pe.el9", + "dnf" + ], + [ + "pe-postgresql14", + "2025.2.14.16-1.pe.el9", + "dnf" + ], + [ + "pe-postgresql14-contrib", + "2025.2.14.16-1.pe.el9", + "dnf" + ], + [ + "pe-postgresql14-pglogical", + "2025.2.2.4.5-2.pe.el9", + "dnf" + ], + [ + "pe-postgresql14-pgrepack", + "2025.2.1.5.2-1.pe.el9", + "dnf" + ], + [ + "pe-postgresql14-server", + "2025.2.14.16-1.pe.el9", + "dnf" + ], + [ + "pe-puppet-enterprise-release", + "2025.3.0.0-2.pe.el9", + "dnf" + ], + [ + "pe-puppetdb", + "2025.2.0.9-1.el9", + "dnf" + ], + [ + "pe-puppetdb-termini", + "2025.2.0.9-1.el9", + "dnf" + ], + [ + "pe-puppetserver", + "2025.3.0.5-1.el9", + "dnf" + ], + [ + "pe-r10k", + "2025.3.5.0.0-1.el9", + "dnf" + ], + [ + "pe-tasks", + "2025.3.0.0-1.el9", + "dnf" + ], + [ + "perl-AutoLoader", + "5.74-481.el9", + "dnf" + ], + [ + "perl-B", + "1.80-481.el9", + "dnf" + ], + [ + "perl-Carp", + "1.50-460.el9", + "dnf" + ], + [ + "perl-Class-Struct", + "0.66-481.el9", + "dnf" + ], + [ + "perl-DBD-SQLite", + "1.66-5.el9", + "dnf" + ], + [ + "perl-DBI", + "1.643-9.el9", + "dnf" + ], + [ + "perl-Data-Dumper", + "2.174-462.el9", + "dnf" + ], + [ + "perl-Digest", + "1.19-4.el9", + "dnf" + ], + [ + "perl-Digest-MD5", + "2.58-4.el9", + "dnf" + ], + [ + "perl-DynaLoader", + "1.47-481.el9", + "dnf" + ], + [ + "perl-Encode", + "4:3.08-462.el9", + "dnf" + ], + [ + "perl-Errno", + "1.30-481.el9", + "dnf" + ], + [ + "perl-Error", + "1:0.17029-7.el9", + "dnf" + ], + [ + "perl-Exporter", + "5.74-461.el9", + "dnf" + ], + [ + "perl-Fcntl", + "1.13-481.el9", + "dnf" + ], + [ + "perl-File-Basename", + "2.85-481.el9", + "dnf" + ], + [ + "perl-File-Find", + "1.37-481.el9", + "dnf" + ], + [ + "perl-File-Path", + "2.18-4.el9", + "dnf" + ], + [ + "perl-File-Temp", + "1:0.231.100-4.el9", + "dnf" + ], + [ + "perl-File-stat", + "1.09-481.el9", + "dnf" + ], + [ + "perl-FileHandle", + "2.03-481.el9", + "dnf" + ], + [ + "perl-Getopt-Long", + "1:2.52-4.el9", + "dnf" + ], + [ + "perl-Getopt-Std", + "1.12-481.el9", + "dnf" + ], + [ + "perl-Git", + "2.47.1-2.el9_6", + "dnf" + ], + [ + "perl-HTTP-Tiny", + "0.076-462.el9", + "dnf" + ], + [ + "perl-IO", + "1.43-481.el9", + "dnf" + ], + [ + "perl-IO-Socket-IP", + "0.41-5.el9", + "dnf" + ], + [ + "perl-IO-Socket-SSL", + "2.073-2.el9", + "dnf" + ], + [ + "perl-IPC-Open3", + "1.21-481.el9", + "dnf" + ], + [ + "perl-MIME-Base64", + "3.16-4.el9", + "dnf" + ], + [ + "perl-Math-BigInt", + "1:1.9998.18-460.el9", + "dnf" + ], + [ + "perl-Math-Complex", + "1.59-481.el9", + "dnf" + ], + [ + "perl-Mozilla-CA", + "20200520-6.el9", + "dnf" + ], + [ + "perl-NDBM_File", + "1.15-481.el9", + "dnf" + ], + [ + "perl-Net-SSLeay", + "1.94-1.el9", + "dnf" + ], + [ + "perl-POSIX", + "1.94-481.el9", + "dnf" + ], + [ + "perl-PathTools", + "3.78-461.el9", + "dnf" + ], + [ + "perl-Pod-Escapes", + "1:1.07-460.el9", + "dnf" + ], + [ + "perl-Pod-Perldoc", + "3.28.01-461.el9", + "dnf" + ], + [ + "perl-Pod-Simple", + "1:3.42-4.el9", + "dnf" + ], + [ + "perl-Pod-Usage", + "4:2.01-4.el9", + "dnf" + ], + [ + "perl-Scalar-List-Utils", + "4:1.56-462.el9", + "dnf" + ], + [ + "perl-SelectSaver", + "1.02-481.el9", + "dnf" + ], + [ + "perl-Socket", + "4:2.031-4.el9", + "dnf" + ], + [ + "perl-Storable", + "1:3.21-460.el9", + "dnf" + ], + [ + "perl-Symbol", + "1.08-481.el9", + "dnf" + ], + [ + "perl-Term-ANSIColor", + "5.01-461.el9", + "dnf" + ], + [ + "perl-Term-Cap", + "1.17-460.el9", + "dnf" + ], + [ + "perl-TermReadKey", + "2.38-11.el9", + "dnf" + ], + [ + "perl-Text-ParseWords", + "3.30-460.el9", + "dnf" + ], + [ + "perl-Text-Tabs+Wrap", + "2013.0523-460.el9", + "dnf" + ], + [ + "perl-Time-Local", + "2:1.300-7.el9", + "dnf" + ], + [ + "perl-URI", + "5.09-3.el9", + "dnf" + ], + [ + "perl-base", + "2.27-481.el9", + "dnf" + ], + [ + "perl-constant", + "1.33-461.el9", + "dnf" + ], + [ + "perl-if", + "0.60.800-481.el9", + "dnf" + ], + [ + "perl-interpreter", + "4:5.32.1-481.el9", + "dnf" + ], + [ + "perl-lib", + "0.65-481.el9", + "dnf" + ], + [ + "perl-libnet", + "3.13-4.el9", + "dnf" + ], + [ + "perl-libs", + "4:5.32.1-481.el9", + "dnf" + ], + [ + "perl-locale", + "1.09-481.el9", + "dnf" + ], + [ + "perl-mro", + "1.23-481.el9", + "dnf" + ], + [ + "perl-overload", + "1.31-481.el9", + "dnf" + ], + [ + "perl-overloading", + "0.02-481.el9", + "dnf" + ], + [ + "perl-parent", + "1:0.238-460.el9", + "dnf" + ], + [ + "perl-podlators", + "1:4.14-460.el9", + "dnf" + ], + [ + "perl-subs", + "1.03-481.el9", + "dnf" + ], + [ + "perl-vars", + "1.05-481.el9", + "dnf" + ], + [ + "pigz", + "2.8-1.el9", + "dnf" + ], + [ + "pinentry", + "1.1.1-8.el9", + "dnf" + ], + [ + "pinentry-gnome3", + "1.1.1-8.el9", + "dnf" + ], + [ + "pinfo", + "0.6.10-29.el9", + "dnf" + ], + [ + "pipewire", + "1.0.1-1.el9", + "dnf" + ], + [ + "pipewire-alsa", + "1.0.1-1.el9", + "dnf" + ], + [ + "pipewire-gstreamer", + "1.0.1-1.el9", + "dnf" + ], + [ + "pipewire-jack-audio-connection-kit", + "1.0.1-1.el9", + "dnf" + ], + [ + "pipewire-jack-audio-connection-kit-libs", + "1.0.1-1.el9", + "dnf" + ], + [ + "pipewire-libs", + "1.0.1-1.el9", + "dnf" + ], + [ + "pipewire-pulseaudio", + "1.0.1-1.el9", + "dnf" + ], + [ + "pipewire-utils", + "1.0.1-1.el9", + "dnf" + ], + [ + "pixman", + "0.40.0-6.el9_3", + "dnf" + ], + [ + "pkgconf", + "1.7.3-10.el9", + "dnf" + ], + [ + "pkgconf-m4", + "1.7.3-10.el9", + "dnf" + ], + [ + "pkgconf-pkg-config", + "1.7.3-10.el9", + "dnf" + ], + [ + "plymouth", + "0.9.5-7.20210331git1ea1020.el9", + "dnf" + ], + [ + "plymouth-core-libs", + "0.9.5-7.20210331git1ea1020.el9", + "dnf" + ], + [ + "plymouth-graphics-libs", + "0.9.5-7.20210331git1ea1020.el9", + "dnf" + ], + [ + "plymouth-plugin-label", + "0.9.5-7.20210331git1ea1020.el9", + "dnf" + ], + [ + "plymouth-plugin-two-step", + "0.9.5-7.20210331git1ea1020.el9", + "dnf" + ], + [ + "plymouth-scripts", + "0.9.5-7.20210331git1ea1020.el9", + "dnf" + ], + [ + "plymouth-system-theme", + "0.9.5-7.20210331git1ea1020.el9", + "dnf" + ], + [ + "plymouth-theme-spinner", + "0.9.5-7.20210331git1ea1020.el9", + "dnf" + ], + [ + "pnm2ppa", + "1:1.04-52.el9", + "dnf" + ], + [ + "podman", + "5:5.4.0-9.el9_6", + "dnf" + ], + [ + "policycoreutils", + "3.6-2.1.el9", + "dnf" + ], + [ + "policycoreutils-python-utils", + "3.6-2.1.el9", + "dnf" + ], + [ + "polkit", + "0.117-13.el9", + "dnf" + ], + [ + "polkit-libs", + "0.117-13.el9", + "dnf" + ], + [ + "polkit-pkla-compat", + "0.1-21.el9", + "dnf" + ], + [ + "poppler", + "21.01.0-21.el9", + "dnf" + ], + [ + "poppler-cpp", + "21.01.0-21.el9", + "dnf" + ], + [ + "poppler-data", + "0.4.9-9.el9", + "dnf" + ], + [ + "poppler-glib", + "21.01.0-21.el9", + "dnf" + ], + [ + "poppler-utils", + "21.01.0-21.el9", + "dnf" + ], + [ + "popt", + "1.18-8.el9", + "dnf" + ], + [ + "prefixdevname", + "0.1.0-8.el9", + "dnf" + ], + [ + "procps-ng", + "3.3.17-14.el9", + "dnf" + ], + [ + "protobuf-c", + "1.3.3-13.el9", + "dnf" + ], + [ + "psacct", + "6.6.4-12.el9", + "dnf" + ], + [ + "psmisc", + "23.4-3.el9", + "dnf" + ], + [ + "pt-sans-fonts", + "20141121-23.el9", + "dnf" + ], + [ + "publicsuffix-list-dafsa", + "20210518-3.el9", + "dnf" + ], + [ + "pulseaudio-libs", + "15.0-3.el9", + "dnf" + ], + [ + "pulseaudio-libs-glib2", + "15.0-3.el9", + "dnf" + ], + [ + "puppet-agent", + "8.12.0-1.el9", + "dnf" + ], + [ + "puppet-bolt", + "4.0.0-1.el9", + "dnf" + ], + [ + "puppet-tools-release", + "1.0.0-19.el9", + "dnf" + ], + [ + "python-unversioned-command", + "3.9.21-2.el9", + "dnf" + ], + [ + "python3", + "3.9.21-2.el9", + "dnf" + ], + [ + "python3-audit", + "3.1.5-4.el9", + "dnf" + ], + [ + "python3-brlapi", + "0.8.2-4.el9", + "dnf" + ], + [ + "python3-cairo", + "1.20.1-1.el9", + "dnf" + ], + [ + "python3-chardet", + "4.0.0-5.el9", + "dnf" + ], + [ + "python3-cups", + "2.0.1-10.el9", + "dnf" + ], + [ + "python3-dasbus", + "1.4-5.el9", + "dnf" + ], + [ + "python3-dateutil", + "1:2.8.1-7.el9", + "dnf" + ], + [ + "python3-dbus", + "1.2.18-2.el9", + "dnf" + ], + [ + "python3-distro", + "1.5.0-7.el9", + "dnf" + ], + [ + "python3-dnf", + "4.14.0-25.el9.alma.1", + "dnf" + ], + [ + "python3-dnf-plugins-core", + "4.3.0-20.el9", + "dnf" + ], + [ + "python3-file-magic", + "5.39-16.el9", + "dnf" + ], + [ + "python3-firewall", + "1.3.4-9.el9_5", + "dnf" + ], + [ + "python3-gobject", + "3.40.1-6.el9", + "dnf" + ], + [ + "python3-gobject-base", + "3.40.1-6.el9", + "dnf" + ], + [ + "python3-gobject-base-noarch", + "3.40.1-6.el9", + "dnf" + ], + [ + "python3-gpg", + "1.15.1-6.el9", + "dnf" + ], + [ + "python3-hawkey", + "0.69.0-13.el9.alma.1", + "dnf" + ], + [ + "python3-idna", + "2.10-7.el9_4.1", + "dnf" + ], + [ + "python3-inotify", + "0.9.6-25.el9", + "dnf" + ], + [ + "python3-libcomps", + "0.1.18-1.el9", + "dnf" + ], + [ + "python3-libdnf", + "0.69.0-13.el9.alma.1", + "dnf" + ], + [ + "python3-libs", + "3.9.21-2.el9", + "dnf" + ], + [ + "python3-libselinux", + "3.6-3.el9", + "dnf" + ], + [ + "python3-libsemanage", + "3.6-5.el9_6", + "dnf" + ], + [ + "python3-libstoragemgmt", + "1.10.1-1.el9", + "dnf" + ], + [ + "python3-libxml2", + "2.9.13-9.el9_6", + "dnf" + ], + [ + "python3-linux-procfs", + "0.7.3-1.el9", + "dnf" + ], + [ + "python3-louis", + "3.16.1-5.el9", + "dnf" + ], + [ + "python3-lxml", + "4.6.5-3.el9", + "dnf" + ], + [ + "python3-nftables", + "1:1.0.9-3.el9", + "dnf" + ], + [ + "python3-perf", + "5.14.0-570.12.1.el9_6", + "dnf" + ], + [ + "python3-pexpect", + "4.8.0-7.el9", + "dnf" + ], + [ + "python3-pip-wheel", + "21.3.1-1.el9", + "dnf" + ], + [ + "python3-policycoreutils", + "3.6-2.1.el9", + "dnf" + ], + [ + "python3-psutil", + "5.8.0-12.el9", + "dnf" + ], + [ + "python3-ptyprocess", + "0.6.0-12.el9", + "dnf" + ], + [ + "python3-pyatspi", + "2.38.1-3.el9", + "dnf" + ], + [ + "python3-pycurl", + "7.43.0.6-8.el9", + "dnf" + ], + [ + "python3-pysocks", + "1.7.1-12.el9", + "dnf" + ], + [ + "python3-pyudev", + "0.22.0-6.el9", + "dnf" + ], + [ + "python3-pyyaml", + "5.4.1-6.el9", + "dnf" + ], + [ + "python3-requests", + "2.25.1-9.el9", + "dnf" + ], + [ + "python3-rpm", + "4.16.1.3-37.el9", + "dnf" + ], + [ + "python3-setools", + "4.4.4-1.el9", + "dnf" + ], + [ + "python3-setuptools", + "53.0.0-13.el9", + "dnf" + ], + [ + "python3-setuptools-wheel", + "53.0.0-13.el9", + "dnf" + ], + [ + "python3-six", + "1.15.0-9.el9", + "dnf" + ], + [ + "python3-speechd", + "0.10.2-4.el9", + "dnf" + ], + [ + "python3-systemd", + "234-19.el9", + "dnf" + ], + [ + "python3-tracer", + "1.1-2.el9", + "dnf" + ], + [ + "python3-urllib3", + "1.26.5-6.el9", + "dnf" + ], + [ + "qemu-guest-agent", + "17:9.1.0-15.el9.alma.2", + "dnf" + ], + [ + "qpdf-libs", + "10.3.1-7.el9", + "dnf" + ], + [ + "quota", + "1:4.09-4.el9", + "dnf" + ], + [ + "quota-nls", + "1:4.09-4.el9", + "dnf" + ], + [ + "rasdaemon", + "0.6.7-18.el9", + "dnf" + ], + [ + "readline", + "8.1-4.el9", + "dnf" + ], + [ + "realmd", + "0.17.1-2.el9", + "dnf" + ], + [ + "rest", + "0.8.1-11.el9", + "dnf" + ], + [ + "rootfiles", + "8.1-34.el9", + "dnf" + ], + [ + "rpm", + "4.16.1.3-37.el9", + "dnf" + ], + [ + "rpm-build-libs", + "4.16.1.3-37.el9", + "dnf" + ], + [ + "rpm-libs", + "4.16.1.3-37.el9", + "dnf" + ], + [ + "rpm-plugin-audit", + "4.16.1.3-37.el9", + "dnf" + ], + [ + "rpm-plugin-selinux", + "4.16.1.3-37.el9", + "dnf" + ], + [ + "rpm-plugin-systemd-inhibit", + "4.16.1.3-37.el9", + "dnf" + ], + [ + "rpm-sign-libs", + "4.16.1.3-37.el9", + "dnf" + ], + [ + "rsync", + "3.2.5-3.el9", + "dnf" + ], + [ + "rsyslog", + "8.2412.0-1.el9", + "dnf" + ], + [ + "rsyslog-gnutls", + "8.2412.0-1.el9", + "dnf" + ], + [ + "rsyslog-gssapi", + "8.2412.0-1.el9", + "dnf" + ], + [ + "rsyslog-logrotate", + "8.2412.0-1.el9", + "dnf" + ], + [ + "rsyslog-relp", + "8.2412.0-1.el9", + "dnf" + ], + [ + "rtkit", + "0.11-29.el9", + "dnf" + ], + [ + "samba-client-libs", + "4.21.3-3.el9", + "dnf" + ], + [ + "samba-common", + "4.21.3-3.el9", + "dnf" + ], + [ + "samba-common-libs", + "4.21.3-3.el9", + "dnf" + ], + [ + "sane-airscan", + "0.99.24-3.el9", + "dnf" + ], + [ + "sane-backends", + "1.0.32-7.el9", + "dnf" + ], + [ + "sane-backends-drivers-cameras", + "1.0.32-7.el9", + "dnf" + ], + [ + "sane-backends-drivers-scanners", + "1.0.32-7.el9", + "dnf" + ], + [ + "sane-backends-libs", + "1.0.32-7.el9", + "dnf" + ], + [ + "sed", + "4.8-9.el9", + "dnf" + ], + [ + "selinux-policy", + "38.1.53-5.el9_6", + "dnf" + ], + [ + "selinux-policy-targeted", + "38.1.53-5.el9_6", + "dnf" + ], + [ + "setroubleshoot-plugins", + "3.3.14-4.el9", + "dnf" + ], + [ + "setroubleshoot-server", + "3.3.32-1.el9", + "dnf" + ], + [ + "setup", + "2.13.7-10.el9", + "dnf" + ], + [ + "setxkbmap", + "1.3.2-5.el9", + "dnf" + ], + [ + "sg3_utils", + "1.47-10.el9", + "dnf" + ], + [ + "sg3_utils-libs", + "1.47-10.el9", + "dnf" + ], + [ + "shadow-utils", + "2:4.9-12.el9", + "dnf" + ], + [ + "shadow-utils-subid", + "2:4.9-12.el9", + "dnf" + ], + [ + "shared-mime-info", + "2.1-5.el9", + "dnf" + ], + [ + "shim-x64", + "15.8-4.el9_3.alma.2", + "dnf" + ], + [ + "sil-abyssinica-fonts", + "1.200-23.el9", + "dnf" + ], + [ + "sil-nuosu-fonts", + "2.200-4.el9", + "dnf" + ], + [ + "sil-padauk-fonts", + "3.003-9.el9", + "dnf" + ], + [ + "slang", + "2.3.2-11.el9", + "dnf" + ], + [ + "slirp4netns", + "1.3.2-1.el9", + "dnf" + ], + [ + "smartmontools", + "1:7.2-9.el9", + "dnf" + ], + [ + "smc-meera-fonts", + "7.0.3-5.el9", + "dnf" + ], + [ + "snappy", + "1.1.8-8.el9", + "dnf" + ], + [ + "sos", + "4.8.2-2.el9_5", + "dnf" + ], + [ + "sound-theme-freedesktop", + "0.8-17.el9", + "dnf" + ], + [ + "soundtouch", + "2.1.1-8.el9", + "dnf" + ], + [ + "speech-dispatcher", + "0.10.2-4.el9", + "dnf" + ], + [ + "speech-dispatcher-espeak-ng", + "0.10.2-4.el9", + "dnf" + ], + [ + "speex", + "1.2.0-11.el9", + "dnf" + ], + [ + "spice-vdagent", + "0.21.0-5.el9", + "dnf" + ], + [ + "sqlite-libs", + "3.34.1-7.el9_3", + "dnf" + ], + [ + "squashfs-tools", + "4.4-10.git1.el9", + "dnf" + ], + [ + "sscg", + "3.0.0-7.el9", + "dnf" + ], + [ + "sssd", + "2.9.6-4.el9_6.2", + "dnf" + ], + [ + "sssd-ad", + "2.9.6-4.el9_6.2", + "dnf" + ], + [ + "sssd-client", + "2.9.6-4.el9_6.2", + "dnf" + ], + [ + "sssd-common", + "2.9.6-4.el9_6.2", + "dnf" + ], + [ + "sssd-common-pac", + "2.9.6-4.el9_6.2", + "dnf" + ], + [ + "sssd-ipa", + "2.9.6-4.el9_6.2", + "dnf" + ], + [ + "sssd-kcm", + "2.9.6-4.el9_6.2", + "dnf" + ], + [ + "sssd-krb5", + "2.9.6-4.el9_6.2", + "dnf" + ], + [ + "sssd-krb5-common", + "2.9.6-4.el9_6.2", + "dnf" + ], + [ + "sssd-ldap", + "2.9.6-4.el9_6.2", + "dnf" + ], + [ + "sssd-proxy", + "2.9.6-4.el9_6.2", + "dnf" + ], + [ + "startup-notification", + "0.12-23.el9", + "dnf" + ], + [ + "stix-fonts", + "2.0.2-11.el9", + "dnf" + ], + [ + "strace", + "6.12-1.el9", + "dnf" + ], + [ + "sudo", + "1.9.5p2-10.el9_3", + "dnf" + ], + [ + "sushi", + "3.38.1-2.el9_4.1", + "dnf" + ], + [ + "switcheroo-control", + "2.4-4.el9", + "dnf" + ], + [ + "symlinks", + "1.7-6.el9", + "dnf" + ], + [ + "system-config-printer-libs", + "1.5.15-4.el9", + "dnf" + ], + [ + "system-config-printer-udev", + "1.5.15-4.el9", + "dnf" + ], + [ + "systemd", + "252-51.el9.alma.1", + "dnf" + ], + [ + "systemd-libs", + "252-51.el9.alma.1", + "dnf" + ], + [ + "systemd-pam", + "252-51.el9.alma.1", + "dnf" + ], + [ + "systemd-rpm-macros", + "252-51.el9.alma.1", + "dnf" + ], + [ + "systemd-udev", + "252-51.el9.alma.1", + "dnf" + ], + [ + "taglib", + "1.12-6.el9", + "dnf" + ], + [ + "tailscale", + "1.84.0-1", + "dnf" + ], + [ + "tar", + "2:1.34-7.el9", + "dnf" + ], + [ + "tcl", + "1:8.6.10-7.el9", + "dnf" + ], + [ + "tcpdump", + "14:4.99.0-9.el9", + "dnf" + ], + [ + "teamd", + "1.31-16.el9_1", + "dnf" + ], + [ + "texlive-lib", + "9:20200406-26.el9_2", + "dnf" + ], + [ + "thai-scalable-fonts-common", + "0.7.2-5.el9", + "dnf" + ], + [ + "thai-scalable-waree-fonts", + "0.7.2-5.el9", + "dnf" + ], + [ + "time", + "1.9-18.el9", + "dnf" + ], + [ + "totem", + "1:3.38.2-2.el9", + "dnf" + ], + [ + "totem-pl-parser", + "3.26.6-2.el9", + "dnf" + ], + [ + "totem-video-thumbnailer", + "1:3.38.2-2.el9", + "dnf" + ], + [ + "tpm2-tools", + "5.2-4.el9", + "dnf" + ], + [ + "tpm2-tss", + "3.2.3-1.el9", + "dnf" + ], + [ + "tracer-common", + "1.1-2.el9", + "dnf" + ], + [ + "tracker", + "3.1.2-3.el9_1", + "dnf" + ], + [ + "tracker-miners", + "3.1.2-4.el9_3", + "dnf" + ], + [ + "tree", + "1.8.0-10.el9", + "dnf" + ], + [ + "tuned", + "2.25.1-1.el9", + "dnf" + ], + [ + "tuned-ppd", + "2.25.1-1.el9", + "dnf" + ], + [ + "twolame-libs", + "0.3.13-19.el9", + "dnf" + ], + [ + "tzdata", + "2025b-1.el9", + "dnf" + ], + [ + "udisks2", + "2.9.4-11.el9", + "dnf" + ], + [ + "udisks2-iscsi", + "2.9.4-11.el9", + "dnf" + ], + [ + "udisks2-lvm2", + "2.9.4-11.el9", + "dnf" + ], + [ + "unzip", + "6.0-58.el9_5", + "dnf" + ], + [ + "upower", + "0.99.13-2.el9", + "dnf" + ], + [ + "urw-base35-bookman-fonts", + "20200910-6.el9", + "dnf" + ], + [ + "urw-base35-c059-fonts", + "20200910-6.el9", + "dnf" + ], + [ + "urw-base35-d050000l-fonts", + "20200910-6.el9", + "dnf" + ], + [ + "urw-base35-fonts", + "20200910-6.el9", + "dnf" + ], + [ + "urw-base35-fonts-common", + "20200910-6.el9", + "dnf" + ], + [ + "urw-base35-gothic-fonts", + "20200910-6.el9", + "dnf" + ], + [ + "urw-base35-nimbus-mono-ps-fonts", + "20200910-6.el9", + "dnf" + ], + [ + "urw-base35-nimbus-roman-fonts", + "20200910-6.el9", + "dnf" + ], + [ + "urw-base35-nimbus-sans-fonts", + "20200910-6.el9", + "dnf" + ], + [ + "urw-base35-p052-fonts", + "20200910-6.el9", + "dnf" + ], + [ + "urw-base35-standard-symbols-ps-fonts", + "20200910-6.el9", + "dnf" + ], + [ + "urw-base35-z003-fonts", + "20200910-6.el9", + "dnf" + ], + [ + "usb_modeswitch", + "2.6.1-4.el9", + "dnf" + ], + [ + "usb_modeswitch-data", + "20191128-6.el9", + "dnf" + ], + [ + "usbutils", + "017-1.el9", + "dnf" + ], + [ + "userspace-rcu", + "0.12.1-6.el9", + "dnf" + ], + [ + "util-linux", + "2.37.4-21.el9", + "dnf" + ], + [ + "util-linux-core", + "2.37.4-21.el9", + "dnf" + ], + [ + "util-linux-user", + "2.37.4-21.el9", + "dnf" + ], + [ + "vdo", + "8.2.2.2-1.el9", + "dnf" + ], + [ + "vim-common", + "2:8.2.2637-22.el9_6", + "dnf" + ], + [ + "vim-enhanced", + "2:8.2.2637-22.el9_6", + "dnf" + ], + [ + "vim-filesystem", + "2:8.2.2637-22.el9_6", + "dnf" + ], + [ + "vim-minimal", + "2:8.2.2637-22.el9_6", + "dnf" + ], + [ + "virt-what", + "1.27-1.el9", + "dnf" + ], + [ + "volume_key-libs", + "0.3.12-16.el9", + "dnf" + ], + [ + "vte-profile", + "0.64.2-2.el9", + "dnf" + ], + [ + "vte291", + "0.64.2-2.el9", + "dnf" + ], + [ + "vulkan-loader", + "1.4.304.0-1.el9", + "dnf" + ], + [ + "wavpack", + "5.4.0-5.el9", + "dnf" + ], + [ + "webkit2gtk3", + "2.48.1-1.el9_6", + "dnf" + ], + [ + "webkit2gtk3-jsc", + "2.48.1-1.el9_6", + "dnf" + ], + [ + "webrtc-audio-processing", + "0.3.1-8.el9", + "dnf" + ], + [ + "wget", + "1.21.1-8.el9_4", + "dnf" + ], + [ + "which", + "2.21-29.el9", + "dnf" + ], + [ + "wireless-regdb", + "2024.01.23-1.el9", + "dnf" + ], + [ + "wireplumber", + "0.4.14-1.el9", + "dnf" + ], + [ + "wireplumber-libs", + "0.4.14-1.el9", + "dnf" + ], + [ + "woff2", + "1.0.2-15.el9", + "dnf" + ], + [ + "words", + "3.0-39.el9", + "dnf" + ], + [ + "wpa_supplicant", + "1:2.11-2.el9", + "dnf" + ], + [ + "xcb-util", + "0.4.0-19.el9", + "dnf" + ], + [ + "xdg-dbus-proxy", + "0.1.3-1.el9", + "dnf" + ], + [ + "xdg-desktop-portal", + "1.12.6-1.el9", + "dnf" + ], + [ + "xdg-desktop-portal-gnome", + "41.2-3.el9", + "dnf" + ], + [ + "xdg-desktop-portal-gtk", + "1.12.0-3.el9", + "dnf" + ], + [ + "xdg-user-dirs", + "0.17-10.el9", + "dnf" + ], + [ + "xdg-user-dirs-gtk", + "0.10-22.el9", + "dnf" + ], + [ + "xdg-utils", + "1.1.3-11.el9", + "dnf" + ], + [ + "xfsdump", + "3.1.12-4.el9_3", + "dnf" + ], + [ + "xfsprogs", + "6.4.0-5.el9", + "dnf" + ], + [ + "xkbcomp", + "1.4.4-4.el9", + "dnf" + ], + [ + "xkeyboard-config", + "2.33-2.el9", + "dnf" + ], + [ + "xml-common", + "0.6.3-58.el9", + "dnf" + ], + [ + "xmlsec1", + "1.2.29-13.el9", + "dnf" + ], + [ + "xmlsec1-openssl", + "1.2.29-13.el9", + "dnf" + ], + [ + "xorg-x11-drv-evdev", + "2.10.6-12.el9", + "dnf" + ], + [ + "xorg-x11-drv-fbdev", + "0.5.0-11.el9", + "dnf" + ], + [ + "xorg-x11-drv-libinput", + "1.0.1-4.el9_6", + "dnf" + ], + [ + "xorg-x11-drv-vmware", + "13.2.1-18.el9", + "dnf" + ], + [ + "xorg-x11-drv-wacom", + "1.0.0-1.el9", + "dnf" + ], + [ + "xorg-x11-drv-wacom-serial-support", + "1.0.0-1.el9", + "dnf" + ], + [ + "xorg-x11-server-Xorg", + "1.20.11-28.el9_6", + "dnf" + ], + [ + "xorg-x11-server-Xwayland", + "23.2.7-3.el9_6", + "dnf" + ], + [ + "xorg-x11-server-common", + "1.20.11-28.el9_6", + "dnf" + ], + [ + "xorg-x11-server-utils", + "7.7-44.el9", + "dnf" + ], + [ + "xorg-x11-utils", + "7.5-40.el9", + "dnf" + ], + [ + "xorg-x11-xauth", + "1:1.1-10.el9", + "dnf" + ], + [ + "xorg-x11-xinit", + "1.4.0-11.el9", + "dnf" + ], + [ + "xorg-x11-xinit-session", + "1.4.0-11.el9", + "dnf" + ], + [ + "xz", + "5.2.5-8.el9_0", + "dnf" + ], + [ + "xz-libs", + "5.2.5-8.el9_0", + "dnf" + ], + [ + "yajl", + "2.1.0-25.el9", + "dnf" + ], + [ + "yelp", + "2:40.3-2.el9_6.1", + "dnf" + ], + [ + "yelp-libs", + "2:40.3-2.el9_6.1", + "dnf" + ], + [ + "yelp-tools", + "40.0-3.el9", + "dnf" + ], + [ + "yelp-xsl", + "40.2-1.el9", + "dnf" + ], + [ + "yum", + "4.14.0-25.el9.alma.1", + "dnf" + ], + [ + "zenity", + "3.32.0-8.el9", + "dnf" + ], + [ + "zip", + "3.0-35.el9", + "dnf" + ], + [ + "zlib", + "1.2.11-40.el9", + "dnf" + ], + [ + "ModemManager", + "1.20.2-1.el9", + "rpm" + ], + [ + "ModemManager-glib", + "1.20.2-1.el9", + "rpm" + ], + [ + "NetworkManager", + "1:1.52.0-3.el9_6", + "rpm" + ], + [ + "NetworkManager-adsl", + "1:1.52.0-3.el9_6", + "rpm" + ], + [ + "NetworkManager-bluetooth", + "1:1.52.0-3.el9_6", + "rpm" + ], + [ + "NetworkManager-config-server", + "1:1.52.0-3.el9_6", + "rpm" + ], + [ + "NetworkManager-libnm", + "1:1.52.0-3.el9_6", + "rpm" + ], + [ + "NetworkManager-team", + "1:1.52.0-3.el9_6", + "rpm" + ], + [ + "NetworkManager-tui", + "1:1.52.0-3.el9_6", + "rpm" + ], + [ + "NetworkManager-wifi", + "1:1.52.0-3.el9_6", + "rpm" + ], + [ + "NetworkManager-wwan", + "1:1.52.0-3.el9_6", + "rpm" + ], + [ + "PackageKit", + "1.2.6-1.el9", + "rpm" + ], + [ + "PackageKit-command-not-found", + "1.2.6-1.el9", + "rpm" + ], + [ + "PackageKit-glib", + "1.2.6-1.el9", + "rpm" + ], + [ + "PackageKit-gstreamer-plugin", + "1.2.6-1.el9", + "rpm" + ], + [ + "PackageKit-gtk3-module", + "1.2.6-1.el9", + "rpm" + ], + [ + "aardvark-dns", + "2:1.14.0-1.el9", + "rpm" + ], + [ + "abattis-cantarell-fonts", + "0.301-4.el9", + "rpm" + ], + [ + "accountsservice", + "0.6.55-10.el9", + "rpm" + ], + [ + "accountsservice-libs", + "0.6.55-10.el9", + "rpm" + ], + [ + "acl", + "2.3.1-4.el9", + "rpm" + ], + [ + "adcli", + "0.9.2-1.el9", + "rpm" + ], + [ + "adobe-mappings-cmap", + "20171205-12.el9", + "rpm" + ], + [ + "adobe-mappings-cmap-deprecated", + "20171205-12.el9", + "rpm" + ], + [ + "adobe-mappings-pdf", + "20180407-10.el9", + "rpm" + ], + [ + "adobe-source-code-pro-fonts", + "2.030.1.050-12.el9.1", + "rpm" + ], + [ + "adwaita-cursor-theme", + "40.1.1-3.el9", + "rpm" + ], + [ + "adwaita-icon-theme", + "40.1.1-3.el9", + "rpm" + ], + [ + "almalinux-backgrounds", + "90.6-1.el9", + "rpm" + ], + [ + "almalinux-gpg-keys", + "9.6-1.el9", + "rpm" + ], + [ + "almalinux-indexhtml", + "9-4.el9", + "rpm" + ], + [ + "almalinux-logos", + "90.6-1.el9", + "rpm" + ], + [ + "almalinux-release", + "9.6-1.el9", + "rpm" + ], + [ + "almalinux-repos", + "9.6-1.el9", + "rpm" + ], + [ + "alsa-lib", + "1.2.13-2.el9", + "rpm" + ], + [ + "alsa-ucm", + "1.2.13-2.el9", + "rpm" + ], + [ + "alsa-utils", + "1.2.13-1.el9", + "rpm" + ], + [ + "alternatives", + "1.24-2.el9", + "rpm" + ], + [ + "appstream", + "0.16.1-1.el9", + "rpm" + ], + [ + "appstream-data", + "1:9-20240827.el9", + "rpm" + ], + [ + "at", + "3.1.23-11.el9", + "rpm" + ], + [ + "at-spi2-atk", + "2.38.0-4.el9", + "rpm" + ], + [ + "at-spi2-core", + "2.40.3-1.el9", + "rpm" + ], + [ + "atk", + "2.36.0-5.el9", + "rpm" + ], + [ + "atkmm", + "2.28.2-2.el9", + "rpm" + ], + [ + "attr", + "2.5.1-3.el9", + "rpm" + ], + [ + "audit", + "3.1.5-4.el9", + "rpm" + ], + [ + "audit-libs", + "3.1.5-4.el9", + "rpm" + ], + [ + "authselect", + "1.2.6-3.el9", + "rpm" + ], + [ + "authselect-libs", + "1.2.6-3.el9", + "rpm" + ], + [ + "avahi", + "0.8-22.el9_6", + "rpm" + ], + [ + "avahi-glib", + "0.8-22.el9_6", + "rpm" + ], + [ + "avahi-libs", + "0.8-22.el9_6", + "rpm" + ], + [ + "avahi-tools", + "0.8-22.el9_6", + "rpm" + ], + [ + "baobab", + "40.0-3.el9", + "rpm" + ], + [ + "basesystem", + "11-13.el9", + "rpm" + ], + [ + "bash", + "5.1.8-9.el9", + "rpm" + ], + [ + "bash-completion", + "1:2.11-5.el9", + "rpm" + ], + [ + "bc", + "1.07.1-14.el9", + "rpm" + ], + [ + "bind-libs", + "32:9.16.23-28.el9_6", + "rpm" + ], + [ + "bind-license", + "32:9.16.23-28.el9_6", + "rpm" + ], + [ + "bind-utils", + "32:9.16.23-28.el9_6", + "rpm" + ], + [ + "binutils", + "2.35.2-63.el9", + "rpm" + ], + [ + "binutils-gold", + "2.35.2-63.el9", + "rpm" + ], + [ + "blktrace", + "1.2.0-20.el9", + "rpm" + ], + [ + "bluez", + "5.72-4.el9", + "rpm" + ], + [ + "bluez-libs", + "5.72-4.el9", + "rpm" + ], + [ + "bluez-obexd", + "5.72-4.el9", + "rpm" + ], + [ + "bolt", + "0.9.7-1.el9", + "rpm" + ], + [ + "bpftool", + "7.5.0-802.el9_6", + "rpm" + ], + [ + "brlapi", + "0.8.2-4.el9", + "rpm" + ], + [ + "brltty", + "6.3-4.el9", + "rpm" + ], + [ + "bubblewrap", + "0.4.1-8.el9_5", + "rpm" + ], + [ + "buildah", + "2:1.39.4-1.el9_6", + "rpm" + ], + [ + "bzip2", + "1.0.8-10.el9_5", + "rpm" + ], + [ + "bzip2-libs", + "1.0.8-10.el9_5", + "rpm" + ], + [ + "c-ares", + "1.19.1-2.el9_4", + "rpm" + ], + [ + "ca-certificates", + "2024.2.69_v8.0.303-91.4.el9_4", + "rpm" + ], + [ + "cairo", + "1.17.4-7.el9", + "rpm" + ], + [ + "cairo-gobject", + "1.17.4-7.el9", + "rpm" + ], + [ + "cairomm", + "1.14.2-10.el9", + "rpm" + ], + [ + "checkpolicy", + "3.6-1.el9", + "rpm" + ], + [ + "cheese", + "2:3.38.0-6.el9", + "rpm" + ], + [ + "cheese-libs", + "2:3.38.0-6.el9", + "rpm" + ], + [ + "chkconfig", + "1.24-2.el9", + "rpm" + ], + [ + "chrome-gnome-shell", + "42.1-1.el9", + "rpm" + ], + [ + "chrony", + "4.6.1-1.el9", + "rpm" + ], + [ + "clevis", + "21-208.el9", + "rpm" + ], + [ + "clevis-luks", + "21-208.el9", + "rpm" + ], + [ + "clutter", + "1.26.4-7.el9", + "rpm" + ], + [ + "clutter-gst3", + "3.0.27-7.el9", + "rpm" + ], + [ + "clutter-gtk", + "1.8.4-13.el9", + "rpm" + ], + [ + "cockpit", + "334.1-1.el9_6", + "rpm" + ], + [ + "cockpit-bridge", + "334.1-1.el9_6", + "rpm" + ], + [ + "cockpit-packagekit", + "334.1-1.el9_6", + "rpm" + ], + [ + "cockpit-podman", + "101-1.el9", + "rpm" + ], + [ + "cockpit-storaged", + "334.1-1.el9_6", + "rpm" + ], + [ + "cockpit-system", + "334.1-1.el9_6", + "rpm" + ], + [ + "cockpit-ws", + "334.1-1.el9_6", + "rpm" + ], + [ + "cogl", + "1.22.8-5.el9", + "rpm" + ], + [ + "color-filesystem", + "1-28.el9", + "rpm" + ], + [ + "colord", + "1.4.5-6.el9_6", + "rpm" + ], + [ + "colord-gtk", + "0.2.0-7.el9", + "rpm" + ], + [ + "colord-libs", + "1.4.5-6.el9_6", + "rpm" + ], + [ + "composefs", + "1.0.8-1.el9", + "rpm" + ], + [ + "composefs-libs", + "1.0.8-1.el9", + "rpm" + ], + [ + "conmon", + "3:2.1.12-1.el9", + "rpm" + ], + [ + "container-selinux", + "4:2.235.0-2.el9_6", + "rpm" + ], + [ + "containernetworking-plugins", + "1:1.6.2-1.el9", + "rpm" + ], + [ + "containers-common", + "2:1-117.el9_6", + "rpm" + ], + [ + "containers-common-extra", + "2:1-117.el9_6", + "rpm" + ], + [ + "coreutils", + "8.32-39.el9", + "rpm" + ], + [ + "coreutils-common", + "8.32-39.el9", + "rpm" + ], + [ + "cpio", + "2.13-16.el9", + "rpm" + ], + [ + "cpp", + "11.5.0-5.el9_5.alma.1", + "rpm" + ], + [ + "cracklib", + "2.9.6-27.el9", + "rpm" + ], + [ + "cracklib-dicts", + "2.9.6-27.el9", + "rpm" + ], + [ + "criu", + "3.19-1.el9", + "rpm" + ], + [ + "criu-libs", + "3.19-1.el9", + "rpm" + ], + [ + "cronie", + "1.5.7-13.el9", + "rpm" + ], + [ + "cronie-anacron", + "1.5.7-13.el9", + "rpm" + ], + [ + "crontabs", + "1.11-27.20190603git.el9_0", + "rpm" + ], + [ + "crun", + "1.21-1.el9_6", + "rpm" + ], + [ + "crypto-policies", + "20250128-1.git5269e22.el9", + "rpm" + ], + [ + "crypto-policies-scripts", + "20250128-1.git5269e22.el9", + "rpm" + ], + [ + "cryptsetup", + "2.7.2-3.el9_5", + "rpm" + ], + [ + "cryptsetup-libs", + "2.7.2-3.el9_5", + "rpm" + ], + [ + "cups", + "1:2.3.3op2-33.el9", + "rpm" + ], + [ + "cups-client", + "1:2.3.3op2-33.el9", + "rpm" + ], + [ + "cups-filesystem", + "1:2.3.3op2-33.el9", + "rpm" + ], + [ + "cups-filters", + "1.28.7-20.el9", + "rpm" + ], + [ + "cups-filters-libs", + "1.28.7-20.el9", + "rpm" + ], + [ + "cups-ipptool", + "1:2.3.3op2-33.el9", + "rpm" + ], + [ + "cups-libs", + "1:2.3.3op2-33.el9", + "rpm" + ], + [ + "cups-pk-helper", + "0.2.6-14.el9", + "rpm" + ], + [ + "curl", + "7.76.1-31.el9", + "rpm" + ], + [ + "cyrus-sasl-gssapi", + "2.1.27-21.el9", + "rpm" + ], + [ + "cyrus-sasl-lib", + "2.1.27-21.el9", + "rpm" + ], + [ + "cyrus-sasl-plain", + "2.1.27-21.el9", + "rpm" + ], + [ + "dbus", + "1:1.12.20-8.el9", + "rpm" + ], + [ + "dbus-broker", + "28-7.el9", + "rpm" + ], + [ + "dbus-common", + "1:1.12.20-8.el9", + "rpm" + ], + [ + "dbus-daemon", + "1:1.12.20-8.el9", + "rpm" + ], + [ + "dbus-glib", + "0.110-13.el9", + "rpm" + ], + [ + "dbus-libs", + "1:1.12.20-8.el9", + "rpm" + ], + [ + "dbus-tools", + "1:1.12.20-8.el9", + "rpm" + ], + [ + "dconf", + "0.40.0-6.el9", + "rpm" + ], + [ + "dejavu-sans-fonts", + "2.37-18.el9", + "rpm" + ], + [ + "dejavu-sans-mono-fonts", + "2.37-18.el9", + "rpm" + ], + [ + "dejavu-serif-fonts", + "2.37-18.el9", + "rpm" + ], + [ + "desktop-file-utils", + "0.26-6.el9", + "rpm" + ], + [ + "device-mapper", + "9:1.02.202-6.el9", + "rpm" + ], + [ + "device-mapper-event", + "9:1.02.202-6.el9", + "rpm" + ], + [ + "device-mapper-event-libs", + "9:1.02.202-6.el9", + "rpm" + ], + [ + "device-mapper-libs", + "9:1.02.202-6.el9", + "rpm" + ], + [ + "device-mapper-multipath", + "0.8.7-35.el9", + "rpm" + ], + [ + "device-mapper-multipath-libs", + "0.8.7-35.el9", + "rpm" + ], + [ + "device-mapper-persistent-data", + "1.1.0-1.el9", + "rpm" + ], + [ + "diffutils", + "3.7-12.el9", + "rpm" + ], + [ + "dmidecode", + "1:3.6-1.el9", + "rpm" + ], + [ + "dnf", + "4.14.0-25.el9.alma.1", + "rpm" + ], + [ + "dnf-data", + "4.14.0-25.el9.alma.1", + "rpm" + ], + [ + "dnf-plugins-core", + "4.3.0-20.el9", + "rpm" + ], + [ + "dnsmasq", + "2.85-16.el9_4", + "rpm" + ], + [ + "dos2unix", + "7.4.2-4.el9", + "rpm" + ], + [ + "dosfstools", + "4.2-3.el9", + "rpm" + ], + [ + "dotconf", + "1.3-28.el9", + "rpm" + ], + [ + "dracut", + "057-87.git20250311.el9_6", + "rpm" + ], + [ + "dracut-config-rescue", + "057-87.git20250311.el9_6", + "rpm" + ], + [ + "dracut-network", + "057-87.git20250311.el9_6", + "rpm" + ], + [ + "dracut-squash", + "057-87.git20250311.el9_6", + "rpm" + ], + [ + "e2fsprogs", + "1.46.5-7.el9", + "rpm" + ], + [ + "e2fsprogs-libs", + "1.46.5-7.el9", + "rpm" + ], + [ + "ed", + "1.14.2-12.el9", + "rpm" + ], + [ + "efi-filesystem", + "6-2.el9_0.0.1", + "rpm" + ], + [ + "efibootmgr", + "16-12.el9", + "rpm" + ], + [ + "efivar-libs", + "38-3.el9", + "rpm" + ], + [ + "elfutils-debuginfod-client", + "0.192-5.el9", + "rpm" + ], + [ + "elfutils-default-yama-scope", + "0.192-5.el9", + "rpm" + ], + [ + "elfutils-libelf", + "0.192-5.el9", + "rpm" + ], + [ + "elfutils-libs", + "0.192-5.el9", + "rpm" + ], + [ + "emacs-filesystem", + "1:27.2-13.el9_6", + "rpm" + ], + [ + "enchant2", + "2.2.15-6.el9", + "rpm" + ], + [ + "enscript", + "1.6.6-28.el9", + "rpm" + ], + [ + "eog", + "40.3-2.el9", + "rpm" + ], + [ + "espeak-ng", + "1.50-9.el9", + "rpm" + ], + [ + "ethtool", + "2:6.11-1.el9", + "rpm" + ], + [ + "evince", + "40.5-2.el9", + "rpm" + ], + [ + "evince-libs", + "40.5-2.el9", + "rpm" + ], + [ + "evince-nautilus", + "40.5-2.el9", + "rpm" + ], + [ + "evince-previewer", + "40.5-2.el9", + "rpm" + ], + [ + "evince-thumbnailer", + "40.5-2.el9", + "rpm" + ], + [ + "evolution-data-server", + "3.40.4-10.el9", + "rpm" + ], + [ + "evolution-data-server-langpacks", + "3.40.4-10.el9", + "rpm" + ], + [ + "evolution-data-server-ui", + "3.40.4-10.el9", + "rpm" + ], + [ + "exempi", + "2.6.0-0.2.20211007gite23c213.el9", + "rpm" + ], + [ + "exiv2", + "0.27.5-2.el9", + "rpm" + ], + [ + "exiv2-libs", + "0.27.5-2.el9", + "rpm" + ], + [ + "expat", + "2.5.0-5.el9_6", + "rpm" + ], + [ + "fdk-aac-free", + "2.0.0-8.el9", + "rpm" + ], + [ + "file", + "5.39-16.el9", + "rpm" + ], + [ + "file-libs", + "5.39-16.el9", + "rpm" + ], + [ + "filesystem", + "3.16-5.el9", + "rpm" + ], + [ + "findutils", + "1:4.8.0-7.el9", + "rpm" + ], + [ + "firefox", + "128.10.1-1.el9_6.alma.1", + "rpm" + ], + [ + "firewalld", + "1.3.4-9.el9_5", + "rpm" + ], + [ + "firewalld-filesystem", + "1.3.4-9.el9_5", + "rpm" + ], + [ + "flac-libs", + "1.3.3-10.el9_2.1", + "rpm" + ], + [ + "flashrom", + "1.2-10.el9", + "rpm" + ], + [ + "flatpak", + "1.12.9-4.el9_6", + "rpm" + ], + [ + "flatpak-libs", + "1.12.9-4.el9_6", + "rpm" + ], + [ + "flatpak-selinux", + "1.12.9-4.el9_6", + "rpm" + ], + [ + "flatpak-session-helper", + "1.12.9-4.el9_6", + "rpm" + ], + [ + "fontconfig", + "2.14.0-2.el9_1", + "rpm" + ], + [ + "fonts-filesystem", + "1:2.0.5-7.el9.1", + "rpm" + ], + [ + "foomatic", + "4.0.13-19.el9", + "rpm" + ], + [ + "foomatic-db", + "4.0-72.20210209.el9", + "rpm" + ], + [ + "foomatic-db-filesystem", + "4.0-72.20210209.el9", + "rpm" + ], + [ + "foomatic-db-ppds", + "4.0-72.20210209.el9", + "rpm" + ], + [ + "fprintd", + "1.94.0-3.el9", + "rpm" + ], + [ + "fprintd-pam", + "1.94.0-3.el9", + "rpm" + ], + [ + "freetype", + "2.10.4-10.el9_5", + "rpm" + ], + [ + "fribidi", + "1.0.10-6.el9.2", + "rpm" + ], + [ + "fstrm", + "0.6.1-3.el9", + "rpm" + ], + [ + "fuse", + "2.9.9-17.el9", + "rpm" + ], + [ + "fuse-common", + "3.10.2-9.el9", + "rpm" + ], + [ + "fuse-libs", + "2.9.9-17.el9", + "rpm" + ], + [ + "fuse-overlayfs", + "1.14-1.el9", + "rpm" + ], + [ + "fuse3", + "3.10.2-9.el9", + "rpm" + ], + [ + "fuse3-libs", + "3.10.2-9.el9", + "rpm" + ], + [ + "fwupd", + "1.9.26-1.el9.alma.1", + "rpm" + ], + [ + "fwupd-plugin-flashrom", + "1.9.26-1.el9.alma.1", + "rpm" + ], + [ + "gawk", + "5.1.0-6.el9", + "rpm" + ], + [ + "gawk-all-langpacks", + "5.1.0-6.el9", + "rpm" + ], + [ + "gcr", + "3.40.0-3.el9", + "rpm" + ], + [ + "gcr-base", + "3.40.0-3.el9", + "rpm" + ], + [ + "gd", + "2.3.2-3.el9", + "rpm" + ], + [ + "gdbm-libs", + "1:1.23-1.el9", + "rpm" + ], + [ + "gdisk", + "1.0.7-5.el9", + "rpm" + ], + [ + "gdk-pixbuf2", + "2.42.6-4.el9_4", + "rpm" + ], + [ + "gdk-pixbuf2-modules", + "2.42.6-4.el9_4", + "rpm" + ], + [ + "gdm", + "1:40.1-28.el9_6", + "rpm" + ], + [ + "gedit", + "2:40.0-6.el9", + "rpm" + ], + [ + "geoclue2", + "2.6.0-8.el9_6.1", + "rpm" + ], + [ + "geoclue2-libs", + "2.6.0-8.el9_6.1", + "rpm" + ], + [ + "geocode-glib", + "3.26.2-5.el9", + "rpm" + ], + [ + "gettext", + "0.21-8.el9", + "rpm" + ], + [ + "gettext-libs", + "0.21-8.el9", + "rpm" + ], + [ + "ghostscript", + "9.54.0-19.el9_6", + "rpm" + ], + [ + "ghostscript-tools-fonts", + "9.54.0-19.el9_6", + "rpm" + ], + [ + "ghostscript-tools-printing", + "9.54.0-19.el9_6", + "rpm" + ], + [ + "giflib", + "5.2.1-9.el9", + "rpm" + ], + [ + "git", + "2.47.1-2.el9_6", + "rpm" + ], + [ + "git-core", + "2.47.1-2.el9_6", + "rpm" + ], + [ + "git-core-doc", + "2.47.1-2.el9_6", + "rpm" + ], + [ + "gjs", + "1.68.6-4.el9", + "rpm" + ], + [ + "glib-networking", + "2.68.3-3.el9", + "rpm" + ], + [ + "glib2", + "2.68.4-16.el9", + "rpm" + ], + [ + "glibc", + "2.34-168.el9_6.14.alma.1", + "rpm" + ], + [ + "glibc-all-langpacks", + "2.34-168.el9_6.14.alma.1", + "rpm" + ], + [ + "glibc-common", + "2.34-168.el9_6.14.alma.1", + "rpm" + ], + [ + "glibc-gconv-extra", + "2.34-168.el9_6.14.alma.1", + "rpm" + ], + [ + "glibc-langpack-en", + "2.34-168.el9_6.14.alma.1", + "rpm" + ], + [ + "glibmm24", + "2.66.1-1.el9", + "rpm" + ], + [ + "glx-utils", + "8.4.0-12.20210504git0f9e7d9.el9", + "rpm" + ], + [ + "gmp", + "1:6.2.0-13.el9", + "rpm" + ], + [ + "gnome-autoar", + "0.4.1-2.el9", + "rpm" + ], + [ + "gnome-bluetooth", + "1:3.34.5-3.el9", + "rpm" + ], + [ + "gnome-bluetooth-libs", + "1:3.34.5-3.el9", + "rpm" + ], + [ + "gnome-calculator", + "40.1-2.el9", + "rpm" + ], + [ + "gnome-characters", + "40.0-3.el9", + "rpm" + ], + [ + "gnome-classic-session", + "40.7-25.el9", + "rpm" + ], + [ + "gnome-color-manager", + "3.36.0-7.el9", + "rpm" + ], + [ + "gnome-control-center", + "40.0-38.el9", + "rpm" + ], + [ + "gnome-control-center-filesystem", + "40.0-38.el9", + "rpm" + ], + [ + "gnome-desktop3", + "40.4-1.el9", + "rpm" + ], + [ + "gnome-disk-utility", + "40.2-2.el9", + "rpm" + ], + [ + "gnome-font-viewer", + "40.0-3.el9", + "rpm" + ], + [ + "gnome-initial-setup", + "40.4-3.el9", + "rpm" + ], + [ + "gnome-keyring", + "40.0-4.el9_4", + "rpm" + ], + [ + "gnome-keyring-pam", + "40.0-4.el9_4", + "rpm" + ], + [ + "gnome-logs", + "3.36.0-8.el9", + "rpm" + ], + [ + "gnome-menus", + "3.36.0-9.el9_4", + "rpm" + ], + [ + "gnome-online-accounts", + "3.40.0-8.el9", + "rpm" + ], + [ + "gnome-remote-desktop", + "40.0-10.el9", + "rpm" + ], + [ + "gnome-screenshot", + "40.0-5.el9", + "rpm" + ], + [ + "gnome-session", + "40.1.1-9.el9", + "rpm" + ], + [ + "gnome-session-wayland-session", + "40.1.1-9.el9", + "rpm" + ], + [ + "gnome-session-xsession", + "40.1.1-9.el9", + "rpm" + ], + [ + "gnome-settings-daemon", + "40.0.1-19.el9", + "rpm" + ], + [ + "gnome-shell", + "40.10-24.el9", + "rpm" + ], + [ + "gnome-shell-extension-apps-menu", + "40.7-25.el9", + "rpm" + ], + [ + "gnome-shell-extension-background-logo", + "40.0~rc-4.el9", + "rpm" + ], + [ + "gnome-shell-extension-common", + "40.7-25.el9", + "rpm" + ], + [ + "gnome-shell-extension-desktop-icons", + "40.7-25.el9", + "rpm" + ], + [ + "gnome-shell-extension-launch-new-instance", + "40.7-25.el9", + "rpm" + ], + [ + "gnome-shell-extension-places-menu", + "40.7-25.el9", + "rpm" + ], + [ + "gnome-shell-extension-window-list", + "40.7-25.el9", + "rpm" + ], + [ + "gnome-software", + "45.3-3.el9", + "rpm" + ], + [ + "gnome-system-monitor", + "40.1-3.el9", + "rpm" + ], + [ + "gnome-terminal", + "3.40.3-1.el9", + "rpm" + ], + [ + "gnome-terminal-nautilus", + "3.40.3-1.el9", + "rpm" + ], + [ + "gnome-tour", + "40.1-2.el9", + "rpm" + ], + [ + "gnome-user-docs", + "40.0-3.el9", + "rpm" + ], + [ + "gnome-video-effects", + "0.5.0-7.el9", + "rpm" + ], + [ + "gnupg2", + "2.3.3-4.el9", + "rpm" + ], + [ + "gnutls", + "3.8.3-6.el9", + "rpm" + ], + [ + "gobject-introspection", + "1.68.0-11.el9", + "rpm" + ], + [ + "gom", + "0.4-6.el9", + "rpm" + ], + [ + "google-droid-sans-fonts", + "20200215-11.el9.2", + "rpm" + ], + [ + "google-noto-cjk-fonts-common", + "20230817-2.el9", + "rpm" + ], + [ + "google-noto-emoji-color-fonts", + "20211102-1.el9", + "rpm" + ], + [ + "google-noto-fonts-common", + "20201206-5.el9", + "rpm" + ], + [ + "google-noto-sans-cjk-ttc-fonts", + "20230817-2.el9", + "rpm" + ], + [ + "google-noto-sans-gurmukhi-fonts", + "20201206-5.el9", + "rpm" + ], + [ + "google-noto-sans-sinhala-vf-fonts", + "20201206-5.el9", + "rpm" + ], + [ + "google-noto-serif-cjk-ttc-fonts", + "20230817-2.el9", + "rpm" + ], + [ + "gpg-pubkey", + "957f5868-5e5499b8; 9e61ef26-63615580; b86b3716-61e69f29", + "rpm" + ], + [ + "gpgme", + "1.15.1-6.el9", + "rpm" + ], + [ + "gpm-libs", + "1.20.7-29.el9", + "rpm" + ], + [ + "graphene", + "1.10.6-2.el9", + "rpm" + ], + [ + "graphite2", + "1.3.14-9.el9", + "rpm" + ], + [ + "grep", + "3.6-5.el9", + "rpm" + ], + [ + "grilo", + "0.3.13-7.el9", + "rpm" + ], + [ + "grilo-plugins", + "0.3.13-6.el9", + "rpm" + ], + [ + "groff-base", + "1.22.4-10.el9", + "rpm" + ], + [ + "grub2-common", + "1:2.06-104.el9_6.alma.1", + "rpm" + ], + [ + "grub2-efi-x64", + "1:2.06-104.el9_6.alma.1", + "rpm" + ], + [ + "grub2-tools", + "1:2.06-104.el9_6.alma.1", + "rpm" + ], + [ + "grub2-tools-minimal", + "1:2.06-104.el9_6.alma.1", + "rpm" + ], + [ + "grubby", + "8.40-64.el9", + "rpm" + ], + [ + "gsettings-desktop-schemas", + "40.0-6.el9", + "rpm" + ], + [ + "gsm", + "1.0.19-6.el9", + "rpm" + ], + [ + "gsound", + "1.0.2-15.el9", + "rpm" + ], + [ + "gspell", + "1.9.1-3.el9", + "rpm" + ], + [ + "gstreamer1", + "1.22.12-3.el9", + "rpm" + ], + [ + "gstreamer1-plugins-bad-free", + "1.22.12-3.el9", + "rpm" + ], + [ + "gstreamer1-plugins-bad-free-libs", + "1.22.12-3.el9", + "rpm" + ], + [ + "gstreamer1-plugins-base", + "1.22.12-4.el9", + "rpm" + ], + [ + "gstreamer1-plugins-good", + "1.22.12-4.el9", + "rpm" + ], + [ + "gstreamer1-plugins-good-gtk", + "1.22.12-4.el9", + "rpm" + ], + [ + "gstreamer1-plugins-ugly-free", + "1.22.12-3.el9", + "rpm" + ], + [ + "gtk-update-icon-cache", + "3.24.31-5.el9", + "rpm" + ], + [ + "gtk3", + "3.24.31-5.el9", + "rpm" + ], + [ + "gtk4", + "4.12.3-2.el9", + "rpm" + ], + [ + "gtkmm30", + "3.24.5-1.el9", + "rpm" + ], + [ + "gtksourceview4", + "4.8.1-5.el9", + "rpm" + ], + [ + "gutenprint", + "5.3.4-4.el9", + "rpm" + ], + [ + "gutenprint-cups", + "5.3.4-4.el9", + "rpm" + ], + [ + "gutenprint-doc", + "5.3.4-4.el9", + "rpm" + ], + [ + "gutenprint-libs", + "5.3.4-4.el9", + "rpm" + ], + [ + "gvfs", + "1.48.1-6.el9", + "rpm" + ], + [ + "gvfs-client", + "1.48.1-6.el9", + "rpm" + ], + [ + "gvfs-fuse", + "1.48.1-6.el9", + "rpm" + ], + [ + "gvfs-goa", + "1.48.1-6.el9", + "rpm" + ], + [ + "gvfs-gphoto2", + "1.48.1-6.el9", + "rpm" + ], + [ + "gvfs-mtp", + "1.48.1-6.el9", + "rpm" + ], + [ + "gvfs-smb", + "1.48.1-6.el9", + "rpm" + ], + [ + "gzip", + "1.12-1.el9", + "rpm" + ], + [ + "harfbuzz", + "2.7.4-10.el9", + "rpm" + ], + [ + "harfbuzz-icu", + "2.7.4-10.el9", + "rpm" + ], + [ + "hdparm", + "9.62-2.el9", + "rpm" + ], + [ + "hicolor-icon-theme", + "0.17-13.el9", + "rpm" + ], + [ + "highcontrast-icon-theme", + "3.28-14.el9", + "rpm" + ], + [ + "hostname", + "3.23-6.el9", + "rpm" + ], + [ + "hplip-common", + "3.21.2-6.el9.alma", + "rpm" + ], + [ + "hplip-libs", + "3.21.2-6.el9.alma", + "rpm" + ], + [ + "hunspell", + "1.7.0-11.el9", + "rpm" + ], + [ + "hunspell-en", + "0.20140811.1-20.el9", + "rpm" + ], + [ + "hunspell-en-GB", + "0.20140811.1-20.el9", + "rpm" + ], + [ + "hunspell-en-US", + "0.20140811.1-20.el9", + "rpm" + ], + [ + "hunspell-filesystem", + "1.7.0-11.el9", + "rpm" + ], + [ + "hwdata", + "0.348-9.18.el9", + "rpm" + ], + [ + "hyperv-daemons", + "0-0.43.20190303git.el9", + "rpm" + ], + [ + "hyperv-daemons-license", + "0-0.43.20190303git.el9", + "rpm" + ], + [ + "hypervfcopyd", + "0-0.43.20190303git.el9", + "rpm" + ], + [ + "hypervkvpd", + "0-0.43.20190303git.el9", + "rpm" + ], + [ + "hypervvssd", + "0-0.43.20190303git.el9", + "rpm" + ], + [ + "hyphen", + "2.8.8-17.el9", + "rpm" + ], + [ + "ibus", + "1.5.25-6.el9", + "rpm" + ], + [ + "ibus-gtk3", + "1.5.25-6.el9", + "rpm" + ], + [ + "ibus-libs", + "1.5.25-6.el9", + "rpm" + ], + [ + "ibus-setup", + "1.5.25-6.el9", + "rpm" + ], + [ + "iio-sensor-proxy", + "3.3-1.el9", + "rpm" + ], + [ + "ima-evm-utils", + "1.5-3.el9", + "rpm" + ], + [ + "info", + "6.7-15.el9", + "rpm" + ], + [ + "inih", + "49-6.el9", + "rpm" + ], + [ + "initscripts", + "10.11.8-4.el9", + "rpm" + ], + [ + "initscripts-rename-device", + "10.11.8-4.el9", + "rpm" + ], + [ + "initscripts-service", + "10.11.8-4.el9", + "rpm" + ], + [ + "iproute", + "6.11.0-1.el9", + "rpm" + ], + [ + "iproute-tc", + "6.11.0-1.el9", + "rpm" + ], + [ + "iprutils", + "2.4.19-5.el9", + "rpm" + ], + [ + "ipset", + "7.11-11.el9_5", + "rpm" + ], + [ + "ipset-libs", + "7.11-11.el9_5", + "rpm" + ], + [ + "iptables-libs", + "1.8.10-11.el9_5", + "rpm" + ], + [ + "iptables-nft", + "1.8.10-11.el9_5", + "rpm" + ], + [ + "iputils", + "20210202-11.el9", + "rpm" + ], + [ + "irqbalance", + "2:1.9.4-2.el9", + "rpm" + ], + [ + "iscsi-initiator-utils", + "6.2.1.9-1.gita65a472.el9", + "rpm" + ], + [ + "iscsi-initiator-utils-iscsiuio", + "6.2.1.9-1.gita65a472.el9", + "rpm" + ], + [ + "isns-utils-libs", + "0.101-4.el9", + "rpm" + ], + [ + "iso-codes", + "4.6.0-3.el9", + "rpm" + ], + [ + "itstool", + "2.0.6-7.el9", + "rpm" + ], + [ + "iw", + "6.9-1.el9", + "rpm" + ], + [ + "iwl100-firmware", + "39.31.5.1-151.el9_6", + "rpm" + ], + [ + "iwl1000-firmware", + "1:39.31.5.1-151.el9_6", + "rpm" + ], + [ + "iwl105-firmware", + "18.168.6.1-151.el9_6", + "rpm" + ], + [ + "iwl135-firmware", + "18.168.6.1-151.el9_6", + "rpm" + ], + [ + "iwl2000-firmware", + "18.168.6.1-151.el9_6", + "rpm" + ], + [ + "iwl2030-firmware", + "18.168.6.1-151.el9_6", + "rpm" + ], + [ + "iwl3160-firmware", + "1:25.30.13.0-151.el9_6", + "rpm" + ], + [ + "iwl5000-firmware", + "8.83.5.1_1-151.el9_6", + "rpm" + ], + [ + "iwl5150-firmware", + "8.24.2.2-151.el9_6", + "rpm" + ], + [ + "iwl6000g2a-firmware", + "18.168.6.1-151.el9_6", + "rpm" + ], + [ + "iwl6000g2b-firmware", + "18.168.6.1-151.el9_6", + "rpm" + ], + [ + "iwl6050-firmware", + "41.28.5.1-151.el9_6", + "rpm" + ], + [ + "iwl7260-firmware", + "1:25.30.13.0-151.el9_6", + "rpm" + ], + [ + "jansson", + "2.14-1.el9", + "rpm" + ], + [ + "jbig2dec-libs", + "0.19-7.el9", + "rpm" + ], + [ + "jbigkit-libs", + "2.1-23.el9", + "rpm" + ], + [ + "jomolhari-fonts", + "0.003-34.el9", + "rpm" + ], + [ + "jose", + "14-1.el9", + "rpm" + ], + [ + "jq", + "1.6-17.el9", + "rpm" + ], + [ + "json-c", + "0.14-11.el9", + "rpm" + ], + [ + "json-glib", + "1.6.6-1.el9", + "rpm" + ], + [ + "julietaula-montserrat-fonts", + "1:7.210-6.el9", + "rpm" + ], + [ + "kbd", + "2.4.0-11.el9", + "rpm" + ], + [ + "kbd-legacy", + "2.4.0-11.el9", + "rpm" + ], + [ + "kbd-misc", + "2.4.0-11.el9", + "rpm" + ], + [ + "kernel", + "5.14.0-570.12.1.el9_6", + "rpm" + ], + [ + "kernel-core", + "5.14.0-570.12.1.el9_6", + "rpm" + ], + [ + "kernel-modules", + "5.14.0-570.12.1.el9_6", + "rpm" + ], + [ + "kernel-modules-core", + "5.14.0-570.12.1.el9_6", + "rpm" + ], + [ + "kernel-tools", + "5.14.0-570.12.1.el9_6", + "rpm" + ], + [ + "kernel-tools-libs", + "5.14.0-570.12.1.el9_6", + "rpm" + ], + [ + "kexec-tools", + "2.0.29-5.el9", + "rpm" + ], + [ + "keyutils", + "1.6.3-1.el9", + "rpm" + ], + [ + "keyutils-libs", + "1.6.3-1.el9", + "rpm" + ], + [ + "khmer-os-system-fonts", + "5.0-36.el9", + "rpm" + ], + [ + "kmod", + "28-10.el9", + "rpm" + ], + [ + "kmod-kvdo", + "8.2.5.10-161.el9", + "rpm" + ], + [ + "kmod-libs", + "28-10.el9", + "rpm" + ], + [ + "kpartx", + "0.8.7-35.el9", + "rpm" + ], + [ + "kpatch", + "0.9.7-3.el9_6", + "rpm" + ], + [ + "kpatch-dnf", + "0.9.7_0.5-3.el9_6", + "rpm" + ], + [ + "krb5-libs", + "1.21.1-6.el9", + "rpm" + ], + [ + "lame-libs", + "3.100-12.el9", + "rpm" + ], + [ + "langpacks-core-en", + "3.0-16.el9", + "rpm" + ], + [ + "langpacks-core-font-en", + "3.0-16.el9", + "rpm" + ], + [ + "langpacks-en", + "3.0-16.el9", + "rpm" + ], + [ + "lcms2", + "2.12-3.el9", + "rpm" + ], + [ + "ledmon", + "1.1.0-1.el9", + "rpm" + ], + [ + "ledmon-libs", + "1.1.0-1.el9", + "rpm" + ], + [ + "less", + "590-5.el9", + "rpm" + ], + [ + "libICE", + "1.0.10-8.el9", + "rpm" + ], + [ + "libSM", + "1.2.3-10.el9", + "rpm" + ], + [ + "libX11", + "1.7.0-11.el9", + "rpm" + ], + [ + "libX11-common", + "1.7.0-11.el9", + "rpm" + ], + [ + "libX11-xcb", + "1.7.0-11.el9", + "rpm" + ], + [ + "libXau", + "1.0.9-8.el9", + "rpm" + ], + [ + "libXcomposite", + "0.4.5-7.el9", + "rpm" + ], + [ + "libXcursor", + "1.2.0-7.el9", + "rpm" + ], + [ + "libXdamage", + "1.1.5-7.el9", + "rpm" + ], + [ + "libXdmcp", + "1.1.3-8.el9", + "rpm" + ], + [ + "libXext", + "1.3.4-8.el9", + "rpm" + ], + [ + "libXfixes", + "5.0.3-16.el9", + "rpm" + ], + [ + "libXfont2", + "2.0.3-12.el9", + "rpm" + ], + [ + "libXft", + "2.3.3-8.el9", + "rpm" + ], + [ + "libXi", + "1.7.10-8.el9", + "rpm" + ], + [ + "libXinerama", + "1.1.4-10.el9", + "rpm" + ], + [ + "libXmu", + "1.1.3-8.el9", + "rpm" + ], + [ + "libXpm", + "3.5.13-10.el9", + "rpm" + ], + [ + "libXrandr", + "1.5.2-8.el9", + "rpm" + ], + [ + "libXrender", + "0.9.10-16.el9", + "rpm" + ], + [ + "libXres", + "1.2.0-14.el9", + "rpm" + ], + [ + "libXt", + "1.2.0-6.el9", + "rpm" + ], + [ + "libXtst", + "1.2.3-16.el9", + "rpm" + ], + [ + "libXv", + "1.0.11-16.el9", + "rpm" + ], + [ + "libXxf86dga", + "1.1.5-8.el9", + "rpm" + ], + [ + "libXxf86vm", + "1.1.4-18.el9", + "rpm" + ], + [ + "liba52", + "0.7.4-42.el9", + "rpm" + ], + [ + "libacl", + "2.3.1-4.el9", + "rpm" + ], + [ + "libadwaita", + "1.4.2-2.el9", + "rpm" + ], + [ + "libaio", + "0.3.111-13.el9", + "rpm" + ], + [ + "libao", + "1.2.0-22.el9", + "rpm" + ], + [ + "libappstream-glib", + "0.7.18-5.el9_4", + "rpm" + ], + [ + "libarchive", + "3.5.3-4.el9", + "rpm" + ], + [ + "libassuan", + "2.5.5-3.el9", + "rpm" + ], + [ + "libasyncns", + "0.8-22.el9", + "rpm" + ], + [ + "libatasmart", + "0.19-22.el9", + "rpm" + ], + [ + "libatomic", + "11.5.0-5.el9_5.alma.1", + "rpm" + ], + [ + "libattr", + "2.5.1-3.el9", + "rpm" + ], + [ + "libbabeltrace", + "1.5.8-10.el9", + "rpm" + ], + [ + "libbasicobjects", + "0.1.1-53.el9", + "rpm" + ], + [ + "libblkid", + "2.37.4-21.el9", + "rpm" + ], + [ + "libblockdev", + "2.28-13.el9_6", + "rpm" + ], + [ + "libblockdev-crypto", + "2.28-13.el9_6", + "rpm" + ], + [ + "libblockdev-fs", + "2.28-13.el9_6", + "rpm" + ], + [ + "libblockdev-loop", + "2.28-13.el9_6", + "rpm" + ], + [ + "libblockdev-lvm", + "2.28-13.el9_6", + "rpm" + ], + [ + "libblockdev-mdraid", + "2.28-13.el9_6", + "rpm" + ], + [ + "libblockdev-part", + "2.28-13.el9_6", + "rpm" + ], + [ + "libblockdev-swap", + "2.28-13.el9_6", + "rpm" + ], + [ + "libblockdev-utils", + "2.28-13.el9_6", + "rpm" + ], + [ + "libbpf", + "2:1.5.0-1.el9", + "rpm" + ], + [ + "libbrotli", + "1.0.9-7.el9_5", + "rpm" + ], + [ + "libbytesize", + "2.5-3.el9", + "rpm" + ], + [ + "libcanberra", + "0.30-27.el9", + "rpm" + ], + [ + "libcanberra-gtk3", + "0.30-27.el9", + "rpm" + ], + [ + "libcap", + "2.48-9.el9_2", + "rpm" + ], + [ + "libcap-ng", + "0.8.2-7.el9", + "rpm" + ], + [ + "libcap-ng-python3", + "0.8.2-7.el9", + "rpm" + ], + [ + "libcbor", + "0.7.0-5.el9", + "rpm" + ], + [ + "libcdio", + "2.1.0-6.el9", + "rpm" + ], + [ + "libcdio-paranoia", + "10.2+2.0.1-6.el9", + "rpm" + ], + [ + "libcollection", + "0.7.0-53.el9", + "rpm" + ], + [ + "libcom_err", + "1.46.5-7.el9", + "rpm" + ], + [ + "libcomps", + "0.1.18-1.el9", + "rpm" + ], + [ + "libconfig", + "1.7.2-9.el9", + "rpm" + ], + [ + "libcurl", + "7.76.1-31.el9", + "rpm" + ], + [ + "libdaemon", + "0.14-23.el9", + "rpm" + ], + [ + "libdatrie", + "0.2.13-4.el9", + "rpm" + ], + [ + "libdb", + "5.3.28-55.el9", + "rpm" + ], + [ + "libdecor", + "0.1.1-1.el9", + "rpm" + ], + [ + "libdhash", + "0.5.0-53.el9", + "rpm" + ], + [ + "libdmx", + "1.1.4-12.el9", + "rpm" + ], + [ + "libdnf", + "0.69.0-13.el9.alma.1", + "rpm" + ], + [ + "libdrm", + "2.4.123-2.el9", + "rpm" + ], + [ + "libdvdnav", + "6.1.0-4.el9", + "rpm" + ], + [ + "libdvdread", + "6.1.1-4.el9", + "rpm" + ], + [ + "libeconf", + "0.4.1-4.el9", + "rpm" + ], + [ + "libedit", + "3.1-38.20210216cvs.el9", + "rpm" + ], + [ + "libepoxy", + "1.5.5-4.el9", + "rpm" + ], + [ + "liberation-fonts-common", + "1:2.1.3-5.el9", + "rpm" + ], + [ + "liberation-mono-fonts", + "1:2.1.3-5.el9", + "rpm" + ], + [ + "liberation-sans-fonts", + "1:2.1.3-5.el9", + "rpm" + ], + [ + "liberation-serif-fonts", + "1:2.1.3-5.el9", + "rpm" + ], + [ + "libertas-sd8787-firmware", + "20250314-151.el9_6", + "rpm" + ], + [ + "libestr", + "0.1.11-4.el9", + "rpm" + ], + [ + "libevdev", + "1.11.0-3.el9", + "rpm" + ], + [ + "libevent", + "2.1.12-8.el9_4", + "rpm" + ], + [ + "libexif", + "0.6.22-6.el9", + "rpm" + ], + [ + "libfastjson", + "0.99.9-5.el9", + "rpm" + ], + [ + "libfdisk", + "2.37.4-21.el9", + "rpm" + ], + [ + "libffi", + "3.4.2-8.el9", + "rpm" + ], + [ + "libfido2", + "1.13.0-2.el9", + "rpm" + ], + [ + "libfontenc", + "1.1.3-17.el9", + "rpm" + ], + [ + "libfprint", + "1.94.6-1.el9", + "rpm" + ], + [ + "libgcc", + "11.5.0-5.el9_5.alma.1", + "rpm" + ], + [ + "libgcrypt", + "1.10.0-11.el9", + "rpm" + ], + [ + "libgdata", + "0.18.1-4.el9", + "rpm" + ], + [ + "libgee", + "0.20.4-3.el9", + "rpm" + ], + [ + "libgexiv2", + "0.12.3-1.el9", + "rpm" + ], + [ + "libglvnd", + "1:1.3.4-1.el9", + "rpm" + ], + [ + "libglvnd-egl", + "1:1.3.4-1.el9", + "rpm" + ], + [ + "libglvnd-gles", + "1:1.3.4-1.el9", + "rpm" + ], + [ + "libglvnd-glx", + "1:1.3.4-1.el9", + "rpm" + ], + [ + "libgnomekbd", + "3.26.1-7.el9", + "rpm" + ], + [ + "libgomp", + "11.5.0-5.el9_5.alma.1", + "rpm" + ], + [ + "libgpg-error", + "1.42-5.el9", + "rpm" + ], + [ + "libgphoto2", + "2.5.27-3.el9", + "rpm" + ], + [ + "libgs", + "9.54.0-19.el9_6", + "rpm" + ], + [ + "libgsf", + "1.14.47-5.el9", + "rpm" + ], + [ + "libgtop2", + "2.40.0-9.el9", + "rpm" + ], + [ + "libgudev", + "237-1.el9", + "rpm" + ], + [ + "libgusb", + "0.3.8-2.el9", + "rpm" + ], + [ + "libgweather", + "40.0-3.el9", + "rpm" + ], + [ + "libgxps", + "0.3.2-3.el9", + "rpm" + ], + [ + "libhandy", + "1.2.3-1.el9", + "rpm" + ], + [ + "libibverbs", + "54.0-1.el9", + "rpm" + ], + [ + "libical", + "3.0.14-1.el9", + "rpm" + ], + [ + "libical-glib", + "3.0.14-1.el9", + "rpm" + ], + [ + "libicu", + "67.1-9.el9", + "rpm" + ], + [ + "libidn2", + "2.3.0-7.el9", + "rpm" + ], + [ + "libieee1284", + "0.2.11-37.el9", + "rpm" + ], + [ + "libijs", + "0.35-15.el9", + "rpm" + ], + [ + "libini_config", + "1.3.1-53.el9", + "rpm" + ], + [ + "libinput", + "1.19.3-5.el9_6", + "rpm" + ], + [ + "libipa_hbac", + "2.9.6-4.el9_6.2", + "rpm" + ], + [ + "libiptcdata", + "1.0.5-10.el9", + "rpm" + ], + [ + "libjcat", + "0.1.6-3.el9", + "rpm" + ], + [ + "libjose", + "14-1.el9", + "rpm" + ], + [ + "libjpeg-turbo", + "2.0.90-7.el9", + "rpm" + ], + [ + "libkcapi", + "1.4.0-2.el9", + "rpm" + ], + [ + "libkcapi-hmaccalc", + "1.4.0-2.el9", + "rpm" + ], + [ + "libksba", + "1.5.1-7.el9", + "rpm" + ], + [ + "libldac", + "2.0.2.3-10.el9", + "rpm" + ], + [ + "libldb", + "4.21.3-3.el9", + "rpm" + ], + [ + "liblouis", + "3.16.1-5.el9", + "rpm" + ], + [ + "libluksmeta", + "9-12.el9", + "rpm" + ], + [ + "libmaxminddb", + "1.5.2-4.el9", + "rpm" + ], + [ + "libmbim", + "1.28.2-2.el9", + "rpm" + ], + [ + "libmbim-utils", + "1.28.2-2.el9", + "rpm" + ], + [ + "libmediaart", + "1.9.5-2.el9", + "rpm" + ], + [ + "libmnl", + "1.0.4-16.el9_4", + "rpm" + ], + [ + "libmodulemd", + "2.13.0-2.el9", + "rpm" + ], + [ + "libmount", + "2.37.4-21.el9", + "rpm" + ], + [ + "libmpc", + "1.2.1-4.el9", + "rpm" + ], + [ + "libmpeg2", + "0.5.1-24.el9", + "rpm" + ], + [ + "libmspack", + "0.10.1-0.7.alpha.el9", + "rpm" + ], + [ + "libmtp", + "1.1.18-6.el9", + "rpm" + ], + [ + "libndp", + "1.9-1.el9", + "rpm" + ], + [ + "libnet", + "1.2-7.el9", + "rpm" + ], + [ + "libnetfilter_conntrack", + "1.0.9-1.el9", + "rpm" + ], + [ + "libnfnetlink", + "1.0.1-23.el9_5", + "rpm" + ], + [ + "libnftnl", + "1.2.6-4.el9_4", + "rpm" + ], + [ + "libnghttp2", + "1.43.0-6.el9", + "rpm" + ], + [ + "libnl3", + "3.11.0-1.el9", + "rpm" + ], + [ + "libnl3-cli", + "3.11.0-1.el9", + "rpm" + ], + [ + "libnma", + "1.8.40-1.el9", + "rpm" + ], + [ + "libnotify", + "0.7.9-8.el9", + "rpm" + ], + [ + "libnvme", + "1.11.1-1.el9", + "rpm" + ], + [ + "libogg", + "2:1.3.4-6.el9", + "rpm" + ], + [ + "libosinfo", + "1.10.0-1.el9", + "rpm" + ], + [ + "libpaper", + "1.1.28-4.el9", + "rpm" + ], + [ + "libpath_utils", + "0.2.1-53.el9", + "rpm" + ], + [ + "libpcap", + "14:1.10.0-4.el9", + "rpm" + ], + [ + "libpciaccess", + "0.16-7.el9", + "rpm" + ], + [ + "libpeas", + "1.30.0-4.el9", + "rpm" + ], + [ + "libpeas-gtk", + "1.30.0-4.el9", + "rpm" + ], + [ + "libpeas-loader-python3", + "1.30.0-4.el9", + "rpm" + ], + [ + "libpipeline", + "1.5.3-4.el9", + "rpm" + ], + [ + "libpkgconf", + "1.7.3-10.el9", + "rpm" + ], + [ + "libpng", + "2:1.6.37-12.el9", + "rpm" + ], + [ + "libproxy", + "0.4.15-35.el9", + "rpm" + ], + [ + "libproxy-webkitgtk4", + "0.4.15-35.el9", + "rpm" + ], + [ + "libpsl", + "0.21.1-5.el9", + "rpm" + ], + [ + "libpwquality", + "1.4.4-8.el9", + "rpm" + ], + [ + "libqmi", + "1.32.2-1.el9", + "rpm" + ], + [ + "libqmi-utils", + "1.32.2-1.el9", + "rpm" + ], + [ + "libqrtr-glib", + "1.2.2-1.el9", + "rpm" + ], + [ + "libref_array", + "0.1.5-53.el9", + "rpm" + ], + [ + "librelp", + "1.10.0-5.el9", + "rpm" + ], + [ + "librepo", + "1.14.5-2.el9", + "rpm" + ], + [ + "libreport-filesystem", + "2.15.2-6.el9.alma", + "rpm" + ], + [ + "librsvg2", + "2.50.7-3.el9", + "rpm" + ], + [ + "librsvg2-tools", + "2.50.7-3.el9", + "rpm" + ], + [ + "libsamplerate", + "0.1.9-10.el9", + "rpm" + ], + [ + "libsane-airscan", + "0.99.24-3.el9", + "rpm" + ], + [ + "libsane-hpaio", + "3.21.2-6.el9.alma", + "rpm" + ], + [ + "libsbc", + "1.4-9.el9", + "rpm" + ], + [ + "libseccomp", + "2.5.2-2.el9", + "rpm" + ], + [ + "libsecret", + "0.20.4-4.el9", + "rpm" + ], + [ + "libselinux", + "3.6-3.el9", + "rpm" + ], + [ + "libselinux-utils", + "3.6-3.el9", + "rpm" + ], + [ + "libsemanage", + "3.6-5.el9_6", + "rpm" + ], + [ + "libsepol", + "3.6-2.el9", + "rpm" + ], + [ + "libshout", + "2.4.3-7.el9", + "rpm" + ], + [ + "libsigc++20", + "2.10.7-2.el9", + "rpm" + ], + [ + "libsigsegv", + "2.13-4.el9", + "rpm" + ], + [ + "libslirp", + "4.4.0-8.el9", + "rpm" + ], + [ + "libsmartcols", + "2.37.4-21.el9", + "rpm" + ], + [ + "libsmbclient", + "4.21.3-3.el9", + "rpm" + ], + [ + "libsndfile", + "1.0.31-9.el9", + "rpm" + ], + [ + "libsolv", + "0.7.24-3.el9", + "rpm" + ], + [ + "libsoup", + "2.72.0-10.el9_6.1", + "rpm" + ], + [ + "libspectre", + "0.2.9-6.el9", + "rpm" + ], + [ + "libsrtp", + "2.3.0-8.el9", + "rpm" + ], + [ + "libss", + "1.46.5-7.el9", + "rpm" + ], + [ + "libssh", + "0.10.4-13.el9", + "rpm" + ], + [ + "libssh-config", + "0.10.4-13.el9", + "rpm" + ], + [ + "libsss_certmap", + "2.9.6-4.el9_6.2", + "rpm" + ], + [ + "libsss_idmap", + "2.9.6-4.el9_6.2", + "rpm" + ], + [ + "libsss_nss_idmap", + "2.9.6-4.el9_6.2", + "rpm" + ], + [ + "libsss_sudo", + "2.9.6-4.el9_6.2", + "rpm" + ], + [ + "libstdc++", + "11.5.0-5.el9_5.alma.1", + "rpm" + ], + [ + "libstemmer", + "0-18.585svn.el9", + "rpm" + ], + [ + "libstoragemgmt", + "1.10.1-1.el9", + "rpm" + ], + [ + "libsysfs", + "2.1.1-10.el9", + "rpm" + ], + [ + "libtalloc", + "2.4.2-1.el9", + "rpm" + ], + [ + "libtasn1", + "4.16.0-9.el9", + "rpm" + ], + [ + "libtdb", + "1.4.12-1.el9", + "rpm" + ], + [ + "libteam", + "1.31-16.el9_1", + "rpm" + ], + [ + "libtevent", + "0.16.1-1.el9", + "rpm" + ], + [ + "libthai", + "0.1.28-8.el9", + "rpm" + ], + [ + "libtheora", + "1:1.1.1-31.el9", + "rpm" + ], + [ + "libtiff", + "4.4.0-13.el9", + "rpm" + ], + [ + "libtirpc", + "1.3.3-9.el9", + "rpm" + ], + [ + "libtool-ltdl", + "2.4.6-46.el9", + "rpm" + ], + [ + "libtraceevent", + "1.5.3-3.el9", + "rpm" + ], + [ + "libtracker-sparql", + "3.1.2-3.el9_1", + "rpm" + ], + [ + "libudisks2", + "2.9.4-11.el9", + "rpm" + ], + [ + "libunistring", + "0.9.10-15.el9", + "rpm" + ], + [ + "liburing", + "2.5-1.el9", + "rpm" + ], + [ + "libusbx", + "1.0.26-1.el9", + "rpm" + ], + [ + "libuser", + "0.63-16.el9", + "rpm" + ], + [ + "libutempter", + "1.2.1-6.el9", + "rpm" + ], + [ + "libuuid", + "2.37.4-21.el9", + "rpm" + ], + [ + "libuv", + "1:1.42.0-2.el9_4", + "rpm" + ], + [ + "libv4l", + "1.20.0-5.el9", + "rpm" + ], + [ + "libva", + "2.22.0-1.el9", + "rpm" + ], + [ + "libverto", + "0.3.2-3.el9", + "rpm" + ], + [ + "libvorbis", + "1:1.3.7-5.el9", + "rpm" + ], + [ + "libvpx", + "1.9.0-8.el9_5", + "rpm" + ], + [ + "libwacom", + "1.12.1-3.el9_4", + "rpm" + ], + [ + "libwacom-data", + "1.12.1-3.el9_4", + "rpm" + ], + [ + "libwayland-client", + "1.21.0-1.el9", + "rpm" + ], + [ + "libwayland-cursor", + "1.21.0-1.el9", + "rpm" + ], + [ + "libwayland-egl", + "1.21.0-1.el9", + "rpm" + ], + [ + "libwayland-server", + "1.21.0-1.el9", + "rpm" + ], + [ + "libwbclient", + "4.21.3-3.el9", + "rpm" + ], + [ + "libwebp", + "1.2.0-8.el9_3", + "rpm" + ], + [ + "libwnck3", + "40.0-2.el9", + "rpm" + ], + [ + "libxcb", + "1.13.1-9.el9", + "rpm" + ], + [ + "libxcrypt", + "4.4.18-3.el9", + "rpm" + ], + [ + "libxcrypt-compat", + "4.4.18-3.el9", + "rpm" + ], + [ + "libxcvt", + "0.1.2-2.el9", + "rpm" + ], + [ + "libxkbcommon", + "1.0.3-4.el9", + "rpm" + ], + [ + "libxkbcommon-x11", + "1.0.3-4.el9", + "rpm" + ], + [ + "libxkbfile", + "1.1.0-8.el9", + "rpm" + ], + [ + "libxklavier", + "5.4-20.el9", + "rpm" + ], + [ + "libxml2", + "2.9.13-9.el9_6", + "rpm" + ], + [ + "libxmlb", + "0.3.10-1.el9", + "rpm" + ], + [ + "libxshmfence", + "1.3-10.el9", + "rpm" + ], + [ + "libxslt", + "1.1.34-13.el9_6", + "rpm" + ], + [ + "libyaml", + "0.2.5-7.el9", + "rpm" + ], + [ + "libzstd", + "1.5.5-1.el9", + "rpm" + ], + [ + "linux-firmware", + "20250314-151.el9_6", + "rpm" + ], + [ + "linux-firmware-whence", + "20250314-151.el9_6", + "rpm" + ], + [ + "llvm-libs", + "19.1.7-2.el9", + "rpm" + ], + [ + "lmdb-libs", + "0.9.29-3.el9", + "rpm" + ], + [ + "lockdev", + "1.0.4-0.37.20111007git.el9", + "rpm" + ], + [ + "logrotate", + "3.18.0-9.el9", + "rpm" + ], + [ + "lohit-assamese-fonts", + "2.91.5-13.el9", + "rpm" + ], + [ + "lohit-bengali-fonts", + "2.91.5-13.el9", + "rpm" + ], + [ + "lohit-devanagari-fonts", + "2.95.4-14.el9", + "rpm" + ], + [ + "lohit-gujarati-fonts", + "2.92.4-13.el9", + "rpm" + ], + [ + "lohit-kannada-fonts", + "2.5.4-12.el9", + "rpm" + ], + [ + "lohit-odia-fonts", + "2.91.2-13.el9", + "rpm" + ], + [ + "lohit-tamil-fonts", + "2.91.3-13.el9", + "rpm" + ], + [ + "lohit-telugu-fonts", + "2.5.5-12.el9", + "rpm" + ], + [ + "low-memory-monitor", + "2.1-4.el9", + "rpm" + ], + [ + "lshw", + "B.02.20-1.el9", + "rpm" + ], + [ + "lsof", + "4.94.0-3.el9", + "rpm" + ], + [ + "lsscsi", + "0.32-6.el9", + "rpm" + ], + [ + "lua-libs", + "5.4.4-4.el9", + "rpm" + ], + [ + "luksmeta", + "9-12.el9", + "rpm" + ], + [ + "lvm2", + "9:2.03.28-6.el9", + "rpm" + ], + [ + "lvm2-libs", + "9:2.03.28-6.el9", + "rpm" + ], + [ + "lz4-libs", + "1.9.3-5.el9", + "rpm" + ], + [ + "lzo", + "2.10-7.el9", + "rpm" + ], + [ + "mailcap", + "2.1.49-5.el9", + "rpm" + ], + [ + "mallard-rng", + "1.1.0-7.el9", + "rpm" + ], + [ + "man-db", + "2.9.3-7.el9", + "rpm" + ], + [ + "man-pages", + "6.04-2.el9", + "rpm" + ], + [ + "man-pages-overrides", + "9.0.0.0-1.el9", + "rpm" + ], + [ + "mcelog", + "3:201-1.el9", + "rpm" + ], + [ + "mdadm", + "4.3-4.el9_5", + "rpm" + ], + [ + "mesa-dri-drivers", + "24.2.8-2.el9_6.alma.1", + "rpm" + ], + [ + "mesa-filesystem", + "24.2.8-2.el9_6.alma.1", + "rpm" + ], + [ + "mesa-libEGL", + "24.2.8-2.el9_6.alma.1", + "rpm" + ], + [ + "mesa-libGL", + "24.2.8-2.el9_6.alma.1", + "rpm" + ], + [ + "mesa-libgbm", + "24.2.8-2.el9_6.alma.1", + "rpm" + ], + [ + "mesa-libglapi", + "24.2.8-2.el9_6.alma.1", + "rpm" + ], + [ + "mesa-libxatracker", + "24.2.8-2.el9_6.alma.1", + "rpm" + ], + [ + "mesa-vulkan-drivers", + "24.2.8-2.el9_6.alma.1", + "rpm" + ], + [ + "microcode_ctl", + "4:20250211-1.el9_6", + "rpm" + ], + [ + "mlocate", + "0.26-30.el9", + "rpm" + ], + [ + "mobile-broadband-provider-info", + "20210805-2.el9", + "rpm" + ], + [ + "mokutil", + "2:0.6.0-4.el9", + "rpm" + ], + [ + "mozilla-filesystem", + "1.9-30.el9", + "rpm" + ], + [ + "mpfr", + "4.1.0-7.el9", + "rpm" + ], + [ + "mpg123-libs", + "1.32.9-1.el9_5", + "rpm" + ], + [ + "mtdev", + "1.1.5-22.el9", + "rpm" + ], + [ + "mtr", + "2:0.94-6.el9_4", + "rpm" + ], + [ + "mutter", + "40.9-24.el9", + "rpm" + ], + [ + "nano", + "5.6.1-7.el9", + "rpm" + ], + [ + "nautilus", + "40.2-15.el9", + "rpm" + ], + [ + "nautilus-extensions", + "40.2-15.el9", + "rpm" + ], + [ + "ncurses", + "6.2-10.20210508.el9", + "rpm" + ], + [ + "ncurses-base", + "6.2-10.20210508.el9", + "rpm" + ], + [ + "ncurses-libs", + "6.2-10.20210508.el9", + "rpm" + ], + [ + "net-snmp-libs", + "1:5.9.1-17.el9", + "rpm" + ], + [ + "net-tools", + "2.0-0.64.20160912git.el9", + "rpm" + ], + [ + "netavark", + "2:1.14.1-1.el9_6", + "rpm" + ], + [ + "netronome-firmware", + "20250314-151.el9_6", + "rpm" + ], + [ + "nettle", + "3.10.1-1.el9", + "rpm" + ], + [ + "newt", + "0.52.21-11.el9", + "rpm" + ], + [ + "nftables", + "1:1.0.9-3.el9", + "rpm" + ], + [ + "nm-connection-editor", + "1.26.0-2.el9", + "rpm" + ], + [ + "nmap-ncat", + "3:7.92-3.el9", + "rpm" + ], + [ + "npth", + "1.6-8.el9", + "rpm" + ], + [ + "nspr", + "4.35.0-17.el9_2", + "rpm" + ], + [ + "nss", + "3.101.0-10.el9_2", + "rpm" + ], + [ + "nss-softokn", + "3.101.0-10.el9_2", + "rpm" + ], + [ + "nss-softokn-freebl", + "3.101.0-10.el9_2", + "rpm" + ], + [ + "nss-sysinit", + "3.101.0-10.el9_2", + "rpm" + ], + [ + "nss-util", + "3.101.0-10.el9_2", + "rpm" + ], + [ + "numactl-libs", + "2.0.19-1.el9", + "rpm" + ], + [ + "nvme-cli", + "2.11-5.el9", + "rpm" + ], + [ + "oniguruma", + "6.9.6-1.el9.6", + "rpm" + ], + [ + "open-vm-tools", + "12.5.0-1.el9", + "rpm" + ], + [ + "open-vm-tools-desktop", + "12.5.0-1.el9", + "rpm" + ], + [ + "openjpeg2", + "2.4.0-8.el9", + "rpm" + ], + [ + "openldap", + "2.6.8-4.el9", + "rpm" + ], + [ + "openldap-compat", + "2.6.8-4.el9", + "rpm" + ], + [ + "openssh", + "8.7p1-45.el9", + "rpm" + ], + [ + "openssh-clients", + "8.7p1-45.el9", + "rpm" + ], + [ + "openssh-server", + "8.7p1-45.el9", + "rpm" + ], + [ + "openssl", + "1:3.2.2-6.el9_5.1", + "rpm" + ], + [ + "openssl-libs", + "1:3.2.2-6.el9_5.1", + "rpm" + ], + [ + "opus", + "1.3.1-10.el9", + "rpm" + ], + [ + "orc", + "0.4.31-8.el9", + "rpm" + ], + [ + "orca", + "40.3-1.el9", + "rpm" + ], + [ + "os-prober", + "1.77-12.el9_5", + "rpm" + ], + [ + "osinfo-db", + "20250124-1.el9", + "rpm" + ], + [ + "osinfo-db-tools", + "1.10.0-1.el9", + "rpm" + ], + [ + "ostree", + "2025.1-1.el9", + "rpm" + ], + [ + "ostree-libs", + "2025.1-1.el9", + "rpm" + ], + [ + "p11-kit", + "0.25.3-3.el9_5", + "rpm" + ], + [ + "p11-kit-server", + "0.25.3-3.el9_5", + "rpm" + ], + [ + "p11-kit-trust", + "0.25.3-3.el9_5", + "rpm" + ], + [ + "paktype-naskh-basic-fonts", + "5.0-6.el9", + "rpm" + ], + [ + "pam", + "1.5.1-23.el9", + "rpm" + ], + [ + "pango", + "1.48.7-3.el9", + "rpm" + ], + [ + "pangomm", + "2.46.1-1.el9", + "rpm" + ], + [ + "paps", + "0.7.1-4.el9", + "rpm" + ], + [ + "parted", + "3.5-3.el9", + "rpm" + ], + [ + "passt", + "0^20250217.ga1e48a0-1.el9", + "rpm" + ], + [ + "passt-selinux", + "0^20250217.ga1e48a0-1.el9", + "rpm" + ], + [ + "passwd", + "0.80-12.el9", + "rpm" + ], + [ + "pcaudiolib", + "1.1-9.el9", + "rpm" + ], + [ + "pciutils", + "3.7.0-7.el9", + "rpm" + ], + [ + "pciutils-libs", + "3.7.0-7.el9", + "rpm" + ], + [ + "pcre", + "8.44-4.el9", + "rpm" + ], + [ + "pcre2", + "10.40-6.el9", + "rpm" + ], + [ + "pcre2-syntax", + "10.40-6.el9", + "rpm" + ], + [ + "pcre2-utf32", + "10.40-6.el9", + "rpm" + ], + [ + "pe-ace-server", + "2025.1.0.0.12.gf7d4ecd-1.el9", + "rpm" + ], + [ + "pe-backup-tools", + "2025.3.0.0-1.el9", + "rpm" + ], + [ + "pe-bolt-server", + "2025.3.0.0-1.el9", + "rpm" + ], + [ + "pe-bouncy-castle-jars", + "3.0.0-1.el9", + "rpm" + ], + [ + "pe-builtin-bolt-content", + "2025.3.0.0-1.el9", + "rpm" + ], + [ + "pe-client-tools", + "25.3.0-1.el9", + "rpm" + ], + [ + "pe-console-services", + "2025.3.0.39-1.el9", + "rpm" + ], + [ + "pe-console-services-termini", + "2025.3.0.39-1.el9", + "rpm" + ], + [ + "pe-host-action-collector", + "2025.3.0.9-1.el9", + "rpm" + ], + [ + "pe-infra-assistant", + "2025.3.0.33-1.el9", + "rpm" + ], + [ + "pe-installer", + "2025.3.0.0-1.el9", + "rpm" + ], + [ + "pe-java17", + "2025.3.17.0.15.6-2.pe.el9", + "rpm" + ], + [ + "pe-license", + "2025.2.2.0.0-2.b1.pe.el9", + "rpm" + ], + [ + "pe-modules", + "2025.3.0.0-1.el9", + "rpm" + ], + [ + "pe-nginx", + "2025.3.1.26.3-2.pe.el9", + "rpm" + ], + [ + "pe-orchestration-services", + "2025.3.0.7-1.el9", + "rpm" + ], + [ + "pe-patching-service", + "2025.3.0.15-1.el9", + "rpm" + ], + [ + "pe-postgresql-common", + "2025.2-2.pe.el9", + "rpm" + ], + [ + "pe-postgresql14", + "2025.2.14.16-1.pe.el9", + "rpm" + ], + [ + "pe-postgresql14-contrib", + "2025.2.14.16-1.pe.el9", + "rpm" + ], + [ + "pe-postgresql14-pglogical", + "2025.2.2.4.5-2.pe.el9", + "rpm" + ], + [ + "pe-postgresql14-pgrepack", + "2025.2.1.5.2-1.pe.el9", + "rpm" + ], + [ + "pe-postgresql14-server", + "2025.2.14.16-1.pe.el9", + "rpm" + ], + [ + "pe-puppet-enterprise-release", + "2025.3.0.0-2.pe.el9", + "rpm" + ], + [ + "pe-puppetdb", + "2025.2.0.9-1.el9", + "rpm" + ], + [ + "pe-puppetdb-termini", + "2025.2.0.9-1.el9", + "rpm" + ], + [ + "pe-puppetserver", + "2025.3.0.5-1.el9", + "rpm" + ], + [ + "pe-r10k", + "2025.3.5.0.0-1.el9", + "rpm" + ], + [ + "pe-tasks", + "2025.3.0.0-1.el9", + "rpm" + ], + [ + "perl-AutoLoader", + "5.74-481.el9", + "rpm" + ], + [ + "perl-B", + "1.80-481.el9", + "rpm" + ], + [ + "perl-Carp", + "1.50-460.el9", + "rpm" + ], + [ + "perl-Class-Struct", + "0.66-481.el9", + "rpm" + ], + [ + "perl-DBD-SQLite", + "1.66-5.el9", + "rpm" + ], + [ + "perl-DBI", + "1.643-9.el9", + "rpm" + ], + [ + "perl-Data-Dumper", + "2.174-462.el9", + "rpm" + ], + [ + "perl-Digest", + "1.19-4.el9", + "rpm" + ], + [ + "perl-Digest-MD5", + "2.58-4.el9", + "rpm" + ], + [ + "perl-DynaLoader", + "1.47-481.el9", + "rpm" + ], + [ + "perl-Encode", + "4:3.08-462.el9", + "rpm" + ], + [ + "perl-Errno", + "1.30-481.el9", + "rpm" + ], + [ + "perl-Error", + "1:0.17029-7.el9", + "rpm" + ], + [ + "perl-Exporter", + "5.74-461.el9", + "rpm" + ], + [ + "perl-Fcntl", + "1.13-481.el9", + "rpm" + ], + [ + "perl-File-Basename", + "2.85-481.el9", + "rpm" + ], + [ + "perl-File-Find", + "1.37-481.el9", + "rpm" + ], + [ + "perl-File-Path", + "2.18-4.el9", + "rpm" + ], + [ + "perl-File-Temp", + "1:0.231.100-4.el9", + "rpm" + ], + [ + "perl-File-stat", + "1.09-481.el9", + "rpm" + ], + [ + "perl-FileHandle", + "2.03-481.el9", + "rpm" + ], + [ + "perl-Getopt-Long", + "1:2.52-4.el9", + "rpm" + ], + [ + "perl-Getopt-Std", + "1.12-481.el9", + "rpm" + ], + [ + "perl-Git", + "2.47.1-2.el9_6", + "rpm" + ], + [ + "perl-HTTP-Tiny", + "0.076-462.el9", + "rpm" + ], + [ + "perl-IO", + "1.43-481.el9", + "rpm" + ], + [ + "perl-IO-Socket-IP", + "0.41-5.el9", + "rpm" + ], + [ + "perl-IO-Socket-SSL", + "2.073-2.el9", + "rpm" + ], + [ + "perl-IPC-Open3", + "1.21-481.el9", + "rpm" + ], + [ + "perl-MIME-Base64", + "3.16-4.el9", + "rpm" + ], + [ + "perl-Math-BigInt", + "1:1.9998.18-460.el9", + "rpm" + ], + [ + "perl-Math-Complex", + "1.59-481.el9", + "rpm" + ], + [ + "perl-Mozilla-CA", + "20200520-6.el9", + "rpm" + ], + [ + "perl-NDBM_File", + "1.15-481.el9", + "rpm" + ], + [ + "perl-Net-SSLeay", + "1.94-1.el9", + "rpm" + ], + [ + "perl-POSIX", + "1.94-481.el9", + "rpm" + ], + [ + "perl-PathTools", + "3.78-461.el9", + "rpm" + ], + [ + "perl-Pod-Escapes", + "1:1.07-460.el9", + "rpm" + ], + [ + "perl-Pod-Perldoc", + "3.28.01-461.el9", + "rpm" + ], + [ + "perl-Pod-Simple", + "1:3.42-4.el9", + "rpm" + ], + [ + "perl-Pod-Usage", + "4:2.01-4.el9", + "rpm" + ], + [ + "perl-Scalar-List-Utils", + "4:1.56-462.el9", + "rpm" + ], + [ + "perl-SelectSaver", + "1.02-481.el9", + "rpm" + ], + [ + "perl-Socket", + "4:2.031-4.el9", + "rpm" + ], + [ + "perl-Storable", + "1:3.21-460.el9", + "rpm" + ], + [ + "perl-Symbol", + "1.08-481.el9", + "rpm" + ], + [ + "perl-Term-ANSIColor", + "5.01-461.el9", + "rpm" + ], + [ + "perl-Term-Cap", + "1.17-460.el9", + "rpm" + ], + [ + "perl-TermReadKey", + "2.38-11.el9", + "rpm" + ], + [ + "perl-Text-ParseWords", + "3.30-460.el9", + "rpm" + ], + [ + "perl-Text-Tabs+Wrap", + "2013.0523-460.el9", + "rpm" + ], + [ + "perl-Time-Local", + "2:1.300-7.el9", + "rpm" + ], + [ + "perl-URI", + "5.09-3.el9", + "rpm" + ], + [ + "perl-base", + "2.27-481.el9", + "rpm" + ], + [ + "perl-constant", + "1.33-461.el9", + "rpm" + ], + [ + "perl-if", + "0.60.800-481.el9", + "rpm" + ], + [ + "perl-interpreter", + "4:5.32.1-481.el9", + "rpm" + ], + [ + "perl-lib", + "0.65-481.el9", + "rpm" + ], + [ + "perl-libnet", + "3.13-4.el9", + "rpm" + ], + [ + "perl-libs", + "4:5.32.1-481.el9", + "rpm" + ], + [ + "perl-locale", + "1.09-481.el9", + "rpm" + ], + [ + "perl-mro", + "1.23-481.el9", + "rpm" + ], + [ + "perl-overload", + "1.31-481.el9", + "rpm" + ], + [ + "perl-overloading", + "0.02-481.el9", + "rpm" + ], + [ + "perl-parent", + "1:0.238-460.el9", + "rpm" + ], + [ + "perl-podlators", + "1:4.14-460.el9", + "rpm" + ], + [ + "perl-subs", + "1.03-481.el9", + "rpm" + ], + [ + "perl-vars", + "1.05-481.el9", + "rpm" + ], + [ + "pigz", + "2.8-1.el9", + "rpm" + ], + [ + "pinentry", + "1.1.1-8.el9", + "rpm" + ], + [ + "pinentry-gnome3", + "1.1.1-8.el9", + "rpm" + ], + [ + "pinfo", + "0.6.10-29.el9", + "rpm" + ], + [ + "pipewire", + "1.0.1-1.el9", + "rpm" + ], + [ + "pipewire-alsa", + "1.0.1-1.el9", + "rpm" + ], + [ + "pipewire-gstreamer", + "1.0.1-1.el9", + "rpm" + ], + [ + "pipewire-jack-audio-connection-kit", + "1.0.1-1.el9", + "rpm" + ], + [ + "pipewire-jack-audio-connection-kit-libs", + "1.0.1-1.el9", + "rpm" + ], + [ + "pipewire-libs", + "1.0.1-1.el9", + "rpm" + ], + [ + "pipewire-pulseaudio", + "1.0.1-1.el9", + "rpm" + ], + [ + "pipewire-utils", + "1.0.1-1.el9", + "rpm" + ], + [ + "pixman", + "0.40.0-6.el9_3", + "rpm" + ], + [ + "pkgconf", + "1.7.3-10.el9", + "rpm" + ], + [ + "pkgconf-m4", + "1.7.3-10.el9", + "rpm" + ], + [ + "pkgconf-pkg-config", + "1.7.3-10.el9", + "rpm" + ], + [ + "plymouth", + "0.9.5-7.20210331git1ea1020.el9", + "rpm" + ], + [ + "plymouth-core-libs", + "0.9.5-7.20210331git1ea1020.el9", + "rpm" + ], + [ + "plymouth-graphics-libs", + "0.9.5-7.20210331git1ea1020.el9", + "rpm" + ], + [ + "plymouth-plugin-label", + "0.9.5-7.20210331git1ea1020.el9", + "rpm" + ], + [ + "plymouth-plugin-two-step", + "0.9.5-7.20210331git1ea1020.el9", + "rpm" + ], + [ + "plymouth-scripts", + "0.9.5-7.20210331git1ea1020.el9", + "rpm" + ], + [ + "plymouth-system-theme", + "0.9.5-7.20210331git1ea1020.el9", + "rpm" + ], + [ + "plymouth-theme-spinner", + "0.9.5-7.20210331git1ea1020.el9", + "rpm" + ], + [ + "pnm2ppa", + "1:1.04-52.el9", + "rpm" + ], + [ + "podman", + "5:5.4.0-9.el9_6", + "rpm" + ], + [ + "policycoreutils", + "3.6-2.1.el9", + "rpm" + ], + [ + "policycoreutils-python-utils", + "3.6-2.1.el9", + "rpm" + ], + [ + "polkit", + "0.117-13.el9", + "rpm" + ], + [ + "polkit-libs", + "0.117-13.el9", + "rpm" + ], + [ + "polkit-pkla-compat", + "0.1-21.el9", + "rpm" + ], + [ + "poppler", + "21.01.0-21.el9", + "rpm" + ], + [ + "poppler-cpp", + "21.01.0-21.el9", + "rpm" + ], + [ + "poppler-data", + "0.4.9-9.el9", + "rpm" + ], + [ + "poppler-glib", + "21.01.0-21.el9", + "rpm" + ], + [ + "poppler-utils", + "21.01.0-21.el9", + "rpm" + ], + [ + "popt", + "1.18-8.el9", + "rpm" + ], + [ + "prefixdevname", + "0.1.0-8.el9", + "rpm" + ], + [ + "procps-ng", + "3.3.17-14.el9", + "rpm" + ], + [ + "protobuf-c", + "1.3.3-13.el9", + "rpm" + ], + [ + "psacct", + "6.6.4-12.el9", + "rpm" + ], + [ + "psmisc", + "23.4-3.el9", + "rpm" + ], + [ + "pt-sans-fonts", + "20141121-23.el9", + "rpm" + ], + [ + "publicsuffix-list-dafsa", + "20210518-3.el9", + "rpm" + ], + [ + "pulseaudio-libs", + "15.0-3.el9", + "rpm" + ], + [ + "pulseaudio-libs-glib2", + "15.0-3.el9", + "rpm" + ], + [ + "puppet-agent", + "8.12.0-1.el9", + "rpm" + ], + [ + "puppet-bolt", + "4.0.0-1.el9", + "rpm" + ], + [ + "puppet-tools-release", + "1.0.0-19.el9", + "rpm" + ], + [ + "python-unversioned-command", + "3.9.21-2.el9", + "rpm" + ], + [ + "python3", + "3.9.21-2.el9", + "rpm" + ], + [ + "python3-audit", + "3.1.5-4.el9", + "rpm" + ], + [ + "python3-brlapi", + "0.8.2-4.el9", + "rpm" + ], + [ + "python3-cairo", + "1.20.1-1.el9", + "rpm" + ], + [ + "python3-chardet", + "4.0.0-5.el9", + "rpm" + ], + [ + "python3-cups", + "2.0.1-10.el9", + "rpm" + ], + [ + "python3-dasbus", + "1.4-5.el9", + "rpm" + ], + [ + "python3-dateutil", + "1:2.8.1-7.el9", + "rpm" + ], + [ + "python3-dbus", + "1.2.18-2.el9", + "rpm" + ], + [ + "python3-distro", + "1.5.0-7.el9", + "rpm" + ], + [ + "python3-dnf", + "4.14.0-25.el9.alma.1", + "rpm" + ], + [ + "python3-dnf-plugins-core", + "4.3.0-20.el9", + "rpm" + ], + [ + "python3-file-magic", + "5.39-16.el9", + "rpm" + ], + [ + "python3-firewall", + "1.3.4-9.el9_5", + "rpm" + ], + [ + "python3-gobject", + "3.40.1-6.el9", + "rpm" + ], + [ + "python3-gobject-base", + "3.40.1-6.el9", + "rpm" + ], + [ + "python3-gobject-base-noarch", + "3.40.1-6.el9", + "rpm" + ], + [ + "python3-gpg", + "1.15.1-6.el9", + "rpm" + ], + [ + "python3-hawkey", + "0.69.0-13.el9.alma.1", + "rpm" + ], + [ + "python3-idna", + "2.10-7.el9_4.1", + "rpm" + ], + [ + "python3-inotify", + "0.9.6-25.el9", + "rpm" + ], + [ + "python3-libcomps", + "0.1.18-1.el9", + "rpm" + ], + [ + "python3-libdnf", + "0.69.0-13.el9.alma.1", + "rpm" + ], + [ + "python3-libs", + "3.9.21-2.el9", + "rpm" + ], + [ + "python3-libselinux", + "3.6-3.el9", + "rpm" + ], + [ + "python3-libsemanage", + "3.6-5.el9_6", + "rpm" + ], + [ + "python3-libstoragemgmt", + "1.10.1-1.el9", + "rpm" + ], + [ + "python3-libxml2", + "2.9.13-9.el9_6", + "rpm" + ], + [ + "python3-linux-procfs", + "0.7.3-1.el9", + "rpm" + ], + [ + "python3-louis", + "3.16.1-5.el9", + "rpm" + ], + [ + "python3-lxml", + "4.6.5-3.el9", + "rpm" + ], + [ + "python3-nftables", + "1:1.0.9-3.el9", + "rpm" + ], + [ + "python3-perf", + "5.14.0-570.12.1.el9_6", + "rpm" + ], + [ + "python3-pexpect", + "4.8.0-7.el9", + "rpm" + ], + [ + "python3-pip-wheel", + "21.3.1-1.el9", + "rpm" + ], + [ + "python3-policycoreutils", + "3.6-2.1.el9", + "rpm" + ], + [ + "python3-psutil", + "5.8.0-12.el9", + "rpm" + ], + [ + "python3-ptyprocess", + "0.6.0-12.el9", + "rpm" + ], + [ + "python3-pyatspi", + "2.38.1-3.el9", + "rpm" + ], + [ + "python3-pycurl", + "7.43.0.6-8.el9", + "rpm" + ], + [ + "python3-pysocks", + "1.7.1-12.el9", + "rpm" + ], + [ + "python3-pyudev", + "0.22.0-6.el9", + "rpm" + ], + [ + "python3-pyyaml", + "5.4.1-6.el9", + "rpm" + ], + [ + "python3-requests", + "2.25.1-9.el9", + "rpm" + ], + [ + "python3-rpm", + "4.16.1.3-37.el9", + "rpm" + ], + [ + "python3-setools", + "4.4.4-1.el9", + "rpm" + ], + [ + "python3-setuptools", + "53.0.0-13.el9", + "rpm" + ], + [ + "python3-setuptools-wheel", + "53.0.0-13.el9", + "rpm" + ], + [ + "python3-six", + "1.15.0-9.el9", + "rpm" + ], + [ + "python3-speechd", + "0.10.2-4.el9", + "rpm" + ], + [ + "python3-systemd", + "234-19.el9", + "rpm" + ], + [ + "python3-tracer", + "1.1-2.el9", + "rpm" + ], + [ + "python3-urllib3", + "1.26.5-6.el9", + "rpm" + ], + [ + "qemu-guest-agent", + "17:9.1.0-15.el9.alma.2", + "rpm" + ], + [ + "qpdf-libs", + "10.3.1-7.el9", + "rpm" + ], + [ + "quota", + "1:4.09-4.el9", + "rpm" + ], + [ + "quota-nls", + "1:4.09-4.el9", + "rpm" + ], + [ + "rasdaemon", + "0.6.7-18.el9", + "rpm" + ], + [ + "readline", + "8.1-4.el9", + "rpm" + ], + [ + "realmd", + "0.17.1-2.el9", + "rpm" + ], + [ + "rest", + "0.8.1-11.el9", + "rpm" + ], + [ + "rootfiles", + "8.1-34.el9", + "rpm" + ], + [ + "rpm", + "4.16.1.3-37.el9", + "rpm" + ], + [ + "rpm-build-libs", + "4.16.1.3-37.el9", + "rpm" + ], + [ + "rpm-libs", + "4.16.1.3-37.el9", + "rpm" + ], + [ + "rpm-plugin-audit", + "4.16.1.3-37.el9", + "rpm" + ], + [ + "rpm-plugin-selinux", + "4.16.1.3-37.el9", + "rpm" + ], + [ + "rpm-plugin-systemd-inhibit", + "4.16.1.3-37.el9", + "rpm" + ], + [ + "rpm-sign-libs", + "4.16.1.3-37.el9", + "rpm" + ], + [ + "rsync", + "3.2.5-3.el9", + "rpm" + ], + [ + "rsyslog", + "8.2412.0-1.el9", + "rpm" + ], + [ + "rsyslog-gnutls", + "8.2412.0-1.el9", + "rpm" + ], + [ + "rsyslog-gssapi", + "8.2412.0-1.el9", + "rpm" + ], + [ + "rsyslog-logrotate", + "8.2412.0-1.el9", + "rpm" + ], + [ + "rsyslog-relp", + "8.2412.0-1.el9", + "rpm" + ], + [ + "rtkit", + "0.11-29.el9", + "rpm" + ], + [ + "samba-client-libs", + "4.21.3-3.el9", + "rpm" + ], + [ + "samba-common", + "4.21.3-3.el9", + "rpm" + ], + [ + "samba-common-libs", + "4.21.3-3.el9", + "rpm" + ], + [ + "sane-airscan", + "0.99.24-3.el9", + "rpm" + ], + [ + "sane-backends", + "1.0.32-7.el9", + "rpm" + ], + [ + "sane-backends-drivers-cameras", + "1.0.32-7.el9", + "rpm" + ], + [ + "sane-backends-drivers-scanners", + "1.0.32-7.el9", + "rpm" + ], + [ + "sane-backends-libs", + "1.0.32-7.el9", + "rpm" + ], + [ + "sed", + "4.8-9.el9", + "rpm" + ], + [ + "selinux-policy", + "38.1.53-5.el9_6", + "rpm" + ], + [ + "selinux-policy-targeted", + "38.1.53-5.el9_6", + "rpm" + ], + [ + "setroubleshoot-plugins", + "3.3.14-4.el9", + "rpm" + ], + [ + "setroubleshoot-server", + "3.3.32-1.el9", + "rpm" + ], + [ + "setup", + "2.13.7-10.el9", + "rpm" + ], + [ + "setxkbmap", + "1.3.2-5.el9", + "rpm" + ], + [ + "sg3_utils", + "1.47-10.el9", + "rpm" + ], + [ + "sg3_utils-libs", + "1.47-10.el9", + "rpm" + ], + [ + "shadow-utils", + "2:4.9-12.el9", + "rpm" + ], + [ + "shadow-utils-subid", + "2:4.9-12.el9", + "rpm" + ], + [ + "shared-mime-info", + "2.1-5.el9", + "rpm" + ], + [ + "shim-x64", + "15.8-4.el9_3.alma.2", + "rpm" + ], + [ + "sil-abyssinica-fonts", + "1.200-23.el9", + "rpm" + ], + [ + "sil-nuosu-fonts", + "2.200-4.el9", + "rpm" + ], + [ + "sil-padauk-fonts", + "3.003-9.el9", + "rpm" + ], + [ + "slang", + "2.3.2-11.el9", + "rpm" + ], + [ + "slirp4netns", + "1.3.2-1.el9", + "rpm" + ], + [ + "smartmontools", + "1:7.2-9.el9", + "rpm" + ], + [ + "smc-meera-fonts", + "7.0.3-5.el9", + "rpm" + ], + [ + "snappy", + "1.1.8-8.el9", + "rpm" + ], + [ + "sos", + "4.8.2-2.el9_5", + "rpm" + ], + [ + "sound-theme-freedesktop", + "0.8-17.el9", + "rpm" + ], + [ + "soundtouch", + "2.1.1-8.el9", + "rpm" + ], + [ + "speech-dispatcher", + "0.10.2-4.el9", + "rpm" + ], + [ + "speech-dispatcher-espeak-ng", + "0.10.2-4.el9", + "rpm" + ], + [ + "speex", + "1.2.0-11.el9", + "rpm" + ], + [ + "spice-vdagent", + "0.21.0-5.el9", + "rpm" + ], + [ + "sqlite-libs", + "3.34.1-7.el9_3", + "rpm" + ], + [ + "squashfs-tools", + "4.4-10.git1.el9", + "rpm" + ], + [ + "sscg", + "3.0.0-7.el9", + "rpm" + ], + [ + "sssd", + "2.9.6-4.el9_6.2", + "rpm" + ], + [ + "sssd-ad", + "2.9.6-4.el9_6.2", + "rpm" + ], + [ + "sssd-client", + "2.9.6-4.el9_6.2", + "rpm" + ], + [ + "sssd-common", + "2.9.6-4.el9_6.2", + "rpm" + ], + [ + "sssd-common-pac", + "2.9.6-4.el9_6.2", + "rpm" + ], + [ + "sssd-ipa", + "2.9.6-4.el9_6.2", + "rpm" + ], + [ + "sssd-kcm", + "2.9.6-4.el9_6.2", + "rpm" + ], + [ + "sssd-krb5", + "2.9.6-4.el9_6.2", + "rpm" + ], + [ + "sssd-krb5-common", + "2.9.6-4.el9_6.2", + "rpm" + ], + [ + "sssd-ldap", + "2.9.6-4.el9_6.2", + "rpm" + ], + [ + "sssd-proxy", + "2.9.6-4.el9_6.2", + "rpm" + ], + [ + "startup-notification", + "0.12-23.el9", + "rpm" + ], + [ + "stix-fonts", + "2.0.2-11.el9", + "rpm" + ], + [ + "strace", + "6.12-1.el9", + "rpm" + ], + [ + "sudo", + "1.9.5p2-10.el9_3", + "rpm" + ], + [ + "sushi", + "3.38.1-2.el9_4.1", + "rpm" + ], + [ + "switcheroo-control", + "2.4-4.el9", + "rpm" + ], + [ + "symlinks", + "1.7-6.el9", + "rpm" + ], + [ + "system-config-printer-libs", + "1.5.15-4.el9", + "rpm" + ], + [ + "system-config-printer-udev", + "1.5.15-4.el9", + "rpm" + ], + [ + "systemd", + "252-51.el9.alma.1", + "rpm" + ], + [ + "systemd-libs", + "252-51.el9.alma.1", + "rpm" + ], + [ + "systemd-pam", + "252-51.el9.alma.1", + "rpm" + ], + [ + "systemd-rpm-macros", + "252-51.el9.alma.1", + "rpm" + ], + [ + "systemd-udev", + "252-51.el9.alma.1", + "rpm" + ], + [ + "taglib", + "1.12-6.el9", + "rpm" + ], + [ + "tailscale", + "1.84.0-1", + "rpm" + ], + [ + "tar", + "2:1.34-7.el9", + "rpm" + ], + [ + "tcl", + "1:8.6.10-7.el9", + "rpm" + ], + [ + "tcpdump", + "14:4.99.0-9.el9", + "rpm" + ], + [ + "teamd", + "1.31-16.el9_1", + "rpm" + ], + [ + "texlive-lib", + "9:20200406-26.el9_2", + "rpm" + ], + [ + "thai-scalable-fonts-common", + "0.7.2-5.el9", + "rpm" + ], + [ + "thai-scalable-waree-fonts", + "0.7.2-5.el9", + "rpm" + ], + [ + "time", + "1.9-18.el9", + "rpm" + ], + [ + "totem", + "1:3.38.2-2.el9", + "rpm" + ], + [ + "totem-pl-parser", + "3.26.6-2.el9", + "rpm" + ], + [ + "totem-video-thumbnailer", + "1:3.38.2-2.el9", + "rpm" + ], + [ + "tpm2-tools", + "5.2-4.el9", + "rpm" + ], + [ + "tpm2-tss", + "3.2.3-1.el9", + "rpm" + ], + [ + "tracer-common", + "1.1-2.el9", + "rpm" + ], + [ + "tracker", + "3.1.2-3.el9_1", + "rpm" + ], + [ + "tracker-miners", + "3.1.2-4.el9_3", + "rpm" + ], + [ + "tree", + "1.8.0-10.el9", + "rpm" + ], + [ + "tuned", + "2.25.1-1.el9", + "rpm" + ], + [ + "tuned-ppd", + "2.25.1-1.el9", + "rpm" + ], + [ + "twolame-libs", + "0.3.13-19.el9", + "rpm" + ], + [ + "tzdata", + "2025b-1.el9", + "rpm" + ], + [ + "udisks2", + "2.9.4-11.el9", + "rpm" + ], + [ + "udisks2-iscsi", + "2.9.4-11.el9", + "rpm" + ], + [ + "udisks2-lvm2", + "2.9.4-11.el9", + "rpm" + ], + [ + "unzip", + "6.0-58.el9_5", + "rpm" + ], + [ + "upower", + "0.99.13-2.el9", + "rpm" + ], + [ + "urw-base35-bookman-fonts", + "20200910-6.el9", + "rpm" + ], + [ + "urw-base35-c059-fonts", + "20200910-6.el9", + "rpm" + ], + [ + "urw-base35-d050000l-fonts", + "20200910-6.el9", + "rpm" + ], + [ + "urw-base35-fonts", + "20200910-6.el9", + "rpm" + ], + [ + "urw-base35-fonts-common", + "20200910-6.el9", + "rpm" + ], + [ + "urw-base35-gothic-fonts", + "20200910-6.el9", + "rpm" + ], + [ + "urw-base35-nimbus-mono-ps-fonts", + "20200910-6.el9", + "rpm" + ], + [ + "urw-base35-nimbus-roman-fonts", + "20200910-6.el9", + "rpm" + ], + [ + "urw-base35-nimbus-sans-fonts", + "20200910-6.el9", + "rpm" + ], + [ + "urw-base35-p052-fonts", + "20200910-6.el9", + "rpm" + ], + [ + "urw-base35-standard-symbols-ps-fonts", + "20200910-6.el9", + "rpm" + ], + [ + "urw-base35-z003-fonts", + "20200910-6.el9", + "rpm" + ], + [ + "usb_modeswitch", + "2.6.1-4.el9", + "rpm" + ], + [ + "usb_modeswitch-data", + "20191128-6.el9", + "rpm" + ], + [ + "usbutils", + "017-1.el9", + "rpm" + ], + [ + "userspace-rcu", + "0.12.1-6.el9", + "rpm" + ], + [ + "util-linux", + "2.37.4-21.el9", + "rpm" + ], + [ + "util-linux-core", + "2.37.4-21.el9", + "rpm" + ], + [ + "util-linux-user", + "2.37.4-21.el9", + "rpm" + ], + [ + "vdo", + "8.2.2.2-1.el9", + "rpm" + ], + [ + "vim-common", + "2:8.2.2637-22.el9_6", + "rpm" + ], + [ + "vim-enhanced", + "2:8.2.2637-22.el9_6", + "rpm" + ], + [ + "vim-filesystem", + "2:8.2.2637-22.el9_6", + "rpm" + ], + [ + "vim-minimal", + "2:8.2.2637-22.el9_6", + "rpm" + ], + [ + "virt-what", + "1.27-1.el9", + "rpm" + ], + [ + "volume_key-libs", + "0.3.12-16.el9", + "rpm" + ], + [ + "vte-profile", + "0.64.2-2.el9", + "rpm" + ], + [ + "vte291", + "0.64.2-2.el9", + "rpm" + ], + [ + "vulkan-loader", + "1.4.304.0-1.el9", + "rpm" + ], + [ + "wavpack", + "5.4.0-5.el9", + "rpm" + ], + [ + "webkit2gtk3", + "2.48.1-1.el9_6", + "rpm" + ], + [ + "webkit2gtk3-jsc", + "2.48.1-1.el9_6", + "rpm" + ], + [ + "webrtc-audio-processing", + "0.3.1-8.el9", + "rpm" + ], + [ + "wget", + "1.21.1-8.el9_4", + "rpm" + ], + [ + "which", + "2.21-29.el9", + "rpm" + ], + [ + "wireless-regdb", + "2024.01.23-1.el9", + "rpm" + ], + [ + "wireplumber", + "0.4.14-1.el9", + "rpm" + ], + [ + "wireplumber-libs", + "0.4.14-1.el9", + "rpm" + ], + [ + "woff2", + "1.0.2-15.el9", + "rpm" + ], + [ + "words", + "3.0-39.el9", + "rpm" + ], + [ + "wpa_supplicant", + "1:2.11-2.el9", + "rpm" + ], + [ + "xcb-util", + "0.4.0-19.el9", + "rpm" + ], + [ + "xdg-dbus-proxy", + "0.1.3-1.el9", + "rpm" + ], + [ + "xdg-desktop-portal", + "1.12.6-1.el9", + "rpm" + ], + [ + "xdg-desktop-portal-gnome", + "41.2-3.el9", + "rpm" + ], + [ + "xdg-desktop-portal-gtk", + "1.12.0-3.el9", + "rpm" + ], + [ + "xdg-user-dirs", + "0.17-10.el9", + "rpm" + ], + [ + "xdg-user-dirs-gtk", + "0.10-22.el9", + "rpm" + ], + [ + "xdg-utils", + "1.1.3-11.el9", + "rpm" + ], + [ + "xfsdump", + "3.1.12-4.el9_3", + "rpm" + ], + [ + "xfsprogs", + "6.4.0-5.el9", + "rpm" + ], + [ + "xkbcomp", + "1.4.4-4.el9", + "rpm" + ], + [ + "xkeyboard-config", + "2.33-2.el9", + "rpm" + ], + [ + "xml-common", + "0.6.3-58.el9", + "rpm" + ], + [ + "xmlsec1", + "1.2.29-13.el9", + "rpm" + ], + [ + "xmlsec1-openssl", + "1.2.29-13.el9", + "rpm" + ], + [ + "xorg-x11-drv-evdev", + "2.10.6-12.el9", + "rpm" + ], + [ + "xorg-x11-drv-fbdev", + "0.5.0-11.el9", + "rpm" + ], + [ + "xorg-x11-drv-libinput", + "1.0.1-4.el9_6", + "rpm" + ], + [ + "xorg-x11-drv-vmware", + "13.2.1-18.el9", + "rpm" + ], + [ + "xorg-x11-drv-wacom", + "1.0.0-1.el9", + "rpm" + ], + [ + "xorg-x11-drv-wacom-serial-support", + "1.0.0-1.el9", + "rpm" + ], + [ + "xorg-x11-server-Xorg", + "1.20.11-28.el9_6", + "rpm" + ], + [ + "xorg-x11-server-Xwayland", + "23.2.7-3.el9_6", + "rpm" + ], + [ + "xorg-x11-server-common", + "1.20.11-28.el9_6", + "rpm" + ], + [ + "xorg-x11-server-utils", + "7.7-44.el9", + "rpm" + ], + [ + "xorg-x11-utils", + "7.5-40.el9", + "rpm" + ], + [ + "xorg-x11-xauth", + "1:1.1-10.el9", + "rpm" + ], + [ + "xorg-x11-xinit", + "1.4.0-11.el9", + "rpm" + ], + [ + "xorg-x11-xinit-session", + "1.4.0-11.el9", + "rpm" + ], + [ + "xz", + "5.2.5-8.el9_0", + "rpm" + ], + [ + "xz-libs", + "5.2.5-8.el9_0", + "rpm" + ], + [ + "yajl", + "2.1.0-25.el9", + "rpm" + ], + [ + "yelp", + "2:40.3-2.el9_6.1", + "rpm" + ], + [ + "yelp-libs", + "2:40.3-2.el9_6.1", + "rpm" + ], + [ + "yelp-tools", + "40.0-3.el9", + "rpm" + ], + [ + "yelp-xsl", + "40.2-1.el9", + "rpm" + ], + [ + "yum", + "4.14.0-25.el9.alma.1", + "rpm" + ], + [ + "zenity", + "3.32.0-8.el9", + "rpm" + ], + [ + "zip", + "3.0-35.el9", + "rpm" + ], + [ + "zlib", + "1.2.11-40.el9", + "rpm" + ], + [ + "abbrev", + "0.1.1", + "puppet_gem" + ], + [ + "base64", + "0.1.1", + "puppet_gem" + ], + [ + "benchmark", + "0.2.1", + "puppet_gem" + ], + [ + "bigdecimal", + "3.1.3", + "puppet_gem" + ], + [ + "bundler", + "2.4.19", + "puppet_gem" + ], + [ + "cgi", + "0.3.7", + "puppet_gem" + ], + [ + "colored2", + "4.0.0", + "puppet_gem" + ], + [ + "concurrent-ruby", + "1.3.5", + "puppet_gem" + ], + [ + "cri", + "2.15.12", + "puppet_gem" + ], + [ + "csv", + "3.2.6", + "puppet_gem" + ], + [ + "date", + "3.3.3", + "puppet_gem" + ], + [ + "debug", + "1.7.1", + "puppet_gem" + ], + [ + "deep_merge", + "1.2.2", + "puppet_gem" + ], + [ + "delegate", + "0.3.0", + "puppet_gem" + ], + [ + "did_you_mean", + "1.6.3", + "puppet_gem" + ], + [ + "digest", + "3.1.1", + "puppet_gem" + ], + [ + "drb", + "2.1.1", + "puppet_gem" + ], + [ + "english", + "0.7.2", + "puppet_gem" + ], + [ + "erb", + "4.0.2", + "puppet_gem" + ], + [ + "error_highlight", + "0.5.1", + "puppet_gem" + ], + [ + "erubi", + "1.13.0", + "puppet_gem" + ], + [ + "etc", + "1.4.2", + "puppet_gem" + ], + [ + "ethon", + "0.9.0", + "puppet_gem" + ], + [ + "facter", + "4.12.0", + "puppet_gem" + ], + [ + "faraday", + "2.10.1", + "puppet_gem" + ], + [ + "faraday-em_http", + "1.0.0", + "puppet_gem" + ], + [ + "faraday-em_synchrony", + "1.0.0", + "puppet_gem" + ], + [ + "faraday-excon", + "1.1.0", + "puppet_gem" + ], + [ + "faraday-follow_redirects", + "0.3.0", + "puppet_gem" + ], + [ + "faraday-httpclient", + "1.0.1", + "puppet_gem" + ], + [ + "faraday-multipart", + "1.0.4", + "puppet_gem" + ], + [ + "faraday-net_http", + "3.1.1", + "puppet_gem" + ], + [ + "faraday-net_http_persistent", + "1.2.0", + "puppet_gem" + ], + [ + "faraday-patron", + "1.0.0", + "puppet_gem" + ], + [ + "faraday-rack", + "1.0.0", + "puppet_gem" + ], + [ + "faraday-retry", + "1.0.3", + "puppet_gem" + ], + [ + "faraday_middleware", + "1.2.0", + "puppet_gem" + ], + [ + "faraday_middleware-multi_json", + "0.0.6", + "puppet_gem" + ], + [ + "fast_gettext", + "2.4.0", + "puppet_gem" + ], + [ + "fcntl", + "1.0.2", + "puppet_gem" + ], + [ + "ffi", + "1.16.3", + "puppet_gem" + ], + [ + "fiddle", + "1.1.1", + "puppet_gem" + ], + [ + "fileutils", + "1.7.0", + "puppet_gem" + ], + [ + "find", + "0.1.1", + "puppet_gem" + ], + [ + "forwardable", + "1.3.3", + "puppet_gem" + ], + [ + "getoptlong", + "0.2.0", + "puppet_gem" + ], + [ + "gettext", + "3.4.9", + "puppet_gem" + ], + [ + "gettext-setup", + "1.1.0", + "puppet_gem" + ], + [ + "hiera-eyaml", + "3.4.0", + "puppet_gem" + ], + [ + "highline", + "3.1.0", + "puppet_gem" + ], + [ + "hocon", + "1.4.0", + "puppet_gem" + ], + [ + "io-console", + "0.6.0", + "puppet_gem" + ], + [ + "io-nonblock", + "0.2.0", + "puppet_gem" + ], + [ + "io-wait", + "0.3.0", + "puppet_gem" + ], + [ + "ipaddr", + "1.2.5", + "puppet_gem" + ], + [ + "irb", + "1.6.2", + "puppet_gem" + ], + [ + "json", + "2.6.3", + "puppet_gem" + ], + [ + "jwt", + "2.7.1", + "puppet_gem" + ], + [ + "locale", + "2.1.4", + "puppet_gem" + ], + [ + "log4r", + "1.1.10", + "puppet_gem" + ], + [ + "logger", + "1.5.3", + "puppet_gem" + ], + [ + "matrix", + "0.4.2", + "puppet_gem" + ], + [ + "minitar", + "0.9", + "puppet_gem" + ], + [ + "minitest", + "5.25.1", + "puppet_gem" + ], + [ + "multi_json", + "1.15.0", + "puppet_gem" + ], + [ + "multipart-post", + "2.0.0", + "puppet_gem" + ], + [ + "mutex_m", + "0.1.2", + "puppet_gem" + ], + [ + "net-ftp", + "0.2.1", + "puppet_gem" + ], + [ + "net-http", + "0.4.1", + "puppet_gem" + ], + [ + "net-imap", + "0.3.8", + "puppet_gem" + ], + [ + "net-pop", + "0.1.2", + "puppet_gem" + ], + [ + "net-protocol", + "0.2.1", + "puppet_gem" + ], + [ + "net-smtp", + "0.3.4", + "puppet_gem" + ], + [ + "net-ssh", + "7.2.3", + "puppet_gem" + ], + [ + "nkf", + "0.1.2", + "puppet_gem" + ], + [ + "observer", + "0.1.1", + "puppet_gem" + ], + [ + "open-uri", + "0.3.0", + "puppet_gem" + ], + [ + "open3", + "0.1.2", + "puppet_gem" + ], + [ + "openssl", + "3.1.0", + "puppet_gem" + ], + [ + "optimist", + "3.1.0", + "puppet_gem" + ], + [ + "optparse", + "0.3.1", + "puppet_gem" + ], + [ + "ostruct", + "0.5.5", + "puppet_gem" + ], + [ + "pathname", + "0.2.1", + "puppet_gem" + ], + [ + "pe_backup_tools", + "2025.3.0.0", + "puppet_gem" + ], + [ + "power_assert", + "2.0.3", + "puppet_gem" + ], + [ + "pp", + "0.4.0", + "puppet_gem" + ], + [ + "prettyprint", + "0.1.1", + "puppet_gem" + ], + [ + "prime", + "0.1.2", + "puppet_gem" + ], + [ + "pstore", + "0.1.2", + "puppet_gem" + ], + [ + "psych", + "5.0.1", + "puppet_gem" + ], + [ + "puppet", + "8.12.0", + "puppet_gem" + ], + [ + "puppet-resource_api", + "2.0.0", + "puppet_gem" + ], + [ + "puppet_forge", + "5.0.3", + "puppet_gem" + ], + [ + "puppetserver-ca", + "2.7.0", + "puppet_gem" + ], + [ + "r10k", + "5.0.0", + "puppet_gem" + ], + [ + "racc", + "1.6.2", + "puppet_gem" + ], + [ + "rake", + "13.0.6", + "puppet_gem" + ], + [ + "rbs", + "2.8.2", + "puppet_gem" + ], + [ + "rdoc", + "6.5.1.1", + "puppet_gem" + ], + [ + "readline", + "0.0.3", + "puppet_gem" + ], + [ + "readline-ext", + "0.1.5", + "puppet_gem" + ], + [ + "reline", + "0.3.2", + "puppet_gem" + ], + [ + "resolv", + "0.2.2", + "puppet_gem" + ], + [ + "resolv-replace", + "0.1.1", + "puppet_gem" + ], + [ + "rexml", + "3.3.9", + "puppet_gem" + ], + [ + "rinda", + "0.1.1", + "puppet_gem" + ], + [ + "rss", + "0.3.1", + "puppet_gem" + ], + [ + "ruby2_keywords", + "0.0.5", + "puppet_gem" + ], + [ + "rugged", + "1.8.1.1", + "puppet_gem" + ], + [ + "scanf", + "1.0.0", + "puppet_gem" + ], + [ + "securerandom", + "0.2.2", + "puppet_gem" + ], + [ + "semantic_puppet", + "1.1.1", + "puppet_gem" + ], + [ + "set", + "1.0.3", + "puppet_gem" + ], + [ + "shellwords", + "0.1.0", + "puppet_gem" + ], + [ + "singleton", + "0.1.1", + "puppet_gem" + ], + [ + "stringio", + "3.0.4", + "puppet_gem" + ], + [ + "strscan", + "3.0.7", + "puppet_gem" + ], + [ + "syntax_suggest", + "1.1.0", + "puppet_gem" + ], + [ + "sys-filesystem", + "1.4.4", + "puppet_gem" + ], + [ + "syslog", + "0.1.1", + "puppet_gem" + ], + [ + "tempfile", + "0.1.3", + "puppet_gem" + ], + [ + "test-unit", + "3.5.7", + "puppet_gem" + ], + [ + "text", + "1.3.1", + "puppet_gem" + ], + [ + "thor", + "1.2.2", + "puppet_gem" + ], + [ + "time", + "0.2.2", + "puppet_gem" + ], + [ + "timeout", + "0.3.1", + "puppet_gem" + ], + [ + "tmpdir", + "0.1.3", + "puppet_gem" + ], + [ + "tsort", + "0.1.1", + "puppet_gem" + ], + [ + "typeprof", + "0.21.3", + "puppet_gem" + ], + [ + "typhoeus", + "1.0.2", + "puppet_gem" + ], + [ + "un", + "0.2.1", + "puppet_gem" + ], + [ + "uri", + "0.12.4", + "puppet_gem" + ], + [ + "weakref", + "0.1.2", + "puppet_gem" + ], + [ + "yaml", + "0.2.1", + "puppet_gem" + ], + [ + "zlib", + "3.0.0", + "puppet_gem" + ], + [ + "addressable", + "2.8.7", + "puppetserver_gem" + ], + [ + "concurrent-ruby", + "1.2.3", + "puppetserver_gem" + ], + [ + "deep_merge", + "1.2.2", + "puppetserver_gem" + ], + [ + "erubi", + "1.13.1", + "puppetserver_gem" + ], + [ + "erubi", + "1.13.0", + "puppetserver_gem" + ], + [ + "fast_gettext", + "2.4.0", + "puppetserver_gem" + ], + [ + "gettext", + "3.4.9", + "puppetserver_gem" + ], + [ + "hiera-eyaml", + "3.4.0", + "puppetserver_gem" + ], + [ + "highline", + "3.1.0", + "puppetserver_gem" + ], + [ + "hocon", + "1.4.0", + "puppetserver_gem" + ], + [ + "little-plugger", + "1.1.4", + "puppetserver_gem" + ], + [ + "locale", + "2.1.4", + "puppetserver_gem" + ], + [ + "logging", + "2.4.0", + "puppetserver_gem" + ], + [ + "matrix", + "0.4.2", + "puppetserver_gem" + ], + [ + "minitest", + "5.15.0", + "puppetserver_gem" + ], + [ + "multi_json", + "1.15.0", + "puppetserver_gem" + ], + [ + "net-ftp", + "0.1.3", + "puppetserver_gem" + ], + [ + "net-imap", + "0.2.3", + "puppetserver_gem" + ], + [ + "net-pop", + "0.1.1", + "puppetserver_gem" + ], + [ + "net-smtp", + "0.3.1", + "puppetserver_gem" + ], + [ + "optimist", + "3.1.0", + "puppetserver_gem" + ], + [ + "power_assert", + "2.0.1", + "puppetserver_gem" + ], + [ + "prime", + "0.1.3", + "puppetserver_gem" + ], + [ + "prime", + "0.1.2", + "puppetserver_gem" + ], + [ + "public_suffix", + "6.0.1", + "puppetserver_gem" + ], + [ + "puppet-resource_api", + "2.0.0", + "puppetserver_gem" + ], + [ + "puppetserver-ca", + "2.7.0", + "puppetserver_gem" + ], + [ + "rake", + "13.0.6", + "puppetserver_gem" + ], + [ + "rexml", + "3.3.9", + "puppetserver_gem" + ], + [ + "rss", + "0.2.9", + "puppetserver_gem" + ], + [ + "scanf", + "1.0.0", + "puppetserver_gem" + ], + [ + "semantic_puppet", + "1.1.1", + "puppetserver_gem" + ], + [ + "semantic_puppet", + "1.1.0", + "puppetserver_gem" + ], + [ + "test-unit", + "3.5.3", + "puppetserver_gem" + ], + [ + "text", + "1.3.1", + "puppetserver_gem" + ] + ] + }, + "agent_specified_environment": "psick", + "aio_agent_build": "8.12.0", + "aio_agent_version": "8.12.0", + "augeas": { + "version": "1.14.1" + }, + "disks": { + "nvme0n1": { + "model": "KINGSTON OM8PDP3256B-A01", + "serial": "50026B7684C2B9F6", + "size": "238.47 GiB", + "size_bytes": 256060514304, + "type": "ssd", + "wwn": "eui.0026b7684c2b9f65" + }, + "sda": { + "model": "CBM", + "serial": "01085000DFDB4F02", + "size": "1.93 GiB", + "size_bytes": 2075131904, + "type": "hdd", + "vendor": "CBM" + } + }, + "facterversion": "4.12.0", + "filesystems": "iso9660,vfat,xfs", + "fips_enabled": false, + "identity": { + "gid": 0, + "group": "root", + "privileged": true, + "uid": 0, + "user": "root" + }, + "is_pe": true, + "is_virtual": false, + "kernel": "Linux", + "kernelmajversion": "5.14", + "kernelrelease": "5.14.0-570.12.1.el9_6.x86_64", + "kernelversion": "5.14.0", + "load_averages": { + "15m": 0.45, + "1m": 0.36, + "5m": 0.45 + }, + "memory": { + "swap": { + "available": "4.73 GiB", + "available_bytes": 5078773760, + "capacity": "39.30%", + "total": "7.79 GiB", + "total_bytes": 8367632384, + "used": "3.06 GiB", + "used_bytes": 3288858624 + }, + "system": { + "available": "1.25 GiB", + "available_bytes": 1337827328, + "capacity": "91.81%", + "total": "15.21 GiB", + "total_bytes": 16331051008, + "used": "13.96 GiB", + "used_bytes": 14993223680 + } + }, + "mountpoints": { + "/": { + "available": "61.24 GiB", + "available_bytes": 65754075136, + "capacity": "12.44%", + "device": "/dev/mapper/almalinux_puppet-root", + "filesystem": "xfs", + "options": [ + "rw", + "seclabel", + "relatime", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "size": "69.94 GiB", + "size_bytes": 75094818816, + "used": "8.70 GiB", + "used_bytes": 9340743680 + }, + "/boot": { + "available": "592.47 MiB", + "available_bytes": 621252608, + "capacity": "38.28%", + "device": "/dev/nvme0n1p2", + "filesystem": "xfs", + "options": [ + "rw", + "seclabel", + "relatime", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "size": "960.00 MiB", + "size_bytes": 1006632960, + "used": "367.53 MiB", + "used_bytes": 385380352 + }, + "/boot/efi": { + "available": "591.74 MiB", + "available_bytes": 620486656, + "capacity": "1.18%", + "device": "/dev/nvme0n1p1", + "filesystem": "vfat", + "options": [ + "rw", + "relatime", + "fmask=0077", + "dmask=0077", + "codepage=437", + "iocharset=ascii", + "shortname=winnt", + "errors=remount-ro" + ], + "size": "598.81 MiB", + "size_bytes": 627900416, + "used": "7.07 MiB", + "used_bytes": 7413760 + }, + "/dev": { + "available": "4.00 MiB", + "available_bytes": 4194304, + "capacity": "0%", + "device": "devtmpfs", + "filesystem": "devtmpfs", + "options": [ + "rw", + "seclabel", + "nosuid", + "size=4096k", + "nr_inodes=1984481", + "mode=755", + "inode64" + ], + "size": "4.00 MiB", + "size_bytes": 4194304, + "used": "0 bytes", + "used_bytes": 0 + }, + "/dev/hugepages": { + "available": "0 bytes", + "available_bytes": 0, + "capacity": "100%", + "device": "hugetlbfs", + "filesystem": "hugetlbfs", + "options": [ + "rw", + "seclabel", + "relatime", + "pagesize=2M" + ], + "size": "0 bytes", + "size_bytes": 0, + "used": "0 bytes", + "used_bytes": 0 + }, + "/dev/mqueue": { + "available": "0 bytes", + "available_bytes": 0, + "capacity": "100%", + "device": "mqueue", + "filesystem": "mqueue", + "options": [ + "rw", + "seclabel", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "size": "0 bytes", + "size_bytes": 0, + "used": "0 bytes", + "used_bytes": 0 + }, + "/dev/pts": { + "available": "0 bytes", + "available_bytes": 0, + "capacity": "100%", + "device": "devpts", + "filesystem": "devpts", + "options": [ + "rw", + "seclabel", + "nosuid", + "noexec", + "relatime", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "size": "0 bytes", + "size_bytes": 0, + "used": "0 bytes", + "used_bytes": 0 + }, + "/dev/shm": { + "available": "7.60 GiB", + "available_bytes": 8165339136, + "capacity": "0.00%", + "device": "tmpfs", + "filesystem": "tmpfs", + "options": [ + "rw", + "seclabel", + "nosuid", + "nodev", + "inode64" + ], + "size": "7.60 GiB", + "size_bytes": 8165523456, + "used": "180.00 KiB", + "used_bytes": 184320 + }, + "/home": { + "available": "153.10 GiB", + "available_bytes": 164388515840, + "capacity": "3.72%", + "device": "/dev/mapper/almalinux_puppet-home", + "filesystem": "xfs", + "options": [ + "rw", + "seclabel", + "relatime", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "size": "159.02 GiB", + "size_bytes": 170742202368, + "used": "5.92 GiB", + "used_bytes": 6353686528 + }, + "/run": { + "available": "2.79 GiB", + "available_bytes": 2993897472, + "capacity": "8.34%", + "device": "tmpfs", + "filesystem": "tmpfs", + "options": [ + "rw", + "seclabel", + "nosuid", + "nodev", + "size=3189660k", + "nr_inodes=819200", + "mode=755", + "inode64" + ], + "size": "3.04 GiB", + "size_bytes": 3266211840, + "used": "259.70 MiB", + "used_bytes": 272314368 + }, + "/run/credentials/systemd-sysctl.service": { + "available": "0 bytes", + "available_bytes": 0, + "capacity": "100%", + "device": "none", + "filesystem": "ramfs", + "options": [ + "ro", + "seclabel", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "size": "0 bytes", + "size_bytes": 0, + "used": "0 bytes", + "used_bytes": 0 + }, + "/run/credentials/systemd-sysusers.service": { + "available": "0 bytes", + "available_bytes": 0, + "capacity": "100%", + "device": "none", + "filesystem": "ramfs", + "options": [ + "ro", + "seclabel", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "size": "0 bytes", + "size_bytes": 0, + "used": "0 bytes", + "used_bytes": 0 + }, + "/run/credentials/systemd-tmpfiles-setup-dev.service": { + "available": "0 bytes", + "available_bytes": 0, + "capacity": "100%", + "device": "none", + "filesystem": "ramfs", + "options": [ + "ro", + "seclabel", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "size": "0 bytes", + "size_bytes": 0, + "used": "0 bytes", + "used_bytes": 0 + }, + "/run/credentials/systemd-tmpfiles-setup.service": { + "available": "0 bytes", + "available_bytes": 0, + "capacity": "100%", + "device": "none", + "filesystem": "ramfs", + "options": [ + "ro", + "seclabel", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "size": "0 bytes", + "size_bytes": 0, + "used": "0 bytes", + "used_bytes": 0 + }, + "/run/media/al/AlmaLinux-9-6-x86_64-dvd": { + "available": "0 bytes", + "available_bytes": 0, + "capacity": "100%", + "device": "/dev/sda1", + "filesystem": "iso9660", + "options": [ + "ro", + "nosuid", + "nodev", + "relatime", + "nojoliet", + "check=s", + "map=n", + "blocksize=2048", + "uid=1000", + "gid=1000", + "dmode=500", + "fmode=400" + ], + "size": "1.15 GiB", + "size_bytes": 1230602240, + "used": "1.15 GiB", + "used_bytes": 1230602240 + }, + "/run/user/1000": { + "available": "1.52 GiB", + "available_bytes": 1632116736, + "capacity": "0.06%", + "device": "tmpfs", + "filesystem": "tmpfs", + "options": [ + "rw", + "seclabel", + "nosuid", + "nodev", + "relatime", + "size=1594828k", + "nr_inodes=398707", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ], + "size": "1.52 GiB", + "size_bytes": 1633103872, + "used": "964.00 KiB", + "used_bytes": 987136 + }, + "/run/user/1000/doc": { + "available": "0 bytes", + "available_bytes": 0, + "capacity": "100%", + "device": "portal", + "filesystem": "fuse.portal", + "options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "user_id=1000", + "group_id=1000" + ], + "size": "0 bytes", + "size_bytes": 0, + "used": "0 bytes", + "used_bytes": 0 + }, + "/run/user/1000/gvfs": { + "available": "0 bytes", + "available_bytes": 0, + "capacity": "100%", + "device": "gvfsd-fuse", + "filesystem": "fuse.gvfsd-fuse", + "options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "user_id=1000", + "group_id=1000" + ], + "size": "0 bytes", + "size_bytes": 0, + "used": "0 bytes", + "used_bytes": 0 + } + }, + "networking": { + "domain": "office.lab42", + "fqdn": "puppet.office.lab42", + "hostname": "puppet", + "interfaces": { + "enp1s0": { + "duplex": "unknown", + "mac": "84:47:09:04:b2:1d", + "mtu": 1500, + "operational_state": "down", + "physical": true, + "speed": -1 + }, + "enp2s0": { + "duplex": "unknown", + "mac": "84:47:09:02:7f:c3", + "mtu": 1500, + "operational_state": "down", + "physical": true, + "speed": -1 + }, + "lo": { + "bindings": [ + { + "address": "127.0.0.1", + "netmask": "255.0.0.0", + "network": "127.0.0.0" + } + ], + "ip": "127.0.0.1", + "mtu": 65536, + "netmask": "255.0.0.0", + "network": "127.0.0.0", + "operational_state": "unknown", + "physical": false + }, + "tailscale0": { + "bindings": [ + { + "address": "100.126.136.85", + "netmask": "255.255.255.255", + "network": "100.126.136.85" + } + ], + "ip": "100.126.136.85", + "mtu": 1280, + "netmask": "255.255.255.255", + "network": "100.126.136.85", + "operational_state": "unknown", + "physical": false + }, + "wlp3s0": { + "bindings": [ + { + "address": "10.42.101.33", + "netmask": "255.255.255.0", + "network": "10.42.101.0" + } + ], + "bindings6": [ + { + "address": "fe80::1ebb:7af1:be73:314", + "netmask": "ffff:ffff:ffff:ffff::", + "network": "fe80::", + "scope6": "link", + "flags": [ + "permanent" + ] + } + ], + "ip": "10.42.101.33", + "ip6": "fe80::1ebb:7af1:be73:314", + "mac": "e0:d4:64:82:8a:2a", + "mtu": 1500, + "netmask": "255.255.255.0", + "netmask6": "ffff:ffff:ffff:ffff::", + "network": "10.42.101.0", + "network6": "fe80::", + "operational_state": "up", + "physical": true, + "scope6": "link" + } + }, + "ip": "10.42.101.33", + "ip6": "fe80::1ebb:7af1:be73:314", + "mac": "e0:d4:64:82:8a:2a", + "mtu": 1500, + "netmask": "255.255.255.0", + "netmask6": "ffff:ffff:ffff:ffff::", + "network": "10.42.101.0", + "network6": "fe80::", + "primary": "wlp3s0", + "scope6": "link" + }, + "os": { + "architecture": "x86_64", + "distro": { + "codename": "Sage Margay", + "description": "AlmaLinux release 9.6 (Sage Margay)", + "id": "AlmaLinux", + "release": { + "full": "9.6", + "major": "9", + "minor": "6" + } + }, + "family": "RedHat", + "hardware": "x86_64", + "name": "AlmaLinux", + "release": { + "full": "9.6", + "major": "9", + "minor": "6" + }, + "selinux": { + "config_mode": "enforcing", + "config_policy": "targeted", + "current_mode": "enforcing", + "enabled": true, + "enforced": true, + "policy_version": "33" + } + }, + "package_provider": "dnf", + "partitions": { + "/dev/mapper/almalinux_puppet-home": { + "filesystem": "xfs", + "mount": "/home", + "size": "159.09 GiB", + "size_bytes": 170825613312, + "uuid": "937e1841-2324-4570-95b3-3646274e4804" + }, + "/dev/mapper/almalinux_puppet-root": { + "filesystem": "xfs", + "mount": "/", + "size": "70.00 GiB", + "size_bytes": 75161927680, + "uuid": "a0ef625a-ab5a-4bb6-9cbe-2b49bc664a70" + }, + "/dev/mapper/almalinux_puppet-swap": { + "filesystem": "swap", + "size": "7.79 GiB", + "size_bytes": 8367636480, + "uuid": "4bddb295-2664-4b9e-8bd5-f99ca069557a" + }, + "/dev/nvme0n1p1": { + "filesystem": "vfat", + "mount": "/boot/efi", + "partlabel": "EFI System Partition", + "parttype": "c12a7328-f81f-11d2-ba4b-00a0c93ec93b", + "partuuid": "bbcbc28a-251d-4069-989e-33e8629fe6c5", + "size": "600.00 MiB", + "size_bytes": 629145600, + "uuid": "6EA5-27C0" + }, + "/dev/nvme0n1p2": { + "filesystem": "xfs", + "mount": "/boot", + "parttype": "0fc63daf-8483-4772-8e79-3d69d8477de4", + "partuuid": "dcf3a90d-a9bd-4c8b-a2cf-bb95c763fbfd", + "size": "1.00 GiB", + "size_bytes": 1073741824, + "uuid": "edad8b1f-1aa8-43ea-8b0a-d7298561d8ba" + }, + "/dev/nvme0n1p3": { + "filesystem": "LVM2_member", + "parttype": "e6d6d379-f507-44c2-a23c-238f2a3df928", + "partuuid": "3ee6c776-7556-48c8-8d1c-0d01b26fabad", + "size": "236.89 GiB", + "size_bytes": 254356226048, + "uuid": "IE9BL9-W4NA-s3qv-6hmW-KCV5-em6h-7ELhHk" + }, + "/dev/sda1": { + "filesystem": "iso9660", + "label": "AlmaLinux-9-6-x86_64-dvd", + "mount": "/run/media/al/AlmaLinux-9-6-x86_64-dvd", + "parttype": "0x0", + "partuuid": "6d4517bb-01", + "size": "1.15 GiB", + "size_bytes": 1230602240, + "uuid": "2025-05-16-13-56-59-00" + }, + "/dev/sda2": { + "filesystem": "vfat", + "label": "ANACONDA", + "parttype": "0xef", + "partuuid": "6d4517bb-02", + "size": "6.98 MiB", + "size_bytes": 7317504, + "uuid": "4261-F38E" + } + }, + "path": "/root/.local/bin:/root/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/opt/puppetlabs/bin:/sbin", + "pe_build": "2025.3.0", + "pe_databases": { + "have_systemd": true + }, + "pe_major_version": "2025", + "pe_minor_version": "3", + "pe_patch": { + "blackouts": { + }, + "block_patching_on_warnings": "false", + "blocked": false, + "blocked_reasons": [ + + ], + "last_run": { + "date": "2025-05-25T18:05:06+02:00", + "job_id": "33", + "message": "Patching complete", + "post_reboot": "never", + "return_code": "Success", + "security_only": "false", + "was_rebooted": "false" + }, + "missing_security_kbs": [ + + ], + "missing_update_kbs": [ + + ], + "package_update_count": 17, + "package_updates": [ + "firefox.x86_64", + "gstreamer1-plugins-bad-free.x86_64", + "gstreamer1-plugins-bad-free-libs.x86_64", + "kernel.x86_64", + "kernel-core.x86_64", + "kernel-modules.x86_64", + "kernel-modules-core.x86_64", + "kernel-tools.x86_64", + "kernel-tools-libs.x86_64", + "libsoup.x86_64", + "osinfo-db.noarch", + "python3-perf.x86_64", + "qemu-guest-agent.x86_64", + "webkit2gtk3.x86_64", + "webkit2gtk3-jsc.x86_64", + "xdg-utils.noarch", + "yelp-xsl.noarch" + ], + "patch_group": "Prod", + "pinned_packages": [ + + ], + "reboot_override": "default", + "reboots": { + "app_restart_required": false, + "apps_needing_restart": { + }, + "reboot_required": "" + }, + "security_package_update_count": 11, + "security_package_updates": [ + "firefox.x86_64", + "gstreamer1-plugins-bad-free.x86_64", + "gstreamer1-plugins-bad-free-libs.x86_64", + "kernel.x86_64", + "kernel-core.x86_64", + "kernel-modules.x86_64", + "kernel-modules-core.x86_64", + "kernel-tools.x86_64", + "kernel-tools-libs.x86_64", + "libsoup.x86_64", + "python3-perf.x86_64" + ], + "warnings": { + } + }, + "pe_patch_version": "0", + "pe_postgresql_info": { + "data_partition_available_bytes": 65753972736, + "data_partition_size_bytes": 75094818816, + "installed_packages": { + "pe-postgresql-common": "2025.2-2", + "pe-postgresql14": "14.16-1", + "pe-postgresql14-contrib": "14.16-1", + "pe-postgresql14-pglogical": "2.4.5-2", + "pe-postgresql14-pgrepack": "1.5.2-1", + "pe-postgresql14-server": "14.16-1" + }, + "installed_server_version": "14", + "versions": { + "14": { + "app_dir": "/opt/puppetlabs/server/apps/postgresql/14", + "data_dir": "/opt/puppetlabs/server/data/postgresql/14", + "tablespaces": [ + "/opt/puppetlabs/server/data/postgresql/activity/PG_14_202107181", + "/opt/puppetlabs/server/data/postgresql/classifier/PG_14_202107181", + "/opt/puppetlabs/server/data/postgresql/orchestrator/PG_14_202107181", + "/opt/puppetlabs/server/data/postgresql/puppetdb/PG_14_202107181", + "/opt/puppetlabs/server/data/postgresql/rbac/PG_14_202107181", + "/opt/puppetlabs/server/data/postgresql/inventory/PG_14_202107181" + ], + "used_bytes": 270311424 + } + } + }, + "pe_server_version": "2025.3.0", + "pe_status_check": { + "S0001": true, + "S0002": true, + "S0003": false, + "S0004": true, + "S0005": true, + "S0006": true, + "S0007": true, + "S0008": true, + "S0009": true, + "S0010": true, + "S0011": true, + "S0012": true, + "S0013": true, + "S0014": true, + "S0015": true, + "S0016": true, + "S0017": true, + "S0018": true, + "S0019": true, + "S0020": true, + "S0021": false, + "S0022": false, + "S0023": true, + "S0024": true, + "S0025": true, + "S0026": true, + "S0027": true, + "S0029": true, + "S0030": true, + "S0031": true, + "S0033": true, + "S0034": true, + "S0035": false, + "S0036": true, + "S0038": true, + "S0039": true, + "S0040": false, + "S0042": true, + "S0043": false, + "S0044": true, + "S0045": true + }, + "pe_status_check_role": "primary", + "pe_version": "2025.3.0", + "platform_symlink_writable": true, + "platform_tag": "el-9-x86_64", + "processors": { + "cores": 4, + "count": 8, + "extensions": [ + "x86_64", + "x86_64-v1", + "x86_64-v2", + "x86_64-v3" + ], + "isa": "x86_64", + "models": [ + "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", + "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", + "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", + "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", + "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", + "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", + "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz", + "Intel(R) Core(TM) i5-8279U CPU @ 2.40GHz" + ], + "physicalcount": 1, + "speed": "3.91 GHz", + "threads": 2 + }, + "puppet_environmentpath": "/etc/puppetlabs/code/environments", + "puppet_files_dir_present": false, + "puppet_inventory_metadata": { + "packages": { + "collection_enabled": true, + "last_collection_time": "1.6037s" + } + }, + "puppet_metrics_collector": { + "file_sync_storage_enabled": false, + "have_pe_psql": true, + "have_sysstat": false, + "have_systemd": true, + "have_vmware_tools": true + }, + "puppet_server": "puppet.office.lab42", + "puppet_vardir": "/opt/puppetlabs/puppet/cache", + "puppetversion": "8.12.0", + "root_home": "/root", + "ruby": { + "platform": "x86_64-linux", + "sitedir": "/opt/puppetlabs/puppet/lib/ruby/site_ruby/3.2.0", + "version": "3.2.8" + }, + "service_provider": "systemd", + "ssh": { + "ecdsa": { + "fingerprints": { + "sha1": "SSHFP 3 1 b69bb0a84b916711b4f1e2e6a8908f9e4508c54e", + "sha256": "SSHFP 3 2 c729d15b00da23c138719b38a4ddab7a98f6336e1da791fcd3726cd29a7f1f5e" + }, + "key": "AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPe4Yw6izHuze2IXoIyFQ+WyYn0Eq2qmXXbqJbCCW6XIqf0lTb3NKh1dtd61dhmTgfIoGUwFEb3pCXqOD4CHYdo=", + "type": "ecdsa-sha2-nistp256" + }, + "ed25519": { + "fingerprints": { + "sha1": "SSHFP 4 1 13ce477959e7abd495df8fa7e7cb2ddafc085cdf", + "sha256": "SSHFP 4 2 3dcd2cf9f3545ea5d19a491c2535a8cf4a2fe208f4d88c042d775bb4e31577d3" + }, + "key": "AAAAC3NzaC1lZDI1NTE5AAAAIIIt+IU+Vu1qOYXbUuuV2QwXTecUJxjCJqPIPn759IFS", + "type": "ssh-ed25519" + }, + "rsa": { + "fingerprints": { + "sha1": "SSHFP 1 1 71807a17403e23b73206deddb91cf2d1cf9cae89", + "sha256": "SSHFP 1 2 b8f21ec32f90e38fe34b3382e9b17e2acacef1f69cc4df7d8f4a0c47b21612b7" + }, + "key": "AAAAB3NzaC1yc2EAAAADAQABAAABgQC8V1f1/ArNw7yS9MNVf1C1ygxqEWWHR5c2tZabdFUMNGpQwo2KHXRPY93nVPdTdvh7gvktdicxEPgb9PsDB/2+LuR3yFbsLsnKyPHUIS6/74h/eoqZ1T7FC3jIPLZUFx9pNR/eELpuW2fGLtSaDidzJqZPPokm8f4SB/qtZpZPEf2T+FTHHVm9oVk7xFRHhlFuJRmEp2j/ZDR20PO7ao7sX5+xwfLPSLqtY1nVPc0K2yhXKKKA4JMeLXMQ5wZsVcl7ywTiXMEBHdl5aH8pwkqvPiXiqDk0uhn0KHNJ6Va0QTQt3U6Btxk4RZ0fLldR/td5xisUc6PPu5wrj3EIcR6xfmZ0EDxRwkWJjjK2mHS/YMW+/HJon3GLkZxo809xSQky80N6ECP0sGuJPodRfcC9p2QJ3LfzBqRnFM9sPu4eOK+Jmxmb5ttkwMkunm1ooGxF9Rf5KSX3mBIq7Vo4FLTuAkNFBw/0iHrrYfVJNbgfXw5mvwTLXCmxuRI16Y3d//0=", + "type": "ssh-rsa" + } + }, + "staging_http_get": "curl", + "system_uptime": { + "days": 14, + "hours": 339, + "seconds": 1222972, + "uptime": "14 days" + }, + "timezone": "CEST", + "vcsrepo_svn_ver": "", + "virtual": "physical" +} diff --git a/spec/hosts/build.lab.psick.io_spec.rb b/spec/hosts-lab/lab.psick.io/build.lab.psick.io_spec.rb similarity index 100% rename from spec/hosts/build.lab.psick.io_spec.rb rename to spec/hosts-lab/lab.psick.io/build.lab.psick.io_spec.rb diff --git a/spec/hosts/jenkins.lab.psick.io_spec.rb b/spec/hosts-lab/lab.psick.io/jenkins.lab.psick.io_spec.rb similarity index 100% rename from spec/hosts/jenkins.lab.psick.io_spec.rb rename to spec/hosts-lab/lab.psick.io/jenkins.lab.psick.io_spec.rb diff --git a/spec/hosts/puppet.lab.psick.io_spec.rb b/spec/hosts-lab/lab.psick.io/puppet.lab.psick.io_spec.rb similarity index 100% rename from spec/hosts/puppet.lab.psick.io_spec.rb rename to spec/hosts-lab/lab.psick.io/puppet.lab.psick.io_spec.rb diff --git a/spec/hosts/windows2012.lab.psick.io_spec.rb b/spec/hosts-lab/lab.psick.io/windows2012.lab.psick.io_spec.rb similarity index 100% rename from spec/hosts/windows2012.lab.psick.io_spec.rb rename to spec/hosts-lab/lab.psick.io/windows2012.lab.psick.io_spec.rb diff --git a/spec/onceover.yaml b/spec/onceover.yaml index 6a07715a..324545a5 100644 --- a/spec/onceover.yaml +++ b/spec/onceover.yaml @@ -2,31 +2,13 @@ classes: - /^psick/ +opts: + auto_vendored: true + # Nodes to tests classes on, this refers to a 'factset' or 'nodeset' # depending on whether you are running 'spec' or 'acceptance' tests nodes: - - solaris-10_u9-sparc-64 - - Ubuntu-12.04-32 - - CentOS-6.6-32 - - Debian-6.0.10-64 - - AIX-6.1-powerpc - - Debian-7.8-64 - - CentOS-5.11-64 - - Ubuntu-12.04-64 - - Windows_Server-2008r2-64 - - Ubuntu-14.04-32 - - SLES-11.3-64 - - SLES-12.1-64 - - Debian-7.8-32 - - CentOS-7.0-64 - - solaris-11.2-sparc-64 - - windows-10-64 - - CentOS-6.6-64 - - AIX-7.1-powerpc - - Debian-6.0.10-32 - - Ubuntu-14.04-64 - - Windows_Server-2012r2-64 - - CentOS-5.11-32 + - lab # You can group classes here to save typing class_groups: @@ -36,18 +18,8 @@ class_groups: # give you Windows vagrant boxes to test with because licensing, # we can give you fact sets though so go crazy with spec testing! node_groups: - windows_nodes: - - Windows_Server-2008r2-64 - - windows-10-64 - - Windows_Server-2012r2-64 - non_windows_nodes: - include: 'all_nodes' - exclude: 'windows_nodes' test_matrix: - all_nodes: classes: 'all_classes' tests: 'spec' - - non_windows_nodes: - classes: 'all_classes' - tests: 'acceptance' diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 0543fa55..ae7c1f68 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,32 +1,40 @@ +# frozen_string_literal: true + +RSpec.configure do |c| + c.mock_with :rspec +end + require 'puppetlabs_spec_helper/module_spec_helper' require 'rspec-puppet-facts' -begin - require 'spec_helper_local' if File.file?(File.join(File.dirname(__FILE__), 'spec_helper_local.rb')) -rescue LoadError => loaderror - warn "Could not require spec_helper_local: #{loaderror.message}" -end +require 'spec_helper_local' if File.file?(File.join(File.dirname(__FILE__), 'spec_helper_local.rb')) include RspecPuppetFacts -# Custom support path -support_path = File.expand_path(File.join(File.dirname(__FILE__), '..', 'spec/support/*.rb')) -Dir[support_path].each {|f| require f} - default_facts = { puppetversion: Puppet.version, facterversion: Facter.version, } -default_facts_path = File.expand_path(File.join(File.dirname(__FILE__), 'default_facts.yml')) -default_module_facts_path = File.expand_path(File.join(File.dirname(__FILE__), 'default_module_facts.yml')) +default_fact_files = [ + File.expand_path(File.join(File.dirname(__FILE__), 'default_facts.yml')), + File.expand_path(File.join(File.dirname(__FILE__), 'default_module_facts.yml')), +] -if File.exist?(default_facts_path) && File.readable?(default_facts_path) - default_facts.merge!(YAML.safe_load(File.read(default_facts_path))) +default_fact_files.each do |f| + next unless File.exist?(f) && File.readable?(f) && File.size?(f) + + begin + require 'deep_merge' + default_facts.deep_merge!(YAML.safe_load(File.read(f), permitted_classes: [], permitted_symbols: [], aliases: true)) + rescue StandardError => e + RSpec.configuration.reporter.message "WARNING: Unable to load #{f}: #{e}" + end end -if File.exist?(default_module_facts_path) && File.readable?(default_module_facts_path) - default_facts.merge!(YAML.safe_load(File.read(default_module_facts_path))) +# read default_facts and merge them over what is provided by facterdb +default_facts.each do |fact, value| + add_custom_fact fact, value, merge_facts: true end RSpec.configure do |c| @@ -35,13 +43,32 @@ # set to strictest setting for testing # by default Puppet runs at warning level Puppet.settings[:strict] = :warning + Puppet.settings[:strict_variables] = true + end + c.filter_run_excluding(bolt: true) unless ENV['GEM_BOLT'] + c.after(:suite) do + RSpec::Puppet::Coverage.report!(0) + end + + # Filter backtrace noise + backtrace_exclusion_patterns = [ + %r{spec_helper}, + %r{gems}, + ] + + if c.respond_to?(:backtrace_exclusion_patterns) + c.backtrace_exclusion_patterns = backtrace_exclusion_patterns + elsif c.respond_to?(:backtrace_clean_patterns) + c.backtrace_clean_patterns = backtrace_exclusion_patterns end end +# Ensures that a module is defined +# @param module_name Name of the module def ensure_module_defined(module_name) module_name.split('::').reduce(Object) do |last_module, next_module| - last_module.const_set(next_module, Module.new) unless last_module.const_defined?(next_module) - last_module.const_get(next_module) + last_module.const_set(next_module, Module.new) unless last_module.const_defined?(next_module, false) + last_module.const_get(next_module, false) end end