diff --git a/.buildkite/.keep b/.buildkite/.keep new file mode 100644 index 00000000..e69de29b diff --git a/.buildkite/hooks/pre-command b/.buildkite/hooks/pre-command new file mode 100644 index 00000000..d86d1e89 --- /dev/null +++ b/.buildkite/hooks/pre-command @@ -0,0 +1,9 @@ +#!/bin/bash + +if [[ $BUILDKITE_ORGANIZATION_SLUG = 'chef-canary' ]]; then + AWS_REGION='us-west-1' +elif [[ $BUILDKITE_ORGANIZATION_SLUG = 'chef' ]] || [[ $BUILDKITE_ORGANIZATION_SLUG = 'chef-oss' ]]; then + AWS_REGION='us-west-2' +fi + +export HAB_AUTH_TOKEN=$(aws ssm get-parameter --name 'habitat-prod-auth-token' --with-decryption --query Parameter.Value --output text --region ${AWS_REGION}) diff --git a/.expeditor/build.habitat.yml b/.expeditor/build.habitat.yml new file mode 100644 index 00000000..9c2d3d7a --- /dev/null +++ b/.expeditor/build.habitat.yml @@ -0,0 +1,9 @@ +--- +origin: chef + +expeditor: + defaults: + buildkite: + retry: + automatic: + limit: 1 \ No newline at end of file diff --git a/.expeditor/buildkite/artifact.habitat.test.ps1 b/.expeditor/buildkite/artifact.habitat.test.ps1 new file mode 100755 index 00000000..0c434e0d --- /dev/null +++ b/.expeditor/buildkite/artifact.habitat.test.ps1 @@ -0,0 +1,89 @@ +#!/usr/bin/env powershell + +#Requires -Version 5 +# https://stackoverflow.com/questions/9948517 +# TODO: Set-StrictMode -Version Latest +$PSDefaultParameterValues['*:ErrorAction']='Stop' +$ErrorActionPreference = 'Stop' +$env:HAB_BLDR_CHANNEL = 'base-2025' +$env:HAB_REFRESH_CHANNEL = "base-2025" +$env:CHEF_LICENSE = 'accept-no-persist' +$env:HAB_LICENSE = 'accept-no-persist' +$Plan = 'fauxhai' + +Write-Host "--- system details" +$Properties = 'Caption', 'CSName', 'Version', 'BuildType', 'OSArchitecture' +Get-CimInstance Win32_OperatingSystem | Select-Object $Properties | Format-Table -AutoSize + +Write-Host "--- Installing the version of Habitat required" + +function Stop-HabProcess { + $habProcess = Get-Process hab -ErrorAction SilentlyContinue + if ($habProcess) { + Write-Host "Stopping hab process..." + Stop-Process -Name hab -Force + } +} + +# Installing Habitat +function Install-Habitat { + Write-Host "Downloading and installing Habitat..." + Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/habitat-sh/habitat/main/components/hab/install.ps1')) +} + +try { + hab --version +} +catch { + Set-ExecutionPolicy Bypass -Scope Process -Force + + Stop-HabProcess + + # Remove the existing hab.exe if it exists and if you have permissions + $habPath = "C:\ProgramData\Habitat\hab.exe" + if (Test-Path $habPath) { + Write-Host "Attempting to remove existing hab.exe..." + Remove-Item $habPath -Force -ErrorAction SilentlyContinue + if (Test-Path $habPath) { + Write-Host "Failed to remove hab.exe, re-running script with elevated permissions." + Start-Process powershell -Verb runAs -ArgumentList "-NoProfile -ExecutionPolicy Bypass -File `"$PSCommandPath`"" + exit + } + } + + Install-Habitat +} +finally { + Write-Host ":habicat: I think I have the version I need to build." +} + +# Set HAB_ORIGIN after Habitat installation +Write-Host "HAB_ORIGIN set to 'ci' after installation." +$env:HAB_ORIGIN = 'ci' + +Write-Host "--- Generating fake origin key" +hab origin key generate $env:HAB_ORIGIN + +Write-Host "--- Building $Plan" +$project_root = "$(git rev-parse --show-toplevel)" +Set-Location $project_root + +$env:DO_CHECK=$true; hab pkg build . + +. $project_root/results/last_build.ps1 + +Write-Host "--- Installing $pkg_ident/$pkg_artifact" +hab pkg install -b $project_root/results/$pkg_artifact + +Write-Host "+++ Testing $Plan" + +Push-Location $project_root + +try { + Write-Host "Running unit tests..." + habitat/tests/test.ps1 $pkg_ident +} +finally { + # Ensure we always return to the original directory + Pop-Location +} \ No newline at end of file diff --git a/.expeditor/buildkite/artifact.habitat.test.sh b/.expeditor/buildkite/artifact.habitat.test.sh new file mode 100755 index 00000000..19b36e5e --- /dev/null +++ b/.expeditor/buildkite/artifact.habitat.test.sh @@ -0,0 +1,74 @@ +#!/usr/bin/env bash + +set -eo pipefail + +export PLAN='fauxhai' +export CHEF_LICENSE="accept-no-persist" +export HAB_LICENSE="accept-no-persist" +export HAB_BLDR_CHANNEL='base-2025' +export HAB_REFRESH_CHANNEL="base-2025" + +echo "--- checking if git is installed" +if ! command -v git &> /dev/null; then + echo "Git is not installed. Installing Git..." + sudo yum install -y git +else + echo "Git is already installed." + git --version +fi + +echo "--- add an exception for this directory since detected dubious ownership in repository at /workdir" +git config --global --add safe.directory /workdir + +echo "--- git status for this workdir" +git status + +echo "--- checking ruby version" +ruby -v + +export project_root="$(git rev-parse --show-toplevel)" +echo "The value for project_root is: $project_root" + +export HAB_NONINTERACTIVE=true +export HAB_NOCOLORING=true +export HAB_STUDIO_SECRET_HAB_NONINTERACTIVE=true + +echo "--- system details" +uname -a + +echo "--- Installing Habitat" +id -a +curl https://raw.githubusercontent.com/habitat-sh/habitat/main/components/hab/install.sh | bash + +# Set HAB_ORIGIN after Habitat installation +echo "--- Setting HAB_ORIGIN to 'ci' after installation" +export HAB_ORIGIN='ci' + +echo "--- :key: Generating fake origin key" +hab origin key generate "$HAB_ORIGIN" + + +echo "--- Building $PLAN" +cd "$project_root" +DO_CHECK=true hab pkg build . + +echo "--- Sourcing 'results/last_build.sh'" +if [ -f ./results/last_build.env ]; then + cat ./results/last_build.env + . ./results/last_build.env + export pkg_artifact +fi +echo "+++ Installing ${pkg_ident:?is undefined}" +echo "++++" +echo $project_root +echo "+++" +hab pkg install -b "${project_root:?is undefined}/results/${pkg_artifact:?is undefined}" + +echo "+++ Testing $PLAN" + +PATH="$(hab pkg path ci/fauxhai)/bin:$PATH" +export PATH +echo "PATH is $PATH" + +echo "--- :mag_right: Testing $PLAN" +${project_root}/habitat/tests/test.sh "$pkg_ident" || error 'failures during test of executables' \ No newline at end of file diff --git a/.expeditor/config.yml b/.expeditor/config.yml new file mode 100644 index 00000000..5a71dcce --- /dev/null +++ b/.expeditor/config.yml @@ -0,0 +1,82 @@ +# Documentation available at https://expeditor.chef.io/docs/getting-started/ +--- + +# Slack channel in Chef Software slack to send notifications about build failures, etc +slack: + notify_channel: chef-ws-notify + +# This publish is triggered by the `built_in:publish_rubygems` artifact_action. +rubygems: + - fauxhai-chef + +# artifact_channels: +# - unstable +# - chef-dke-lts2024 + +pipelines: + - verify: + description: Pull Request validation tests + public: true + - habitat/build: + description: Build the Habitat packages for faixhai + env: + - HAB_NONINTERACTIVE: "true" + - HAB_NOCOLORING: "true" + - HAB_STUDIO_SECRET_HAB_NONINTERACTIVE: "true" + - habitat/test: + public: true + description: Execute tests against the habitat artifact + definition: .expeditor/habitat-test.pipeline.yml + trigger: pull_request + env: + - HAB_NONINTERACTIVE: "true" + - HAB_NOCOLORING: "true" + - HAB_STUDIO_SECRET_HAB_NONINTERACTIVE: "true" + +release_branches: + - main: + version_constraint: 9.* + +github: + # This deletes the GitHub PR branch after successfully merged into the release branch + delete_branch_on_merge: true + # The tag format to use (e.g. v1.0.0) + version_tag_format: "v{{version}}" + # allow bumping the minor release via label + minor_bump_labels: + - "Expeditor: Bump Version Minor" + # allow bumping the major release via label + major_bump_labels: + - "Expeditor: Bump Version Major" + +changelog: + rollup_header: Changes not yet released to rubygems.org + +subscriptions: + # These actions are taken, in order they are specified, anytime a Pull Request is merged. + - workload: pull_request_merged:{{github_repo}}:{{release_branch}}:* + actions: + - built_in:bump_version: + ignore_labels: + - "Expeditor: Skip Version Bump" + - "Expeditor: Skip All" + - bash:.expeditor/update_version.sh: + only_if: built_in:bump_version + - built_in:update_changelog: + ignore_labels: + - "Expeditor: Skip Changelog" + - "Expeditor: Skip All" + - built_in:build_gem: + only_if: built_in:bump_version + - trigger_pipeline:habitat/build: + ignore_labels: + - "Expeditor: Skip Habitat" + - "Expeditor: Skip All" + only_if: built_in:bump_version + + # this works for symantec version promote + - workload: project_promoted:{{agent_id}}:* + actions: + - built_in:rollover_changelog + # - built_in:promote_habitat_packages + - built_in:publish_rubygems \ No newline at end of file diff --git a/.expeditor/habitat-test.pipeline.yml b/.expeditor/habitat-test.pipeline.yml new file mode 100644 index 00000000..2f778cd1 --- /dev/null +++ b/.expeditor/habitat-test.pipeline.yml @@ -0,0 +1,39 @@ +--- +expeditor: + defaults: + buildkite: + timeout_in_minutes: 30 + retry: + automatic: + limit: 1 + + +steps: + + - label: ":linux: Validate Habitat Builds of fauxhai" + commands: + - .expeditor/buildkite/artifact.habitat.test.sh + expeditor: + executor: + docker: + image: ruby:3.4 + privileged: true + environment: + - HAB_AUTH_TOKEN + + - label: ":windows: Validate Habitat Builds of fauxhai" + commands: + - .expeditor/buildkite/artifact.habitat.test.ps1 + expeditor: + executor: + docker: + host_os: windows + shell: ["powershell", "-Command"] + image: rubydistros/windows-2019:3.4 + user: 'NT AUTHORITY\SYSTEM' + environment: + - HAB_AUTH_TOKEN + - FORCE_FFI_YAJL=ext + - EXPIRE_CACHE=true + - CHEF_LICENSE=accept-no-persist + - CHEF_LICENSE_SERVER=http://hosted-license-service-lb-8000-606952349.us-west-2.elb.amazonaws.com:8000/ diff --git a/.expeditor/run_linux_tests.sh b/.expeditor/run_linux_tests.sh new file mode 100644 index 00000000..92a3fdce --- /dev/null +++ b/.expeditor/run_linux_tests.sh @@ -0,0 +1,16 @@ +#!/bin/bash +# +# setups up the bundler to caching, then run the script + +set -ue + +export USER="root" +export LANG=C.UTF-8 LANGUAGE=C.UTF-8 + +echo "--- bundle install" + +bundle config --local path vendor/bundle +bundle install --jobs=7 --retry=3 + +echo "+++ bundle exec task" +bundle exec $@ diff --git a/.expeditor/update_version.sh b/.expeditor/update_version.sh new file mode 100644 index 00000000..78090ebd --- /dev/null +++ b/.expeditor/update_version.sh @@ -0,0 +1,12 @@ +#!/bin/sh +# +# After a PR merge, Chef Expeditor will bump the PATCH version in the VERSION file. +# It then executes this file to update any other files/components with that new version. +# + +set -evx + +sed -i -r "s/^(\s*)VERSION = \".+\"/\1VERSION = \"$(cat VERSION)\"/" lib/fauxhai/version.rb + +# Once Expeditor finishes executing this script, it will commit the changes and push +# the commit as a new tag corresponding to the value in the VERSION file. \ No newline at end of file diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml new file mode 100644 index 00000000..12e6b0f7 --- /dev/null +++ b/.expeditor/verify.pipeline.yml @@ -0,0 +1,10 @@ +--- +expeditor: + cached_folders: + - vendor + defaults: + buildkite: + retry: + automatic: + limit: 1 + timeout_in_minutes: 30 diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000..9668cf3c --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,4 @@ +#Order is important. The last matching pattern has the most precedence. + +* @chef/chef-workstation-owners @chef/chef-workstation-approvers @chef/chef-workstation-reviewers @jaymzh +*.md @chef/docs-team diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 727b9aa7..cb9b54a7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,14 +4,17 @@ on: pull_request: push: branches: - - master + - main + +permissions: + contents: read jobs: test: runs-on: ubuntu-latest strategy: matrix: - ruby: [ '2.4', '2.5', '2.6', '2.7', '3.0'] + ruby: ['3.1', '3.2', '3.4'] name: Validate JSON on Ruby ${{ matrix.ruby }} steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/sonarqube.yml b/.github/workflows/sonarqube.yml new file mode 100644 index 00000000..398f632f --- /dev/null +++ b/.github/workflows/sonarqube.yml @@ -0,0 +1,36 @@ +name: SonarQube scan +permissions: + contents: read +on: + # Trigger analysis when pushing to your main branches, and when creating a pull request. + push: + branches: + - main # or the name of your main branch + - develop + - 'release/**' + pull_request: + types: [opened, synchronize, reopened] + +jobs: + sonarqube: + runs-on: ip-range-controlled +# runs-on: ubuntu-latest +# needs: [build] + steps: + - uses: actions/checkout@v3 + with: + # Disabling shallow clone is recommended for improving relevancy of reporting + fetch-depth: 0 + - name: SonarQube Scan + uses: sonarsource/sonarqube-scan-action@master + env: + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} + # If you wish to fail your job when the Quality Gate is red, uncomment the + # following lines. This would typically be used to fail a deployment. + # We do not recommend to use this in a pull request. Prefer using pull request + # decoration instead. + # - uses: sonarsource/sonarqube-quality-gate-action@master + # timeout-minutes: 5 + # env: + # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index faf700ab..3e09aa92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,67 @@ -# Fauxhai-ng Changelog + +## [v9.4.5](https://github.com/chef/fauxhai/tree/v9.4.5) (2025-07-14) + +#### Merged Pull Requests +- Fixing habitat test builds by declaring HAB_ORIGIN after habitat install [#73](https://github.com/chef/fauxhai/pull/73) ([nikhil2611](https://github.com/nikhil2611)) + + + +### Changes not yet released to rubygems.org + +#### Merged Pull Requests +- Fixing habitat test builds by declaring HAB_ORIGIN after habitat install [#73](https://github.com/chef/fauxhai/pull/73) ([nikhil2611](https://github.com/nikhil2611)) +- CHEF-21185 - Ruby 3.4 update in Fauxhai Hab package [#72](https://github.com/chef/fauxhai/pull/72) ([nikhil2611](https://github.com/nikhil2611)) +- Add AlmaLinux 10 [#70](https://github.com/chef/fauxhai/pull/70) ([ramereth](https://github.com/ramereth)) +- Habitat authentication token [#68](https://github.com/chef/fauxhai/pull/68) ([borisicbs](https://github.com/borisicbs)) +- Adding myself to CODEOWNERS [#67](https://github.com/chef/fauxhai/pull/67) ([jaymzh](https://github.com/jaymzh)) +- CHEF-19102 - support for ruby 3.4 [#63](https://github.com/chef/fauxhai/pull/63) ([sanjain-progress](https://github.com/sanjain-progress)) + + + +## [v9.3.26](https://github.com/chef/fauxhai/tree/v9.3.26) (2025-05-14) + +#### Merged Pull Requests +- [CI] Drop EOL rubies [#33](https://github.com/chef/fauxhai/pull/33) ([dafyddcrosby](https://github.com/dafyddcrosby)) +- Package fauxhai as a hab package [#31](https://github.com/chef/fauxhai/pull/31) ([sanjain-progress](https://github.com/sanjain-progress)) +- Added the release branch [#40](https://github.com/chef/fauxhai/pull/40) ([nikhil2611](https://github.com/nikhil2611)) +- Updating configuration for a symantec version promote and publish [#60](https://github.com/chef/fauxhai/pull/60) ([nikhil2611](https://github.com/nikhil2611)) +- make pipelines public: habitat/test [#61](https://github.com/chef/fauxhai/pull/61) ([jaymzh](https://github.com/jaymzh)) +- Potential fix for code scanning alert no. 1: Use of `Kernel.open` or `IO.read` or similar sinks with a non-constant value [#64](https://github.com/chef/fauxhai/pull/64) ([ashiqueps](https://github.com/ashiqueps)) +- Updated the codeowners and fixed the security issue with the workflows [#65](https://github.com/chef/fauxhai/pull/65) ([ashiqueps](https://github.com/ashiqueps)) +- Commenting out Habitat package promotion to publish fauxhai gem first [#66](https://github.com/chef/fauxhai/pull/66) ([nikhil2611](https://github.com/nikhil2611)) + + +## [v9.3.16](https://github.com/chef/fauxhai/tree/v9.3.16) (2024-03-27) + +#### Merged Pull Requests +- Add Debian 12 support [#17](https://github.com/chef/fauxhai/pull/17) ([Justin-Fernbaugh](https://github.com/Justin-Fernbaugh)) +- Add .buildkite folder to make pipeline_protection happy [#18](https://github.com/chef/fauxhai/pull/18) ([tpowell-progress](https://github.com/tpowell-progress)) +- Add Ubuntu 22.04 (jammy) support [#16](https://github.com/chef/fauxhai/pull/16) ([dtseiler](https://github.com/dtseiler)) +- Added RedHat 9 [#21](https://github.com/chef/fauxhai/pull/21) ([jjperry](https://github.com/jjperry)) +- Added WIndows 2022 and Updated CONTRIBUTING.md [#24](https://github.com/chef/fauxhai/pull/24) ([jjperry](https://github.com/jjperry)) +- Add code owners for reviews [#28](https://github.com/chef/fauxhai/pull/28) ([tpowell-progress](https://github.com/tpowell-progress)) +- add_amazon_2023 [#26](https://github.com/chef/fauxhai/pull/26) ([jjperry](https://github.com/jjperry)) +- Add Ubuntu 24.04 [#27](https://github.com/chef/fauxhai/pull/27) ([nickpegg](https://github.com/nickpegg)) + +## [v9.3.8](https://github.com/chef/fauxhai/tree/v9.3.8) (2023-05-05) + +#### Merged Pull Requests +- Add Rocky Linux 9 data [#9](https://github.com/chef/fauxhai/pull/9) ([vkarve-chef](https://github.com/vkarve-chef)) +- Added the SonarQube configuration [#13](https://github.com/chef/fauxhai/pull/13) ([nikhil2611](https://github.com/nikhil2611)) +- Update fetcher to pull from correct repository [#14](https://github.com/chef/fauxhai/pull/14) ([ramereth](https://github.com/ramereth)) + +## [v9.3.5](https://github.com/chef/fauxhai/tree/v9.3.5) (2023-02-03) + +#### Merged Pull Requests +- Add AlmaLinux 9 data [#8](https://github.com/chef/fauxhai/pull/8) ([vkarve-chef](https://github.com/vkarve-chef)) +- CentOS Stream 8 & 9 data [#10](https://github.com/chef/fauxhai/pull/10) ([ramereth](https://github.com/ramereth)) +- Add Oracle 7 / 8 / 9 [#12](https://github.com/chef/fauxhai/pull/12) ([davidjkling](https://github.com/davidjkling)) + +## [v9.3.2](https://github.com/chef/fauxhai/tree/v9.3.2) (2022-06-13) + +#### Merged Pull Requests +- Mimaslanka/dummy [#6](https://github.com/chef/fauxhai/pull/6) ([mimaslanka](https://github.com/mimaslanka)) +- Force action [#7](https://github.com/chef/fauxhai/pull/7) ([mimaslanka](https://github.com/mimaslanka)) ## 9.3.0 (2022-01-26) @@ -350,7 +413,7 @@ Note: Going forward we won't be shipping the point releases for each distro. Ins - Solaris 5.10 - Windows 7 -For a list of currently support platform releases see https://github.com/chefspec/fauxhai/blob/master/PLATFORMS.md +For a list of currently support platform releases see https://github.com/chef/fauxhai/blob/master/PLATFORMS.md ## v6.11.0 (2018-01-30) @@ -972,4 +1035,4 @@ Released: 2013-05-09 [@mapleoin]: https://github.com/mapleoin [@pschultz]: https://github.com/pschultz [@sax]: https://github.com/sax -[@tmatilai]: https://github.com/tmatilai +[@tmatilai]: https://github.com/tmatilai \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 458ad5cc..c305838a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ # Contributing to Fauxhai -Fauxhai is community-maintained and updated. Aside from the initial files, all of the ohai system mocks have been created by the community. If you have a system that you think would benefit the community, here's how you get it into [fauxhai](https://github.com/chefspec/fauxhai): +Fauxhai is community-maintained and updated. Aside from the initial files, all of the ohai system mocks have been created by the community. If you have a system that you think would benefit the community, here's how you get it into [fauxhai](https://github.com/chef/fauxhai): 1. Build a system to your liking (on a virtual machine, for example) 2. Install chef, ohai, and fauxhai @@ -49,7 +49,8 @@ Fauxhai is community-maintained and updated. Aside from the initial files, all o ``` bundle console - Fauxhai.mock(platform: '[os]', version: '[version]') # e.g. Fauxhai.mock(platform: 'ubuntu', version: '12.04') + requiure "fauxhai" + Fauxhai.mock(platform: '[os]', version: '[version]') # e.g. Fauxhai.mock(platform: 'ubuntu', version: '12.04').data ``` As long as that does not throw an error, you're good to go! diff --git a/Gemfile b/Gemfile index 3be9c3cd..805faf75 100644 --- a/Gemfile +++ b/Gemfile @@ -1,2 +1,7 @@ source "https://rubygems.org" + gemspec + +group :development do + gem 'appbundler' +end \ No newline at end of file diff --git a/PLATFORMS.md b/PLATFORMS.md index 604eb817..c245e684 100644 --- a/PLATFORMS.md +++ b/PLATFORMS.md @@ -10,11 +10,14 @@ This file lists each platform known to Fauxhai and the available versions for ea ### almalinux - 8 +- 9 +- 10 ### amazon - 2 - 2018.03 (deprecated) +- 2023 ### arch @@ -27,6 +30,11 @@ This file lists each platform known to Fauxhai and the available versions for ea - 7.8.2003 - 8 +### centos-stream + +- 8 +- 9 + ### clearos - 7.4 @@ -38,6 +46,7 @@ This file lists each platform known to Fauxhai and the available versions for ea - 9.13 - 10 - 11 +- 12 ### dragonfly4 @@ -80,8 +89,11 @@ This file lists each platform known to Fauxhai and the available versions for ea ### oracle - 6.10 +- 7 - 7.5 (deprecated) - 7.6 +- 8 +- 9 ### raspbian @@ -94,10 +106,12 @@ This file lists each platform known to Fauxhai and the available versions for ea - 7.8 - 7.9 - 8 +- 9 ### rocky - 8 +- 9 ### smartos @@ -118,6 +132,7 @@ This file lists each platform known to Fauxhai and the available versions for ea - 16.04 - 18.04 - 20.04 +- 22.04 ### windows @@ -126,4 +141,5 @@ This file lists each platform known to Fauxhai and the available versions for ea - 2012R2 - 2016 - 2019 +- 2022 - 8.1 diff --git a/README.md b/README.md index bf226aea..cedfcf64 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Fauxhai-ng -![CI](https://github.com/chefspec/fauxhai/workflows/CI/badge.svg) [![Gem Version](https://badge.fury.io/rb/fauxhai-ng.svg)](https://badge.fury.io/rb/fauxhai-ng) +![CI](https://github.com/chef/fauxhai/workflows/CI/badge.svg) [![Gem Version](https://badge.fury.io/rb/fauxhai-ng.svg)](https://badge.fury.io/rb/fauxhai-ng) Note: fauxhai-ng is an updated version of the original fauxhai gem. The CLI and library namespaces have not changed, but you will want to update to use the new gem. @@ -51,7 +51,7 @@ Fauxhai ships with a command line tool - `fauxhai`. This is **not** the same as ## Platform and Versions -For a complete list of platforms and versions available for mocking via Fauxhai see [PLATFORMS.MD](https://github.com/chefspec/fauxhai/blob/master/PLATFORMS.md) in this repository. +For a complete list of platforms and versions available for mocking via Fauxhai see [PLATFORMS.MD](https://github.com/chef/fauxhai/blob/master/PLATFORMS.md) in this repository. ## Usage @@ -195,4 +195,4 @@ end ## Contributing -See [CONTRIBUTING.md](https://github.com/chefspec/fauxhai/blob/master/CONTRIBUTING.md). +See [CONTRIBUTING.md](https://github.com/chef/fauxhai/blob/master/CONTRIBUTING.md). diff --git a/VERSION b/VERSION new file mode 100644 index 00000000..1f14f769 --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +9.4.5 \ No newline at end of file diff --git a/fauxhai-ng.gemspec b/fauxhai-chef.gemspec similarity index 70% rename from fauxhai-ng.gemspec rename to fauxhai-chef.gemspec index ab4139a7..048fa406 100644 --- a/fauxhai-ng.gemspec +++ b/fauxhai-chef.gemspec @@ -3,25 +3,25 @@ $:.unshift(lib) unless $:.include?(lib) require "fauxhai/version" Gem::Specification.new do |spec| - spec.name = "fauxhai-ng" + spec.name = "fauxhai-chef" spec.version = Fauxhai::VERSION spec.authors = ["Seth Vargo", "Tim Smith"] spec.email = ["sethvargo@gmail.com", "tsmith84@gmail.com"] spec.description = "Easily mock out ohai data" spec.summary = "Fauxhai provides an easy way to mock out your ohai data for testing with chefspec!" - spec.homepage = "https://github.com/chefspec/fauxhai" + spec.homepage = "https://github.com/chef/fauxhai" spec.license = "MIT" - spec.required_ruby_version = ">= 2.3" + spec.required_ruby_version = ">= 3.1" - spec.files = %w{LICENSE Gemfile fauxhai-ng.gemspec} + Dir.glob("{lib,bin}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) } + spec.files = %w{LICENSE Gemfile fauxhai-chef.gemspec} + Dir.glob("{lib,bin}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) } spec.executables = "fauxhai" spec.require_paths = ["lib"] spec.add_runtime_dependency "net-ssh" + spec.add_runtime_dependency "ohai", ">= 13.0" spec.add_development_dependency "chef", ">= 13.0" - spec.add_development_dependency "ohai", ">= 13.0" spec.add_development_dependency "rake" spec.add_development_dependency "rspec", "~> 3.7" spec.add_development_dependency "rspec-its", "~> 1.2" diff --git a/habitat/plan.ps1 b/habitat/plan.ps1 new file mode 100644 index 00000000..d0ea4a31 --- /dev/null +++ b/habitat/plan.ps1 @@ -0,0 +1,95 @@ +$ErrorActionPreference = "Stop" +$PSDefaultParameterValues['*:ErrorAction']='Stop' + +$env:HAB_BLDR_CHANNEL = "base-2025" +$env:HAB_REFRESH_CHANNEL = "base-2025" +$pkg_name="fauxhai" +$pkg_origin="core" +$pkg_version=$(Get-Content "$PLAN_CONTEXT/../VERSION") +$pkg_maintainer="The Chef Maintainers " + +$pkg_deps=@( + "core/ruby3_4-plus-devkit" + "core/git" +) +$pkg_bin_dirs=@("bin" + "vendor/bin") +$project_root= (Resolve-Path "$PLAN_CONTEXT/../").Path + +function pkg_version { + Get-Content "$SRC_PATH/VERSION" +} + +function Invoke-Before { + Set-PkgVersion +} + +function Invoke-SetupEnvironment { + Push-RuntimeEnv -IsPath GEM_PATH "$pkg_prefix/vendor" + + Set-RuntimeEnv APPBUNDLER_ALLOW_RVM "true" # prevent appbundler from clearing out the carefully constructed runtime GEM_PATH + Set-RuntimeEnv FORCE_FFI_YAJL "ext" + Set-RuntimeEnv LANG "en_US.UTF-8" + Set-RuntimeEnv LC_CTYPE "en_US.UTF-8" +} + +function Invoke-Build { + try { + $env:Path += ";c:\\Program Files\\Git\\bin" + Push-Location $project_root + $env:GEM_HOME = "$HAB_CACHE_SRC_PATH/$pkg_dirname/vendor" + + Write-BuildLine " ** Configuring bundler for this build environment" + bundle config --local without integration deploy maintenance + bundle config --local jobs 4 + bundle config --local retry 5 + bundle config --local silence_root_warning 1 + Write-BuildLine " ** Using bundler to retrieve the Ruby dependencies" + bundle install + + gem build fauxhai-chef.gemspec + Write-BuildLine " ** Using gem to install" + gem install fauxhai-chef-*.gem --no-document + + + If ($lastexitcode -ne 0) { Exit $lastexitcode } + } finally { + Pop-Location + } +} + +function Invoke-Install { + Write-BuildLine "** Copy built & cached gems to install directory" + Copy-Item -Path "$HAB_CACHE_SRC_PATH/$pkg_dirname/*" -Destination $pkg_prefix -Recurse -Force -Exclude @("gem_make.out", "mkmf.log", "Makefile", + "*/latest", "latest", + "*/JSON-Schema-Test-Suite", "JSON-Schema-Test-Suite") + + try { + Push-Location $pkg_prefix + bundle config --local gemfile $project_root/Gemfile + Write-BuildLine "** generating binstubs for fauxhai-chef with precise version pins" + Write-BuildLine "** generating binstubs for fauxhai-chef with precise version pins $project_root $pkg_prefix/bin " + Invoke-Expression -Command "appbundler.bat $project_root $pkg_prefix/bin fauxhai-chef" + If ($lastexitcode -ne 0) { Exit $lastexitcode } + Write-BuildLine " ** Running the fauxhai-chef project's 'rake install' to install the path-based gems so they look like any other installed gem." + + If ($lastexitcode -ne 0) { Exit $lastexitcode } + } finally { + Pop-Location + } +} + +function Invoke-After { + # We don't need the cache of downloaded .gem files ... + Remove-Item $pkg_prefix/vendor/cache -Recurse -Force + # We don't need the gem docs. + Remove-Item $pkg_prefix/vendor/doc -Recurse -Force + # We don't need to ship the test suites for every gem dependency, + # only inspec's for package verification. + Get-ChildItem $pkg_prefix/vendor/gems -Filter "spec" -Directory -Recurse -Depth 1 ` + | Where-Object -FilterScript { $_.FullName -notlike "*fauxhai-chef*" } ` + | Remove-Item -Recurse -Force + # Remove the byproducts of compiling gems with extensions + Get-ChildItem $pkg_prefix/vendor/gems -Include @("gem_make.out", "mkmf.log", "Makefile") -File -Recurse ` + | Remove-Item -Force +} \ No newline at end of file diff --git a/habitat/plan.sh b/habitat/plan.sh new file mode 100644 index 00000000..120f3539 --- /dev/null +++ b/habitat/plan.sh @@ -0,0 +1,76 @@ +export HAB_BLDR_CHANNEL="base-2025" +export HAB_REFRESH_CHANNEL="base-2025" +pkg_name=fauxhai +pkg_origin=chef +ruby_pkg="core/ruby3_4" +pkg_description="Easily mock full ohai data" +pkg_deps=(${ruby_pkg} core/coreutils) +pkg_build_deps=( + core/make + core/sed + core/gcc + core/libarchive + ) +pkg_bin_dirs=(bin) + +do_setup_environment() { + build_line 'Setting GEM_HOME="$pkg_prefix/vendor"' + export GEM_HOME="$pkg_prefix/vendor" + + build_line "Setting GEM_PATH=$GEM_HOME" + export GEM_PATH="$GEM_HOME" +} + +pkg_version() { + cat "$SRC_PATH/VERSION" +} +do_before() { + update_pkg_version +} +do_unpack() { + mkdir -pv "$HAB_CACHE_SRC_PATH/$pkg_dirname" + cp -RT "$PLAN_CONTEXT"/.. "$HAB_CACHE_SRC_PATH/$pkg_dirname/" +} +do_build() { + + export GEM_HOME="$pkg_prefix/vendor" + + build_line "Setting GEM_PATH=$GEM_HOME" + export GEM_PATH="$GEM_HOME" + bundle config --local without integration deploy maintenance + bundle config --local jobs 4 + bundle config --local retry 5 + bundle config --local silence_root_warning 1 + bundle install + gem build fauxhai-chef.gemspec +} +do_install() { + export GEM_HOME="$pkg_prefix/vendor" + + build_line "Setting GEM_PATH=$GEM_HOME" + export GEM_PATH="$GEM_HOME" + gem install fauxhai-*.gem --no-document + set_runtime_env "GEM_PATH" "${pkg_prefix}/vendor" + wrap_ruby_bin +} +wrap_ruby_bin() { + local bin="$pkg_prefix/bin/$pkg_name" + local real_bin="$GEM_HOME/gems/fauxhai-chef-${pkg_version}/bin/fauxhai" + build_line "Adding wrapper $bin to $real_bin" + cat < "$bin" +#!$(pkg_path_for core/bash)/bin/bash +set -e +# Set binary path that allows InSpec to use non-Hab pkg binaries +export PATH="/sbin:/usr/sbin:/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:\$PATH" +# Set Ruby paths defined from 'do_setup_environment()' + export GEM_HOME="$pkg_prefix/vendor" + export GEM_PATH="$GEM_PATH" +exec $(pkg_path_for ${ruby_pkg})/bin/ruby $real_bin \$@ +EOF + chmod -v 755 "$bin" +} + + +do_strip() { + return 0 +} \ No newline at end of file diff --git a/habitat/tests/test.ps1 b/habitat/tests/test.ps1 new file mode 100644 index 00000000..618a658f --- /dev/null +++ b/habitat/tests/test.ps1 @@ -0,0 +1,20 @@ +param ( + [Parameter()] + [string]$PackageIdentifier = $(throw "Usage: test.ps1 [test_pkg_ident] e.g. test.ps1 ci/user-windows/1.0.0/20190812103929") +) + + +Write-Host "--- :fire: Smokish test" +$version=hab pkg exec "${pkg_ident}" fauxhai -v +$actual_version=[Regex]::Match($version,"([0-9]+.[0-9]+.[0-9]+)").Value +$package_version=$PackageIdentifier.split("/",4)[2] + +Write-Host "package_version $package_version actual version $actual_version" +if ($package_version -eq $actual_version) +{ + Write "Fauxhai working fine" +} +else { + Write-Error "Fauxhai version not met expected $package_version actual version $actual_version " + throw "fauxhai windows pipeline not working for hab pkg" +} diff --git a/habitat/tests/test.sh b/habitat/tests/test.sh new file mode 100755 index 00000000..50195d51 --- /dev/null +++ b/habitat/tests/test.sh @@ -0,0 +1,23 @@ +set -euo pipefail + + +project_root="$(git rev-parse --show-toplevel)" +pkg_ident="$1" +# print error message followed by usage and exit +error () { + local message="$1" + + echo -e "\nERROR: ${message}\n" >&2 + + exit 1 +} + +[[ -n "$pkg_ident" ]] || error 'no hab package identity provided' + +package_version=$(awk -F / '{print $3}' <<<"$pkg_ident") + +cd "${project_root}" + +echo "--- :msg_right: Testing ${pkg_ident} executables" +actual_version=$(hab pkg exec "${pkg_ident}" fauxhai -v | sed -E 's/.*: ([0-9]+\.[0-9]+\.[0-9]+).*/\1/') +[[ "$package_version" = "$actual_version" ]] || error "Fauxhai version is not the expected version. Expected '$package_version', got '$actual_version'" diff --git a/lib/fauxhai/mocker.rb b/lib/fauxhai/mocker.rb index 567e0657..25e94b02 100644 --- a/lib/fauxhai/mocker.rb +++ b/lib/fauxhai/mocker.rb @@ -4,10 +4,10 @@ module Fauxhai class Mocker # The base URL for the GitHub project (raw) - RAW_BASE = "https://raw.githubusercontent.com/chefspec/fauxhai/master".freeze + RAW_BASE = "https://raw.githubusercontent.com/chef/fauxhai/main".freeze # A message about where to find a list of platforms - PLATFORM_LIST_MESSAGE = "A list of available platforms is available at https://github.com/chefspec/fauxhai/blob/master/PLATFORMS.md".freeze + PLATFORM_LIST_MESSAGE = "A list of available platforms is available at https://github.com/chef/fauxhai/blob/main/PLATFORMS.md".freeze # Create a new Ohai Mock with fauxhai. # @@ -45,15 +45,16 @@ def data elsif @options[:github_fetching] # Try loading from github (in case someone submitted a PR with a new file, but we haven't # yet updated the gem version). Cache the response locally so it's faster next time. - require "open-uri" unless defined?(OpenURI) + require "net/http" unless defined?(Net::HTTP) begin - response = URI.open("#{RAW_BASE}/lib/fauxhai/platforms/#{platform}/#{version}.json") - rescue OpenURI::HTTPError + uri = URI("#{RAW_BASE}/lib/fauxhai/platforms/#{platform}/#{version}.json") + response = Net::HTTP.get_response(uri) + rescue StandardError raise Fauxhai::Exception::InvalidPlatform.new("Could not find platform '#{platform}/#{version}' on the local disk and an HTTP error was encountered when fetching from Github. #{PLATFORM_LIST_MESSAGE}") end - if response.status.first.to_i == 200 - response_body = response.read + if response.code.to_i == 200 + response_body = response.body path = Pathname.new(filepath) FileUtils.mkdir_p(path.dirname) diff --git a/lib/fauxhai/platforms/almalinux/10.json b/lib/fauxhai/platforms/almalinux/10.json new file mode 100644 index 00000000..8d53999a --- /dev/null +++ b/lib/fauxhai/platforms/almalinux/10.json @@ -0,0 +1,4389 @@ +{ + "block_device": { + "sda": { + "size": "104857600", + "removable": "0", + "model": "QEMU HARDDISK", + "rev": "2.5+", + "state": "running", + "timeout": "30", + "vendor": "QEMU", + "queue_depth": "128", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + } + }, + "chef_packages": { + "chef": { + "version": "18.7.10", + "chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.7.10/lib", + "chef_effortless": null + }, + "ohai": { + "version": "18.2.5", + "ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.2.5/lib/ohai" + } + }, + "command": { + "ps": "ps -ef" + }, + "counters": { + "network": { + "interfaces": { + "lo": { + "tx": { + "queuelen": "1", + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "carrier": 0, + "collisions": 0 + }, + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0 + } + }, + "eth0": { + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "frame": 0, + "compressed": 0, + "multicast": 0 + }, + "tx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "collisions": 0, + "carrier": 0, + "compressed": 0 + } + } + } + } + }, + "cpu": { + "real": 1, + "total": 1, + "cores": 1 + }, + "current_user": "fauxhai", + "dmi": { + "dmidecode_version": "3.6", + "smbios_version": "2.8", + "structures": { + "count": "13", + "size": "786" + }, + "bios": { + "all_records": [ + { + "record_id": "0x0000", + "size": "0", + "application_identifier": "BIOS Information", + "Vendor": "SeaBIOS", + "Version": "1.16.3-4.el9.alma.1", + "Release Date": "04/01/2014", + "Address": "0xE8000", + "Runtime Size": "96 kB", + "ROM Size": "64 kB", + "Characteristics": { + "Targeted content distribution is supported": null + }, + "BIOS Revision": "0.0" + } + ], + "vendor": "SeaBIOS", + "version": "1.16.3-4.el9.alma.1", + "release_date": "04/01/2014", + "address": "0xE8000", + "runtime_size": "96 kB", + "rom_size": "64 kB", + "bios_revision": "0.0" + }, + "system": { + "all_records": [ + { + "record_id": "0x0100", + "size": "1", + "application_identifier": "System Information", + "Manufacturer": "RDO", + "Product Name": "OpenStack Compute", + "Version": "25.3.0-1.el9s", + "Serial Number": "4d73412d-c673-4fd5-998f-acb1cb75ce9b", + "UUID": "4d73412d-c673-4fd5-998f-acb1cb75ce9b", + "Wake-up Type": "Power Switch", + "SKU Number": "Not Specified", + "Family": "Virtual Machine" + } + ], + "manufacturer": "RDO", + "product_name": "OpenStack Compute", + "version": "25.3.0-1.el9s", + "serial_number": "4d73412d-c673-4fd5-998f-acb1cb75ce9b", + "uuid": "4d73412d-c673-4fd5-998f-acb1cb75ce9b", + "wake_up_type": "Power Switch", + "sku_number": "Not Specified", + "family": "Virtual Machine" + }, + "chassis": { + "all_records": [ + { + "record_id": "0x0300", + "size": "3", + "application_identifier": "Chassis Information", + "Manufacturer": "Red Hat", + "Type": "Other", + "Lock": "Not Present", + "Version": "RHEL 7.6.0 PC (i440FX + PIIX, 1996)", + "Serial Number": "Not Specified", + "Asset Tag": "Not Specified", + "Boot-up State": "Safe", + "Power Supply State": "Safe", + "Thermal State": "Safe", + "Security Status": "Unknown", + "OEM Information": "0x00000000", + "Height": "Unspecified", + "Number Of Power Cords": "Unspecified", + "Contained Elements": "0", + "SKU Number": "Not Specified" + } + ], + "manufacturer": "Red Hat", + "type": "Other", + "lock": "Not Present", + "version": "RHEL 7.6.0 PC (i440FX + PIIX, 1996)", + "serial_number": "Not Specified", + "asset_tag": "Not Specified", + "boot_up_state": "Safe", + "power_supply_state": "Safe", + "thermal_state": "Safe", + "security_status": "Unknown", + "oem_information": "0x00000000", + "height": "Unspecified", + "number_of_power_cords": "Unspecified", + "contained_elements": "0", + "sku_number": "Not Specified" + }, + "processor": { + "all_records": [ + { + "record_id": "0x0400", + "size": "4", + "application_identifier": "Processor Information", + "Socket Designation": "CPU 0", + "Type": "Central Processor", + "Family": "Other", + "Manufacturer": "Red Hat", + "ID": "54 06 05 00 FF FB 8B 0F", + "Version": "RHEL 7.6.0 PC (i440FX + PIIX, 1996)", + "Voltage": "Unknown", + "External Clock": "Unknown", + "Max Speed": "2000 MHz", + "Current Speed": "2000 MHz", + "Status": "Populated, Enabled", + "Upgrade": "Other", + "L1 Cache Handle": "Not Provided", + "L2 Cache Handle": "Not Provided", + "L3 Cache Handle": "Not Provided", + "Serial Number": "Not Specified", + "Asset Tag": "Not Specified", + "Part Number": "Not Specified", + "Core Count": "1", + "Core Enabled": "1", + "Thread Count": "1", + "Characteristics": "None" + }, + { + "record_id": "0x0401", + "size": "4", + "application_identifier": "Processor Information", + "Socket Designation": "CPU 1", + "Type": "Central Processor", + "Family": "Other", + "Manufacturer": "Red Hat", + "ID": "54 06 05 00 FF FB 8B 0F", + "Version": "RHEL 7.6.0 PC (i440FX + PIIX, 1996)", + "Voltage": "Unknown", + "External Clock": "Unknown", + "Max Speed": "2000 MHz", + "Current Speed": "2000 MHz", + "Status": "Populated, Enabled", + "Upgrade": "Other", + "L1 Cache Handle": "Not Provided", + "L2 Cache Handle": "Not Provided", + "L3 Cache Handle": "Not Provided", + "Serial Number": "Not Specified", + "Asset Tag": "Not Specified", + "Part Number": "Not Specified", + "Core Count": "1", + "Core Enabled": "1", + "Thread Count": "1", + "Characteristics": "None" + }, + { + "record_id": "0x0402", + "size": "4", + "application_identifier": "Processor Information", + "Socket Designation": "CPU 2", + "Type": "Central Processor", + "Family": "Other", + "Manufacturer": "Red Hat", + "ID": "54 06 05 00 FF FB 8B 0F", + "Version": "RHEL 7.6.0 PC (i440FX + PIIX, 1996)", + "Voltage": "Unknown", + "External Clock": "Unknown", + "Max Speed": "2000 MHz", + "Current Speed": "2000 MHz", + "Status": "Populated, Enabled", + "Upgrade": "Other", + "L1 Cache Handle": "Not Provided", + "L2 Cache Handle": "Not Provided", + "L3 Cache Handle": "Not Provided", + "Serial Number": "Not Specified", + "Asset Tag": "Not Specified", + "Part Number": "Not Specified", + "Core Count": "1", + "Core Enabled": "1", + "Thread Count": "1", + "Characteristics": "None" + }, + { + "record_id": "0x0403", + "size": "4", + "application_identifier": "Processor Information", + "Socket Designation": "CPU 3", + "Type": "Central Processor", + "Family": "Other", + "Manufacturer": "Red Hat", + "ID": "54 06 05 00 FF FB 8B 0F", + "Version": "RHEL 7.6.0 PC (i440FX + PIIX, 1996)", + "Voltage": "Unknown", + "External Clock": "Unknown", + "Max Speed": "2000 MHz", + "Current Speed": "2000 MHz", + "Status": "Populated, Enabled", + "Upgrade": "Other", + "L1 Cache Handle": "Not Provided", + "L2 Cache Handle": "Not Provided", + "L3 Cache Handle": "Not Provided", + "Serial Number": "Not Specified", + "Asset Tag": "Not Specified", + "Part Number": "Not Specified", + "Core Count": "1", + "Core Enabled": "1", + "Thread Count": "1", + "Characteristics": "None" + } + ], + "type": "Central Processor", + "family": "Other", + "manufacturer": "Red Hat", + "id": "54 06 05 00 FF FB 8B 0F", + "version": "RHEL 7.6.0 PC (i440FX + PIIX, 1996)", + "voltage": "Unknown", + "external_clock": "Unknown", + "max_speed": "2000 MHz", + "current_speed": "2000 MHz", + "status": "Populated, Enabled", + "upgrade": "Other", + "l1_cache_handle": "Not Provided", + "l2_cache_handle": "Not Provided", + "l3_cache_handle": "Not Provided", + "serial_number": "Not Specified", + "asset_tag": "Not Specified", + "part_number": "Not Specified", + "core_count": "1", + "core_enabled": "1", + "thread_count": "1", + "characteristics": "None" + } + }, + "domain": "local", + "filesystem": { + "by_device": { + "/dev/sda2": { + "kb_size": "51512120", + "kb_used": "1147180", + "kb_available": "48209748", + "percent_used": "3%", + "total_inodes": "3276800", + "inodes_used": "46327", + "inodes_available": "3230473", + "inodes_percent_used": "2%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ], + "uuid": "df04d870-bad0-44df-9caf-5959d5f947d6", + "mounts": [ + "/" + ] + }, + "devtmpfs": { + "kb_size": "4096", + "kb_used": "0", + "kb_available": "4096", + "percent_used": "0%", + "total_inodes": "461079", + "inodes_used": "420", + "inodes_available": "460659", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=4096k", + "nr_inodes=461079", + "mode=755", + "inode64" + ], + "mounts": [ + "/dev" + ] + }, + "tmpfs": { + "kb_size": "374056", + "kb_used": "4", + "kb_available": "374052", + "percent_used": "1%", + "total_inodes": "93514", + "inodes_used": "19", + "inodes_available": "93495", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=374056k", + "nr_inodes=93514", + "mode=700", + "uid=1001", + "gid=1001", + "inode64" + ], + "mounts": [ + "/dev/shm", + "/run", + "/run/credentials/systemd-journald.service", + "/run/credentials/getty@tty1.service", + "/run/credentials/serial-getty@ttyS0.service", + "/run/user/1001" + ] + }, + "devpts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "mounts": [ + "/dev/pts" + ] + }, + "sysfs": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys" + ] + }, + "securityfs": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/security" + ] + }, + "cgroup2": { + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "nsdelegate", + "memory_recursiveprot" + ], + "mounts": [ + "/sys/fs/cgroup" + ] + }, + "pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/fs/pstore" + ] + }, + "bpf": { + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "mounts": [ + "/sys/fs/bpf" + ] + }, + "configfs": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/config" + ] + }, + "proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/proc" + ] + }, + "selinuxfs": { + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/fs/selinux" + ] + }, + "systemd-1": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=35", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=2786" + ], + "mounts": [ + "/proc/sys/fs/binfmt_misc" + ] + }, + "debugfs": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/kernel/debug" + ] + }, + "mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/dev/mqueue" + ] + }, + "hugetlbfs": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "pagesize=2M" + ], + "mounts": [ + "/dev/hugepages" + ] + }, + "tracefs": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/kernel/tracing" + ] + }, + "fusectl": { + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/fs/fuse/connections" + ] + }, + "/dev/sda": { + "mounts": [] + }, + "/dev/sda1": { + "mounts": [] + } + }, + "by_mountpoint": { + "/": { + "kb_size": "51512120", + "kb_used": "1147180", + "kb_available": "48209748", + "percent_used": "3%", + "total_inodes": "3276800", + "inodes_used": "46327", + "inodes_available": "3230473", + "inodes_percent_used": "2%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ], + "uuid": "df04d870-bad0-44df-9caf-5959d5f947d6", + "devices": [ + "/dev/sda2" + ] + }, + "/dev": { + "kb_size": "4096", + "kb_used": "0", + "kb_available": "4096", + "percent_used": "0%", + "total_inodes": "461079", + "inodes_used": "420", + "inodes_available": "460659", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=4096k", + "nr_inodes=461079", + "mode=755", + "inode64" + ], + "devices": [ + "devtmpfs" + ] + }, + "/dev/shm": { + "kb_size": "1870296", + "kb_used": "0", + "kb_available": "1870296", + "percent_used": "0%", + "total_inodes": "467574", + "inodes_used": "2", + "inodes_available": "467572", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/run": { + "kb_size": "748120", + "kb_used": "8768", + "kb_available": "739352", + "percent_used": "2%", + "total_inodes": "819200", + "inodes_used": "633", + "inodes_available": "818567", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "size=748120k", + "nr_inodes=819200", + "mode=755", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/run/credentials/systemd-journald.service": { + "kb_size": "1024", + "kb_used": "0", + "kb_available": "1024", + "percent_used": "0%", + "total_inodes": "1024", + "inodes_used": "2", + "inodes_available": "1022", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "nosymfollow", + "seclabel", + "size=1024k", + "nr_inodes=1024", + "mode=700", + "inode64", + "noswap" + ], + "devices": [ + "tmpfs" + ] + }, + "/run/credentials/getty@tty1.service": { + "kb_size": "1024", + "kb_used": "0", + "kb_available": "1024", + "percent_used": "0%", + "total_inodes": "1024", + "inodes_used": "2", + "inodes_available": "1022", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "nosymfollow", + "seclabel", + "size=1024k", + "nr_inodes=1024", + "mode=700", + "inode64", + "noswap" + ], + "devices": [ + "tmpfs" + ] + }, + "/run/credentials/serial-getty@ttyS0.service": { + "kb_size": "1024", + "kb_used": "0", + "kb_available": "1024", + "percent_used": "0%", + "total_inodes": "1024", + "inodes_used": "2", + "inodes_available": "1022", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "nosymfollow", + "seclabel", + "size=1024k", + "nr_inodes=1024", + "mode=700", + "inode64", + "noswap" + ], + "devices": [ + "tmpfs" + ] + }, + "/run/user/1001": { + "kb_size": "374056", + "kb_used": "4", + "kb_available": "374052", + "percent_used": "1%", + "total_inodes": "93514", + "inodes_used": "19", + "inodes_available": "93495", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=374056k", + "nr_inodes=93514", + "mode=700", + "uid=1001", + "gid=1001", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/dev/pts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "devices": [ + "devpts" + ] + }, + "/sys": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "sysfs" + ] + }, + "/sys/kernel/security": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "securityfs" + ] + }, + "/sys/fs/cgroup": { + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "nsdelegate", + "memory_recursiveprot" + ], + "devices": [ + "cgroup2" + ] + }, + "/sys/fs/pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "pstore" + ] + }, + "/sys/fs/bpf": { + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "devices": [ + "bpf" + ] + }, + "/sys/kernel/config": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "configfs" + ] + }, + "/proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "proc" + ] + }, + "/sys/fs/selinux": { + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime" + ], + "devices": [ + "selinuxfs" + ] + }, + "/proc/sys/fs/binfmt_misc": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=35", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=2786" + ], + "devices": [ + "systemd-1" + ] + }, + "/sys/kernel/debug": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "debugfs" + ] + }, + "/dev/mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "mqueue" + ] + }, + "/dev/hugepages": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "pagesize=2M" + ], + "devices": [ + "hugetlbfs" + ] + }, + "/sys/kernel/tracing": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "tracefs" + ] + }, + "/sys/fs/fuse/connections": { + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "fusectl" + ] + } + }, + "by_pair": { + "/dev/sda2,/": { + "device": "/dev/sda2", + "kb_size": "51512120", + "kb_used": "1147180", + "kb_available": "48209748", + "percent_used": "3%", + "mount": "/", + "total_inodes": "3276800", + "inodes_used": "46327", + "inodes_available": "3230473", + "inodes_percent_used": "2%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ], + "uuid": "df04d870-bad0-44df-9caf-5959d5f947d6" + }, + "devtmpfs,/dev": { + "device": "devtmpfs", + "kb_size": "4096", + "kb_used": "0", + "kb_available": "4096", + "percent_used": "0%", + "mount": "/dev", + "total_inodes": "461079", + "inodes_used": "420", + "inodes_available": "460659", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=4096k", + "nr_inodes=461079", + "mode=755", + "inode64" + ] + }, + "tmpfs,/dev/shm": { + "device": "tmpfs", + "kb_size": "1870296", + "kb_used": "0", + "kb_available": "1870296", + "percent_used": "0%", + "mount": "/dev/shm", + "total_inodes": "467574", + "inodes_used": "2", + "inodes_available": "467572", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "inode64" + ] + }, + "tmpfs,/run": { + "device": "tmpfs", + "kb_size": "748120", + "kb_used": "8768", + "kb_available": "739352", + "percent_used": "2%", + "mount": "/run", + "total_inodes": "819200", + "inodes_used": "633", + "inodes_available": "818567", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "size=748120k", + "nr_inodes=819200", + "mode=755", + "inode64" + ] + }, + "tmpfs,/run/credentials/systemd-journald.service": { + "device": "tmpfs", + "kb_size": "1024", + "kb_used": "0", + "kb_available": "1024", + "percent_used": "0%", + "mount": "/run/credentials/systemd-journald.service", + "total_inodes": "1024", + "inodes_used": "2", + "inodes_available": "1022", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "nosymfollow", + "seclabel", + "size=1024k", + "nr_inodes=1024", + "mode=700", + "inode64", + "noswap" + ] + }, + "tmpfs,/run/credentials/getty@tty1.service": { + "device": "tmpfs", + "kb_size": "1024", + "kb_used": "0", + "kb_available": "1024", + "percent_used": "0%", + "mount": "/run/credentials/getty@tty1.service", + "total_inodes": "1024", + "inodes_used": "2", + "inodes_available": "1022", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "nosymfollow", + "seclabel", + "size=1024k", + "nr_inodes=1024", + "mode=700", + "inode64", + "noswap" + ] + }, + "tmpfs,/run/credentials/serial-getty@ttyS0.service": { + "device": "tmpfs", + "kb_size": "1024", + "kb_used": "0", + "kb_available": "1024", + "percent_used": "0%", + "mount": "/run/credentials/serial-getty@ttyS0.service", + "total_inodes": "1024", + "inodes_used": "2", + "inodes_available": "1022", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "nosymfollow", + "seclabel", + "size=1024k", + "nr_inodes=1024", + "mode=700", + "inode64", + "noswap" + ] + }, + "tmpfs,/run/user/1001": { + "device": "tmpfs", + "kb_size": "374056", + "kb_used": "4", + "kb_available": "374052", + "percent_used": "1%", + "mount": "/run/user/1001", + "total_inodes": "93514", + "inodes_used": "19", + "inodes_available": "93495", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=374056k", + "nr_inodes=93514", + "mode=700", + "uid=1001", + "gid=1001", + "inode64" + ] + }, + "devpts,/dev/pts": { + "device": "devpts", + "mount": "/dev/pts", + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ] + }, + "sysfs,/sys": { + "device": "sysfs", + "mount": "/sys", + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "securityfs,/sys/kernel/security": { + "device": "securityfs", + "mount": "/sys/kernel/security", + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "cgroup2,/sys/fs/cgroup": { + "device": "cgroup2", + "mount": "/sys/fs/cgroup", + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "nsdelegate", + "memory_recursiveprot" + ] + }, + "pstore,/sys/fs/pstore": { + "device": "pstore", + "mount": "/sys/fs/pstore", + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "bpf,/sys/fs/bpf": { + "device": "bpf", + "mount": "/sys/fs/bpf", + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ] + }, + "configfs,/sys/kernel/config": { + "device": "configfs", + "mount": "/sys/kernel/config", + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "proc,/proc": { + "device": "proc", + "mount": "/proc", + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "selinuxfs,/sys/fs/selinux": { + "device": "selinuxfs", + "mount": "/sys/fs/selinux", + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime" + ] + }, + "systemd-1,/proc/sys/fs/binfmt_misc": { + "device": "systemd-1", + "mount": "/proc/sys/fs/binfmt_misc", + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=35", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=2786" + ] + }, + "debugfs,/sys/kernel/debug": { + "device": "debugfs", + "mount": "/sys/kernel/debug", + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "mqueue,/dev/mqueue": { + "device": "mqueue", + "mount": "/dev/mqueue", + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "hugetlbfs,/dev/hugepages": { + "device": "hugetlbfs", + "mount": "/dev/hugepages", + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "pagesize=2M" + ] + }, + "tracefs,/sys/kernel/tracing": { + "device": "tracefs", + "mount": "/sys/kernel/tracing", + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "fusectl,/sys/fs/fuse/connections": { + "device": "fusectl", + "mount": "/sys/fs/fuse/connections", + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "/dev/sda,": { + "device": "/dev/sda" + }, + "/dev/sda1,": { + "device": "/dev/sda1" + } + } + }, + "fips": { + "kernel": { + "enabled": false + } + }, + "fqdn": "fauxhai.local", + "hostname": "Fauxhai", + "idle": "30 days 15 hours 07 minutes 30 seconds", + "idletime_seconds": 2646450, + "init_package": "systemd", + "ipaddress": "10.0.0.2", + "kernel": { + "name": "Linux", + "release": "6.12.0-55.9.1.el10_0.x86_64", + "version": "#1 SMP PREEMPT_DYNAMIC Sat May 24 12:41:28 EDT 2025", + "machine": "x86_64", + "processor": "unknown", + "os": "GNU/Linux", + "modules": { + "cfg80211": { + "size": "1372160", + "refcount": "0" + }, + "rfkill": { + "size": "40960", + "refcount": "2" + }, + "8021q": { + "size": "53248", + "refcount": "0", + "version": "1.8" + }, + "garp": { + "size": "16384", + "refcount": "1" + }, + "mrp": { + "size": "20480", + "refcount": "1" + }, + "stp": { + "size": "12288", + "refcount": "1" + }, + "llc": { + "size": "16384", + "refcount": "2" + }, + "intel_rapl_msr": { + "size": "20480", + "refcount": "0" + }, + "intel_rapl_common": { + "size": "53248", + "refcount": "1" + }, + "intel_uncore_frequency_common": { + "size": "16384", + "refcount": "0" + }, + "skx_edac_common": { + "size": "32768", + "refcount": "0" + }, + "nfit": { + "size": "90112", + "refcount": "1" + }, + "libnvdimm": { + "size": "245760", + "refcount": "1" + }, + "kvm_intel": { + "size": "446464", + "refcount": "0" + }, + "kvm": { + "size": "1400832", + "refcount": "1" + }, + "rapl": { + "size": "24576", + "refcount": "0" + }, + "virtio_gpu": { + "size": "102400", + "refcount": "0" + }, + "i2c_piix4": { + "size": "36864", + "refcount": "0" + }, + "i2c_smbus": { + "size": "20480", + "refcount": "1" + }, + "virtio_balloon": { + "size": "32768", + "refcount": "0" + }, + "virtio_dma_buf": { + "size": "12288", + "refcount": "1" + }, + "pcspkr": { + "size": "12288", + "refcount": "0" + }, + "sg": { + "size": "57344", + "refcount": "0", + "version": "3.5.36" + }, + "joydev": { + "size": "28672", + "refcount": "0" + }, + "fuse": { + "size": "253952", + "refcount": "1" + }, + "loop": { + "size": "45056", + "refcount": "0" + }, + "nfnetlink": { + "size": "20480", + "refcount": "1" + }, + "vsock_loopback": { + "size": "12288", + "refcount": "0" + }, + "vmw_vsock_virtio_transport_common": { + "size": "61440", + "refcount": "1" + }, + "vmw_vsock_vmci_transport": { + "size": "49152", + "refcount": "0", + "version": "1.0.5.0-k" + }, + "vsock": { + "size": "65536", + "refcount": "5", + "version": "1.0.2.0-k" + }, + "vmw_vmci": { + "size": "118784", + "refcount": "1", + "version": "1.1.6.0-k" + }, + "ext4": { + "size": "1187840", + "refcount": "1" + }, + "mbcache": { + "size": "16384", + "refcount": "1" + }, + "jbd2": { + "size": "217088", + "refcount": "1" + }, + "ata_generic": { + "size": "16384", + "refcount": "0", + "version": "0.2.15" + }, + "sd_mod": { + "size": "90112", + "refcount": "1" + }, + "ata_piix": { + "size": "45056", + "refcount": "0", + "version": "2.13" + }, + "virtio_net": { + "size": "126976", + "refcount": "0" + }, + "net_failover": { + "size": "24576", + "refcount": "1" + }, + "libata": { + "size": "512000", + "refcount": "2", + "version": "3.00" + }, + "crct10dif_pclmul": { + "size": "12288", + "refcount": "1" + }, + "crc32_pclmul": { + "size": "12288", + "refcount": "0" + }, + "crc32c_intel": { + "size": "16384", + "refcount": "2" + }, + "failover": { + "size": "12288", + "refcount": "1" + }, + "ghash_clmulni_intel": { + "size": "16384", + "refcount": "0" + }, + "virtio_scsi": { + "size": "28672", + "refcount": "1" + }, + "serio_raw": { + "size": "20480", + "refcount": "0" + }, + "dm_mirror": { + "size": "28672", + "refcount": "0" + }, + "dm_region_hash": { + "size": "28672", + "refcount": "1" + }, + "dm_log": { + "size": "24576", + "refcount": "2" + }, + "dm_mod": { + "size": "245760", + "refcount": "2" + }, + "virtio_console": { + "size": "49152", + "refcount": "1" + } + } + }, + "keys": { + "ssh": { + "host_dsa_public": "ssh-dss AAAAB3NzaC1kc3MAAACBAJFo9BLAw4WKEs5hgipk5m423FzBsDXCZSMcC9ca/om/1VYzMqImixGe3uICDzNFUWxFoLJTQAOccyzo6MXZiQqwWJDLFi5qOSr6w2XcMyE+zd4wOyMoDiVM5fizmG8K3FzrqvGjwBcHcBdOQnavSijoj38DN25J9zhrid5BY4WlAAAAFQDxXrCyG52XCzn3FV4ej38wJBkomQAAAIBovGPJ4mP2P6BK8lHl0PPbktwQbWlpJ13oz6REJFDVcUi7vV26bX/BjQX+ohzZQzljdz1SpUbPc/8nuA4darYkVh91eBi307EN8IdxRHj2eBgp/ZG4yshIebG3WHrwJD/xUjjZ1MRfyDT1ermVi4LvjjPgWDxLZnPpMaR6S1nzgQAAAIEAj0Vd6DCWslvlsZ8+N53HWsqPi3gnx35JoLPz9Z2epkKIKqmEHav+93G3hdfztVa4I4t3phoPniQchYryF5+RNg8hqxKzjNtrIqUYCeuf2NJrksNsH7OZygPHZpqt4kTuwAGZxjxEGfAI0y8DhkU2ntp2LnzRnWH106BQBCmcXwo= fauxhai.local", + "host_rsa_public": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCtLCeqtqr/HbnORckw1ukdLhpfGoOPFi5/esKEokzTqq1gsgQ2V8emmyjfq1i6XXfRtSBxkdlHv/GWdP5wBTuE2G85MzBkVSQPvmwQN8lX/JMPEEtKXkeOo0o92/PiSmvY4eRsdF0mw40Uvg7jtE3f3fxj497kzh5fKtkrHnF4x9gXCbVdr3FqXJfggR5IJwAxToerbK7x/uRS+7YuZI9Pip3tt14nv9ezwXcuGb/tvjWOZINiFl8izVIFKi7sxfTX09p4NgamxRS7TD2Yd0jT8nEoF9UZTsgXcJ1kDSx7N7NxFfNfP6rCdOGRRz4gUhXtsUjG/XkxPeCwZ7A9VnOD fauxhai.local" + } + }, + "languages": { + "ruby": { + "platform": "x86_64-linux", + "version": "3.1.6", + "release_date": "2024-05-29", + "target": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_vendor": "pc", + "target_os": "linux", + "host": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux", + "host_vendor": "pc", + "bin_dir": "/usr/local/bin", + "ruby_bin": "/usr/local/bin/ruby", + "gem_bin": "/usr/local/bin/gem", + "gems_dir": "/usr/local/gems" + }, + "powershell": null + }, + "lsb": {}, + "macaddress": "11:11:11:11:11:11", + "machinename": "Fauxhai", + "memory": { + "total": "1048576kB" + }, + "network": { + "interfaces": { + "lo": { + "mtu": "65536", + "flags": [ + "LOOPBACK", + "UP", + "LOWER_UP" + ], + "encapsulation": "Loopback", + "addresses": { + "127.0.0.1": { + "family": "inet", + "prefixlen": "8", + "netmask": "255.0.0.0", + "scope": "Node", + "ip_scope": "LOOPBACK" + }, + "::1": { + "family": "inet6", + "prefixlen": "128", + "scope": "Node", + "tags": [], + "ip_scope": "LINK LOCAL LOOPBACK" + } + }, + "state": "unknown" + }, + "eth0": { + "type": "eth", + "number": "0", + "mtu": "1500", + "flags": [ + "BROADCAST", + "MULTICAST", + "UP", + "LOWER_UP" + ], + "encapsulation": "Ethernet", + "addresses": { + "11:11:11:11:11:11": { + "family": "lladdr" + }, + "10.0.0.2": { + "family": "inet", + "prefixlen": "24", + "netmask": "255.255.255.0", + "broadcast": "10.0.0.255", + "scope": "Global", + "ip_scope": "RFC1918 PRIVATE" + }, + "fe80::11:1111:1111:1111": { + "family": "inet6", + "prefixlen": "64", + "scope": "Link", + "tags": [], + "ip_scope": "LINK LOCAL UNICAST" + } + }, + "state": "up", + "arp": { + "10.0.0.1": "fe:ff:ff:ff:ff:ff" + }, + "routes": [ + { + "destination": "default", + "family": "inet", + "via": "10.0.0.1" + }, + { + "destination": "10.0.0.0/24", + "family": "inet", + "scope": "link", + "proto": "kernel", + "src": "10.0.0.2" + }, + { + "destination": "fe80::/64", + "family": "inet6", + "metric": "256", + "proto": "kernel" + } + ], + "ring_params": {} + } + }, + "default_interface": "eth0", + "default_gateway": "10.0.0.1" + }, + "ohai_time": 1751326220.9434512, + "os": "linux", + "os_version": "6.12.0-55.9.1.el10_0.x86_64", + "packages": { + "libgcc": { + "epoch": "0", + "version": "14.2.1", + "release": "7.el10.alma.1", + "installdate": "1748640927", + "arch": "x86_64" + }, + "tzdata": { + "epoch": "0", + "version": "2025b", + "release": "1.el10", + "installdate": "1748640928", + "arch": "noarch" + }, + "fonts-filesystem": { + "epoch": "1", + "version": "2.0.5", + "release": "18.el10", + "installdate": "1748640928", + "arch": "noarch" + }, + "google-noto-fonts-common": { + "epoch": "0", + "version": "20240401", + "release": "5.el10", + "installdate": "1748640928", + "arch": "noarch" + }, + "google-noto-sans-mono-vf-fonts": { + "epoch": "0", + "version": "20240401", + "release": "5.el10", + "installdate": "1748640928", + "arch": "noarch" + }, + "google-noto-sans-vf-fonts": { + "epoch": "0", + "version": "20240401", + "release": "5.el10", + "installdate": "1748640928", + "arch": "noarch" + }, + "google-noto-serif-vf-fonts": { + "epoch": "0", + "version": "20240401", + "release": "5.el10", + "installdate": "1748640928", + "arch": "noarch" + }, + "redhat-mono-vf-fonts": { + "epoch": "0", + "version": "4.0.3", + "release": "14.el10", + "installdate": "1748640928", + "arch": "noarch" + }, + "redhat-text-vf-fonts": { + "epoch": "0", + "version": "4.0.3", + "release": "14.el10", + "installdate": "1748640928", + "arch": "noarch" + }, + "default-fonts-core-sans": { + "epoch": "0", + "version": "4.1", + "release": "3.el10", + "installdate": "1748640928", + "arch": "noarch" + }, + "langpacks-fonts-en": { + "epoch": "0", + "version": "4.1", + "release": "3.el10", + "installdate": "1748640928", + "arch": "noarch" + }, + "vim-data": { + "epoch": "2", + "version": "9.1.083", + "release": "5.el10", + "installdate": "1748640928", + "arch": "noarch" + }, + "publicsuffix-list-dafsa": { + "epoch": "0", + "version": "20240107", + "release": "5.el10", + "installdate": "1748640928", + "arch": "noarch" + }, + "pcre2-syntax": { + "epoch": "0", + "version": "10.44", + "release": "1.el10.3", + "installdate": "1748640928", + "arch": "noarch" + }, + "ncurses-base": { + "epoch": "0", + "version": "6.4", + "release": "14.20240127.el10", + "installdate": "1748640928", + "arch": "noarch" + }, + "libssh-config": { + "epoch": "0", + "version": "0.11.1", + "release": "1.el10", + "installdate": "1748640928", + "arch": "noarch" + }, + "kbd-misc": { + "epoch": "0", + "version": "2.6.4", + "release": "7.el10", + "installdate": "1748640928", + "arch": "noarch" + }, + "kbd-legacy": { + "epoch": "0", + "version": "2.6.4", + "release": "7.el10", + "installdate": "1748640928", + "arch": "noarch" + }, + "hwdata": { + "epoch": "0", + "version": "0.379", + "release": "10.4.el10", + "installdate": "1748640928", + "arch": "noarch" + }, + "dnf-data": { + "epoch": "0", + "version": "4.20.0", + "release": "12.el10_0.alma.1", + "installdate": "1748640928", + "arch": "noarch" + }, + "coreutils-common": { + "epoch": "0", + "version": "9.5", + "release": "6.el10", + "installdate": "1748640928", + "arch": "x86_64" + }, + "almalinux-gpg-keys": { + "epoch": "0", + "version": "10.0", + "release": "30.el10", + "installdate": "1748640928", + "arch": "x86_64" + }, + "almalinux-release": { + "epoch": "0", + "version": "10.0", + "release": "30.el10", + "installdate": "1748640928", + "arch": "x86_64" + }, + "almalinux-repos": { + "epoch": "0", + "version": "10.0", + "release": "30.el10", + "installdate": "1748640928", + "arch": "x86_64" + }, + "setup": { + "epoch": "0", + "version": "2.14.5", + "release": "4.el10", + "installdate": "1748640928", + "arch": "noarch" + }, + "filesystem": { + "epoch": "0", + "version": "3.18", + "release": "16.el10", + "installdate": "1748640928", + "arch": "x86_64" + }, + "basesystem": { + "epoch": "0", + "version": "11", + "release": "22.el10", + "installdate": "1748640928", + "arch": "noarch" + }, + "ncurses-libs": { + "epoch": "0", + "version": "6.4", + "release": "14.20240127.el10", + "installdate": "1748640928", + "arch": "x86_64" + }, + "glibc": { + "epoch": "0", + "version": "2.39", + "release": "37.el10.alma.1", + "installdate": "1748640928", + "arch": "x86_64" + }, + "bash": { + "epoch": "0", + "version": "5.2.26", + "release": "6.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "glibc-common": { + "epoch": "0", + "version": "2.39", + "release": "37.el10.alma.1", + "installdate": "1748640929", + "arch": "x86_64" + }, + "glibc-langpack-en": { + "epoch": "0", + "version": "2.39", + "release": "37.el10.alma.1", + "installdate": "1748640929", + "arch": "x86_64" + }, + "zlib-ng-compat": { + "epoch": "0", + "version": "2.2.3", + "release": "1.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libuuid": { + "epoch": "0", + "version": "2.40.2", + "release": "10.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "xz-libs": { + "epoch": "1", + "version": "5.6.2", + "release": "4.el10_0", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libblkid": { + "epoch": "0", + "version": "2.40.2", + "release": "10.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "popt": { + "epoch": "0", + "version": "1.19", + "release": "8.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libzstd": { + "epoch": "0", + "version": "1.5.5", + "release": "9.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libcom_err": { + "epoch": "0", + "version": "1.47.1", + "release": "3.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libxcrypt": { + "epoch": "0", + "version": "4.4.36", + "release": "10.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "crypto-policies": { + "epoch": "0", + "version": "20250214", + "release": "1.gitfd9b9b9.el10", + "installdate": "1748640929", + "arch": "noarch" + }, + "bzip2-libs": { + "epoch": "0", + "version": "1.0.8", + "release": "25.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libstdc++": { + "epoch": "0", + "version": "14.2.1", + "release": "7.el10.alma.1", + "installdate": "1748640929", + "arch": "x86_64" + }, + "pcre2": { + "epoch": "0", + "version": "10.44", + "release": "1.el10.3", + "installdate": "1748640929", + "arch": "x86_64" + }, + "grep": { + "epoch": "0", + "version": "3.11", + "release": "10.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libtalloc": { + "epoch": "0", + "version": "2.4.2", + "release": "106.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "readline": { + "epoch": "0", + "version": "8.2", + "release": "11.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libxml2": { + "epoch": "0", + "version": "2.12.5", + "release": "5.el10_0", + "installdate": "1748640929", + "arch": "x86_64" + }, + "alternatives": { + "epoch": "0", + "version": "1.30", + "release": "2.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "gdbm-libs": { + "epoch": "1", + "version": "1.23", + "release": "12.el10_0", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libattr": { + "epoch": "0", + "version": "2.5.2", + "release": "5.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libacl": { + "epoch": "0", + "version": "2.3.2", + "release": "4.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libcap-ng": { + "epoch": "0", + "version": "0.8.4", + "release": "6.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "audit-libs": { + "epoch": "0", + "version": "4.0.3", + "release": "1.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libunistring": { + "epoch": "0", + "version": "1.1", + "release": "10.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libidn2": { + "epoch": "0", + "version": "2.3.7", + "release": "3.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "sqlite-libs": { + "epoch": "0", + "version": "3.46.1", + "release": "4.el10_0", + "installdate": "1748640929", + "arch": "x86_64" + }, + "grub2-common": { + "epoch": "1", + "version": "2.12", + "release": "14.el10_0.alma.1", + "installdate": "1748640929", + "arch": "noarch" + }, + "keyutils-libs": { + "epoch": "0", + "version": "1.6.3", + "release": "5.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libmnl": { + "epoch": "0", + "version": "1.0.5", + "release": "7.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libsepol": { + "epoch": "0", + "version": "3.8", + "release": "1.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "sed": { + "epoch": "0", + "version": "4.9", + "release": "3.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "findutils": { + "epoch": "1", + "version": "4.10.0", + "release": "5.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libmount": { + "epoch": "0", + "version": "2.40.2", + "release": "10.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libsmartcols": { + "epoch": "0", + "version": "2.40.2", + "release": "10.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libtevent": { + "epoch": "0", + "version": "0.16.1", + "release": "106.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libbpf": { + "epoch": "2", + "version": "1.5.0", + "release": "4.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libfdisk": { + "epoch": "0", + "version": "2.40.2", + "release": "10.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "expat": { + "epoch": "0", + "version": "2.7.1", + "release": "1.el10_0", + "installdate": "1748640929", + "arch": "x86_64" + }, + "gmp": { + "epoch": "1", + "version": "6.2.1", + "release": "10.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "json-c": { + "epoch": "0", + "version": "0.18", + "release": "3.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libeconf": { + "epoch": "0", + "version": "0.6.2", + "release": "4.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "pam-libs": { + "epoch": "0", + "version": "1.6.1", + "release": "7.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libcap": { + "epoch": "0", + "version": "2.69", + "release": "7.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "systemd-libs": { + "epoch": "0", + "version": "257", + "release": "9.el10_0.1.alma.1", + "installdate": "1748640929", + "arch": "x86_64" + }, + "util-linux-core": { + "epoch": "0", + "version": "2.40.2", + "release": "10.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libedit": { + "epoch": "0", + "version": "3.1", + "release": "52.20230828cvs.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libffi": { + "epoch": "0", + "version": "3.4.4", + "release": "9.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "libtasn1": { + "epoch": "0", + "version": "4.20.0", + "release": "1.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "p11-kit": { + "epoch": "0", + "version": "0.25.5", + "release": "7.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "p11-kit-trust": { + "epoch": "0", + "version": "0.25.5", + "release": "7.el10", + "installdate": "1748640929", + "arch": "x86_64" + }, + "gnutls": { + "epoch": "0", + "version": "3.8.9", + "release": "9.el10", + "installdate": "1748640930", + "arch": "x86_64" + }, + "glib2": { + "epoch": "0", + "version": "2.80.4", + "release": "4.el10", + "installdate": "1748640930", + "arch": "x86_64" + }, + "openssl-libs": { + "epoch": "1", + "version": "3.2.2", + "release": "16.el10.alma.1", + "installdate": "1748640930", + "arch": "x86_64" + }, + "coreutils": { + "epoch": "0", + "version": "9.5", + "release": "6.el10", + "installdate": "1748640930", + "arch": "x86_64" + }, + "ca-certificates": { + "epoch": "0", + "version": "2024.2.69_v8.0.303", + "release": "102.3.el10", + "installdate": "1748640930", + "arch": "noarch" + }, + "gzip": { + "epoch": "0", + "version": "1.13", + "release": "3.el10", + "installdate": "1748640932", + "arch": "x86_64" + }, + "kmod": { + "epoch": "0", + "version": "31", + "release": "11.el10", + "installdate": "1748640932", + "arch": "x86_64" + }, + "kmod-libs": { + "epoch": "0", + "version": "31", + "release": "11.el10", + "installdate": "1748640932", + "arch": "x86_64" + }, + "cracklib": { + "epoch": "0", + "version": "2.9.11", + "release": "8.el10", + "installdate": "1748640932", + "arch": "x86_64" + }, + "dbus-libs": { + "epoch": "1", + "version": "1.14.10", + "release": "5.el10", + "installdate": "1748640932", + "arch": "x86_64" + }, + "libsemanage": { + "epoch": "0", + "version": "3.8.1", + "release": "1.el10_0", + "installdate": "1748640932", + "arch": "x86_64" + }, + "shadow-utils": { + "epoch": "2", + "version": "4.15.0", + "release": "5.el10", + "installdate": "1748640932", + "arch": "x86_64" + }, + "tpm2-tss": { + "epoch": "0", + "version": "4.1.3", + "release": "5.el10", + "installdate": "1748640932", + "arch": "x86_64" + }, + "libpsl": { + "epoch": "0", + "version": "0.21.5", + "release": "6.el10", + "installdate": "1748640932", + "arch": "x86_64" + }, + "cyrus-sasl-lib": { + "epoch": "0", + "version": "2.1.28", + "release": "27.el10", + "installdate": "1748640932", + "arch": "x86_64" + }, + "file-libs": { + "epoch": "0", + "version": "5.45", + "release": "7.el10", + "installdate": "1748640932", + "arch": "x86_64" + }, + "file": { + "epoch": "0", + "version": "5.45", + "release": "7.el10", + "installdate": "1748640932", + "arch": "x86_64" + }, + "diffutils": { + "epoch": "0", + "version": "3.10", + "release": "8.el10", + "installdate": "1748640932", + "arch": "x86_64" + }, + "libbasicobjects": { + "epoch": "0", + "version": "0.1.1", + "release": "58.el10", + "installdate": "1748640932", + "arch": "x86_64" + }, + "libcollection": { + "epoch": "0", + "version": "0.7.0", + "release": "58.el10", + "installdate": "1748640932", + "arch": "x86_64" + }, + "libdhash": { + "epoch": "0", + "version": "0.5.0", + "release": "58.el10", + "installdate": "1748640932", + "arch": "x86_64" + }, + "libnl3": { + "epoch": "0", + "version": "3.11.0", + "release": "1.el10", + "installdate": "1748640932", + "arch": "x86_64" + }, + "libref_array": { + "epoch": "0", + "version": "0.1.5", + "release": "58.el10", + "installdate": "1748640932", + "arch": "x86_64" + }, + "libseccomp": { + "epoch": "0", + "version": "2.5.3", + "release": "10.el10", + "installdate": "1748640932", + "arch": "x86_64" + }, + "libsss_idmap": { + "epoch": "0", + "version": "2.10.2", + "release": "3.el10_0.2", + "installdate": "1748640932", + "arch": "x86_64" + }, + "libtdb": { + "epoch": "0", + "version": "1.4.12", + "release": "102.el10", + "installdate": "1748640932", + "arch": "x86_64" + }, + "libyaml": { + "epoch": "0", + "version": "0.2.5", + "release": "16.el10", + "installdate": "1748640932", + "arch": "x86_64" + }, + "lua-libs": { + "epoch": "0", + "version": "5.4.6", + "release": "7.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "lz4-libs": { + "epoch": "0", + "version": "1.9.4", + "release": "8.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "numactl-libs": { + "epoch": "0", + "version": "2.0.19", + "release": "1.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "erofs-utils": { + "epoch": "0", + "version": "1.8.4", + "release": "2.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "libutempter": { + "epoch": "0", + "version": "1.2.1", + "release": "15.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "cracklib-dicts": { + "epoch": "0", + "version": "2.9.11", + "release": "8.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "libpwquality": { + "epoch": "0", + "version": "1.4.5", + "release": "12.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "python3-pip-wheel": { + "epoch": "0", + "version": "23.3.2", + "release": "7.el10", + "installdate": "1748640933", + "arch": "noarch" + }, + "which": { + "epoch": "0", + "version": "2.21", + "release": "43.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "libevent": { + "epoch": "0", + "version": "2.1.12", + "release": "16.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "openldap": { + "epoch": "0", + "version": "2.6.8", + "release": "3.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "libsss_certmap": { + "epoch": "0", + "version": "2.10.2", + "release": "3.el10_0.2", + "installdate": "1748640933", + "arch": "x86_64" + }, + "rpm-sequoia": { + "epoch": "0", + "version": "1.6.0", + "release": "6.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "rpm-plugin-audit": { + "epoch": "0", + "version": "4.19.1.1", + "release": "12.el10.alma.1", + "installdate": "1748640933", + "arch": "x86_64" + }, + "rpm-libs": { + "epoch": "0", + "version": "4.19.1.1", + "release": "12.el10.alma.1", + "installdate": "1748640933", + "arch": "x86_64" + }, + "libmodulemd": { + "epoch": "0", + "version": "2.15.0", + "release": "12.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "libsolv": { + "epoch": "0", + "version": "0.7.29", + "release": "8.el10.alma.1", + "installdate": "1748640933", + "arch": "x86_64" + }, + "procps-ng": { + "epoch": "0", + "version": "4.0.4", + "release": "7.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "kbd": { + "epoch": "0", + "version": "2.6.4", + "release": "7.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "mpfr": { + "epoch": "0", + "version": "4.2.1", + "release": "5.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "gawk": { + "epoch": "0", + "version": "5.3.0", + "release": "6.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "libcomps": { + "epoch": "0", + "version": "0.1.21", + "release": "3.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "keyutils": { + "epoch": "0", + "version": "1.6.3", + "release": "5.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "grub2-pc-modules": { + "epoch": "1", + "version": "2.12", + "release": "14.el10_0.alma.1", + "installdate": "1748640933", + "arch": "noarch" + }, + "gettext-libs": { + "epoch": "0", + "version": "0.22.5", + "release": "6.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "attr": { + "epoch": "0", + "version": "2.5.2", + "release": "5.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "ima-evm-utils": { + "epoch": "0", + "version": "1.6.2", + "release": "1.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "rpm-sign-libs": { + "epoch": "0", + "version": "4.19.1.1", + "release": "12.el10.alma.1", + "installdate": "1748640933", + "arch": "x86_64" + }, + "gdbm": { + "epoch": "1", + "version": "1.23", + "release": "12.el10_0", + "installdate": "1748640933", + "arch": "x86_64" + }, + "pam": { + "epoch": "0", + "version": "1.6.1", + "release": "7.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "groff-base": { + "epoch": "0", + "version": "1.23.0", + "release": "10.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "xz": { + "epoch": "1", + "version": "5.6.2", + "release": "4.el10_0", + "installdate": "1748640933", + "arch": "x86_64" + }, + "snappy": { + "epoch": "0", + "version": "1.1.10", + "release": "7.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "e2fsprogs-libs": { + "epoch": "0", + "version": "1.47.1", + "release": "3.el10", + "installdate": "1748640933", + "arch": "x86_64" + }, + "libss": { + "epoch": "0", + "version": "1.47.1", + "release": "3.el10", + "installdate": "1748640934", + "arch": "x86_64" + }, + "langpacks-core-en": { + "epoch": "0", + "version": "4.1", + "release": "3.el10", + "installdate": "1748640934", + "arch": "noarch" + }, + "dbus-common": { + "epoch": "1", + "version": "1.14.10", + "release": "5.el10", + "installdate": "1748640934", + "arch": "noarch" + }, + "dbus-broker": { + "epoch": "0", + "version": "36", + "release": "1.el10", + "installdate": "1748640934", + "arch": "x86_64" + }, + "dbus": { + "epoch": "1", + "version": "1.14.10", + "release": "5.el10", + "installdate": "1748640934", + "arch": "x86_64" + }, + "authselect-libs": { + "epoch": "0", + "version": "1.5.0", + "release": "8.el10", + "installdate": "1748640934", + "arch": "x86_64" + }, + "util-linux": { + "epoch": "0", + "version": "2.40.2", + "release": "10.el10", + "installdate": "1748640934", + "arch": "x86_64" + }, + "cryptsetup-libs": { + "epoch": "0", + "version": "2.7.5", + "release": "2.el10", + "installdate": "1748640934", + "arch": "x86_64" + }, + "device-mapper-libs": { + "epoch": "10", + "version": "1.02.202", + "release": "6.el10", + "installdate": "1748640934", + "arch": "x86_64" + }, + "device-mapper": { + "epoch": "10", + "version": "1.02.202", + "release": "6.el10", + "installdate": "1748640934", + "arch": "x86_64" + }, + "systemd-pam": { + "epoch": "0", + "version": "257", + "release": "9.el10_0.1.alma.1", + "installdate": "1748640934", + "arch": "x86_64" + }, + "systemd": { + "epoch": "0", + "version": "257", + "release": "9.el10_0.1.alma.1", + "installdate": "1748640934", + "arch": "x86_64" + }, + "cronie-anacron": { + "epoch": "0", + "version": "1.7.0", + "release": "9.el10", + "installdate": "1748640934", + "arch": "x86_64" + }, + "cronie": { + "epoch": "0", + "version": "1.7.0", + "release": "9.el10", + "installdate": "1748640934", + "arch": "x86_64" + }, + "crontabs": { + "epoch": "0", + "version": "1.11^20190603git9e74f2d", + "release": "6.el10", + "installdate": "1748640934", + "arch": "noarch" + }, + "openssh": { + "epoch": "0", + "version": "9.9p1", + "release": "7.el10_0", + "installdate": "1748640934", + "arch": "x86_64" + }, + "libkcapi": { + "epoch": "0", + "version": "1.5.0", + "release": "3.el10", + "installdate": "1748640934", + "arch": "x86_64" + }, + "libkcapi-hasher": { + "epoch": "0", + "version": "1.5.0", + "release": "3.el10", + "installdate": "1748640934", + "arch": "x86_64" + }, + "libkcapi-hmaccalc": { + "epoch": "0", + "version": "1.5.0", + "release": "3.el10", + "installdate": "1748640934", + "arch": "x86_64" + }, + "logrotate": { + "epoch": "0", + "version": "3.22.0", + "release": "4.el10", + "installdate": "1748640934", + "arch": "x86_64" + }, + "hostname": { + "epoch": "0", + "version": "3.23", + "release": "14.el10", + "installdate": "1748640934", + "arch": "x86_64" + }, + "kernel-tools-libs": { + "epoch": "0", + "version": "6.12.0", + "release": "55.9.1.el10_0", + "installdate": "1748640935", + "arch": "x86_64" + }, + "less": { + "epoch": "0", + "version": "661", + "release": "3.el10", + "installdate": "1748640935", + "arch": "x86_64" + }, + "c-ares": { + "epoch": "0", + "version": "1.25.0", + "release": "6.el10", + "installdate": "1748640935", + "arch": "x86_64" + }, + "cpio": { + "epoch": "0", + "version": "2.15", + "release": "3.el10", + "installdate": "1748640935", + "arch": "x86_64" + }, + "fuse-libs": { + "epoch": "0", + "version": "2.9.9", + "release": "25.el10", + "installdate": "1748640935", + "arch": "x86_64" + }, + "fuse3-libs": { + "epoch": "0", + "version": "3.16.2", + "release": "5.el10", + "installdate": "1748640935", + "arch": "x86_64" + }, + "gettext-envsubst": { + "epoch": "0", + "version": "0.22.5", + "release": "6.el10", + "installdate": "1748640935", + "arch": "x86_64" + }, + "gettext-runtime": { + "epoch": "0", + "version": "0.22.5", + "release": "6.el10", + "installdate": "1748640935", + "arch": "x86_64" + }, + "grub2-tools-minimal": { + "epoch": "1", + "version": "2.12", + "release": "14.el10_0.alma.1", + "installdate": "1748640935", + "arch": "x86_64" + }, + "inih": { + "epoch": "0", + "version": "58", + "release": "3.el10", + "installdate": "1748640935", + "arch": "x86_64" + }, + "jansson": { + "epoch": "0", + "version": "2.14", + "release": "3.el10", + "installdate": "1748640935", + "arch": "x86_64" + }, + "libbrotli": { + "epoch": "0", + "version": "1.1.0", + "release": "6.el10", + "installdate": "1748640935", + "arch": "x86_64" + }, + "libcbor": { + "epoch": "0", + "version": "0.11.0", + "release": "3.el10", + "installdate": "1748640935", + "arch": "x86_64" + }, + "libfido2": { + "epoch": "0", + "version": "1.14.0", + "release": "7.el10", + "installdate": "1748640935", + "arch": "x86_64" + }, + "grubby": { + "epoch": "0", + "version": "8.40", + "release": "77.el10", + "installdate": "1748640935", + "arch": "x86_64" + }, + "systemd-udev": { + "epoch": "0", + "version": "257", + "release": "9.el10_0.1.alma.1", + "installdate": "1748640935", + "arch": "x86_64" + }, + "dracut": { + "epoch": "0", + "version": "105", + "release": "4.el10_0", + "installdate": "1748640935", + "arch": "x86_64" + }, + "os-prober": { + "epoch": "0", + "version": "1.81", + "release": "9.el10", + "installdate": "1748640935", + "arch": "x86_64" + }, + "grub2-tools": { + "epoch": "1", + "version": "2.12", + "release": "14.el10_0.alma.1", + "installdate": "1748640935", + "arch": "x86_64" + }, + "kernel-modules-core": { + "epoch": "0", + "version": "6.12.0", + "release": "55.9.1.el10_0", + "installdate": "1748640936", + "arch": "x86_64" + }, + "kernel-core": { + "epoch": "0", + "version": "6.12.0", + "release": "55.9.1.el10_0", + "installdate": "1748640937", + "arch": "x86_64" + }, + "kernel-modules": { + "epoch": "0", + "version": "6.12.0", + "release": "55.9.1.el10_0", + "installdate": "1748640938", + "arch": "x86_64" + }, + "dracut-squash": { + "epoch": "0", + "version": "105", + "release": "4.el10_0", + "installdate": "1748640943", + "arch": "x86_64" + }, + "libgomp": { + "epoch": "0", + "version": "14.2.1", + "release": "7.el10.alma.1", + "installdate": "1748640943", + "arch": "x86_64" + }, + "rpm-build-libs": { + "epoch": "0", + "version": "4.19.1.1", + "release": "12.el10.alma.1", + "installdate": "1748640943", + "arch": "x86_64" + }, + "libndp": { + "epoch": "0", + "version": "1.9", + "release": "2.el10", + "installdate": "1748640943", + "arch": "x86_64" + }, + "libnfnetlink": { + "epoch": "0", + "version": "1.0.2", + "release": "3.el10", + "installdate": "1748640943", + "arch": "x86_64" + }, + "libnetfilter_conntrack": { + "epoch": "0", + "version": "1.0.9", + "release": "12.el10", + "installdate": "1748640943", + "arch": "x86_64" + }, + "iptables-libs": { + "epoch": "0", + "version": "1.8.11", + "release": "8.el10_0", + "installdate": "1748640943", + "arch": "x86_64" + }, + "libnghttp2": { + "epoch": "0", + "version": "1.64.0", + "release": "2.el10", + "installdate": "1748640943", + "arch": "x86_64" + }, + "libpath_utils": { + "epoch": "0", + "version": "0.2.1", + "release": "58.el10", + "installdate": "1748640943", + "arch": "x86_64" + }, + "libini_config": { + "epoch": "0", + "version": "1.3.1", + "release": "58.el10", + "installdate": "1748640943", + "arch": "x86_64" + }, + "libpipeline": { + "epoch": "0", + "version": "1.5.7", + "release": "7.el10", + "installdate": "1748640943", + "arch": "x86_64" + }, + "libsss_nss_idmap": { + "epoch": "0", + "version": "2.10.2", + "release": "3.el10_0.2", + "installdate": "1748640943", + "arch": "x86_64" + }, + "libsss_sudo": { + "epoch": "0", + "version": "2.10.2", + "release": "3.el10_0.2", + "installdate": "1748640943", + "arch": "x86_64" + }, + "liburing": { + "epoch": "0", + "version": "2.5", + "release": "5.el10", + "installdate": "1748640943", + "arch": "x86_64" + }, + "libverto": { + "epoch": "0", + "version": "0.3.2", + "release": "10.el10", + "installdate": "1748640943", + "arch": "x86_64" + }, + "audit-rules": { + "epoch": "0", + "version": "4.0.3", + "release": "1.el10", + "installdate": "1748640943", + "arch": "x86_64" + }, + "audit": { + "epoch": "0", + "version": "4.0.3", + "release": "1.el10", + "installdate": "1748640944", + "arch": "x86_64" + }, + "cyrus-sasl-gssapi": { + "epoch": "0", + "version": "2.1.28", + "release": "27.el10", + "installdate": "1748640944", + "arch": "x86_64" + }, + "libssh": { + "epoch": "0", + "version": "0.11.1", + "release": "1.el10", + "installdate": "1748640944", + "arch": "x86_64" + }, + "libcurl": { + "epoch": "0", + "version": "8.9.1", + "release": "5.el10", + "installdate": "1748640944", + "arch": "x86_64" + }, + "curl": { + "epoch": "0", + "version": "8.9.1", + "release": "5.el10", + "installdate": "1748640944", + "arch": "x86_64" + }, + "rpm": { + "epoch": "0", + "version": "4.19.1.1", + "release": "12.el10.alma.1", + "installdate": "1748640944", + "arch": "x86_64" + }, + "policycoreutils": { + "epoch": "0", + "version": "3.8", + "release": "1.el10", + "installdate": "1748640944", + "arch": "x86_64" + }, + "selinux-policy": { + "epoch": "0", + "version": "40.13.26", + "release": "1.el10", + "installdate": "1748640944", + "arch": "noarch" + }, + "selinux-policy-targeted": { + "epoch": "0", + "version": "40.13.26", + "release": "1.el10", + "installdate": "1748640944", + "arch": "noarch" + }, + "librepo": { + "epoch": "0", + "version": "1.18.0", + "release": "3.el10", + "installdate": "1748640944", + "arch": "x86_64" + }, + "libdnf": { + "epoch": "0", + "version": "0.73.1", + "release": "9.el10_0.alma.1", + "installdate": "1748640944", + "arch": "x86_64" + }, + "sssd-client": { + "epoch": "0", + "version": "2.10.2", + "release": "3.el10_0.2", + "installdate": "1748640944", + "arch": "x86_64" + }, + "lmdb-libs": { + "epoch": "0", + "version": "0.9.32", + "release": "4.el10", + "installdate": "1748640944", + "arch": "x86_64" + }, + "sssd-common": { + "epoch": "0", + "version": "2.10.2", + "release": "3.el10_0.2", + "installdate": "1748640944", + "arch": "x86_64" + }, + "sssd-krb5-common": { + "epoch": "0", + "version": "2.10.2", + "release": "3.el10_0.2", + "installdate": "1748640945", + "arch": "x86_64" + }, + "lzo": { + "epoch": "0", + "version": "2.10", + "release": "14.el10", + "installdate": "1748640945", + "arch": "x86_64" + }, + "makedumpfile": { + "epoch": "0", + "version": "1.7.6", + "release": "4.el10", + "installdate": "1748640945", + "arch": "x86_64" + }, + "mpdecimal": { + "epoch": "0", + "version": "2.5.1", + "release": "12.el10", + "installdate": "1748640945", + "arch": "x86_64" + }, + "python3-libdnf": { + "epoch": "0", + "version": "0.73.1", + "release": "9.el10_0.alma.1", + "installdate": "1748640945", + "arch": "x86_64" + }, + "python3-hawkey": { + "epoch": "0", + "version": "0.73.1", + "release": "9.el10_0.alma.1", + "installdate": "1748640945", + "arch": "x86_64" + }, + "python3-attrs": { + "epoch": "0", + "version": "23.2.0", + "release": "7.el10", + "installdate": "1748640945", + "arch": "noarch" + }, + "python3-dbus": { + "epoch": "0", + "version": "1.3.2", + "release": "8.el10", + "installdate": "1748640945", + "arch": "x86_64" + }, + "python3-rpds-py": { + "epoch": "0", + "version": "0.17.1", + "release": "6.el10", + "installdate": "1748640945", + "arch": "x86_64" + }, + "python3-referencing": { + "epoch": "0", + "version": "0.31.1", + "release": "6.el10", + "installdate": "1748640945", + "arch": "noarch" + }, + "python3-jsonschema-specifications": { + "epoch": "0", + "version": "2023.11.2", + "release": "6.el10", + "installdate": "1748640945", + "arch": "noarch" + }, + "python3-jsonschema": { + "epoch": "0", + "version": "4.19.1", + "release": "7.el10", + "installdate": "1748640945", + "arch": "noarch" + }, + "python3-libcomps": { + "epoch": "0", + "version": "0.1.21", + "release": "3.el10", + "installdate": "1748640945", + "arch": "x86_64" + }, + "python3-pyyaml": { + "epoch": "0", + "version": "6.0.1", + "release": "19.el10", + "installdate": "1748640946", + "arch": "x86_64" + }, + "python3-rpm": { + "epoch": "0", + "version": "4.19.1.1", + "release": "12.el10.alma.1", + "installdate": "1748640946", + "arch": "x86_64" + }, + "python3-dnf": { + "epoch": "0", + "version": "4.20.0", + "release": "12.el10_0.alma.1", + "installdate": "1748640946", + "arch": "noarch" + }, + "dnf": { + "epoch": "0", + "version": "4.20.0", + "release": "12.el10_0.alma.1", + "installdate": "1748640946", + "arch": "noarch" + }, + "python3-six": { + "epoch": "0", + "version": "1.16.0", + "release": "16.el10", + "installdate": "1748640946", + "arch": "noarch" + }, + "python3-dateutil": { + "epoch": "1", + "version": "2.8.2", + "release": "15.el10", + "installdate": "1748640946", + "arch": "noarch" + }, + "python3-systemd": { + "epoch": "0", + "version": "235", + "release": "11.el10", + "installdate": "1748640946", + "arch": "x86_64" + }, + "python3-dnf-plugins-core": { + "epoch": "0", + "version": "4.7.0", + "release": "8.el10", + "installdate": "1748640946", + "arch": "noarch" + }, + "oniguruma": { + "epoch": "0", + "version": "6.9.9", + "release": "7.el10", + "installdate": "1748640946", + "arch": "x86_64" + }, + "jq": { + "epoch": "0", + "version": "1.7.1", + "release": "8.el10", + "installdate": "1748640946", + "arch": "x86_64" + }, + "pciutils-libs": { + "epoch": "0", + "version": "3.13.0", + "release": "5.el10", + "installdate": "1748640946", + "arch": "x86_64" + }, + "psmisc": { + "epoch": "0", + "version": "23.6", + "release": "8.el10", + "installdate": "1748640946", + "arch": "x86_64" + }, + "iproute": { + "epoch": "0", + "version": "6.11.0", + "release": "1.el10", + "installdate": "1748640946", + "arch": "x86_64" + }, + "dracut-network": { + "epoch": "0", + "version": "105", + "release": "4.el10_0", + "installdate": "1748640946", + "arch": "x86_64" + }, + "kexec-tools": { + "epoch": "0", + "version": "2.0.29", + "release": "2.el10", + "installdate": "1748640946", + "arch": "x86_64" + }, + "kdump-utils": { + "epoch": "0", + "version": "1.0.51", + "release": "10.el10_0", + "installdate": "1748640946", + "arch": "x86_64" + }, + "sg3_utils-libs": { + "epoch": "0", + "version": "1.48", + "release": "7.el10", + "installdate": "1748640946", + "arch": "x86_64" + }, + "slang": { + "epoch": "0", + "version": "2.3.3", + "release": "8.el10", + "installdate": "1748640946", + "arch": "x86_64" + }, + "newt": { + "epoch": "0", + "version": "0.52.24", + "release": "5.el10", + "installdate": "1748640946", + "arch": "x86_64" + }, + "userspace-rcu": { + "epoch": "0", + "version": "0.14.0", + "release": "7.el10", + "installdate": "1748640946", + "arch": "x86_64" + }, + "libestr": { + "epoch": "0", + "version": "0.1.11", + "release": "11.el10", + "installdate": "1748640946", + "arch": "x86_64" + }, + "libfastjson": { + "epoch": "0", + "version": "1.2304.0", + "release": "6.el10", + "installdate": "1748640946", + "arch": "x86_64" + }, + "rsyslog": { + "epoch": "0", + "version": "8.2412.0", + "release": "1.el10", + "installdate": "1748640946", + "arch": "x86_64" + }, + "xfsprogs": { + "epoch": "0", + "version": "6.11.0", + "release": "1.el10", + "installdate": "1748640946", + "arch": "x86_64" + }, + "sg3_utils": { + "epoch": "0", + "version": "1.48", + "release": "7.el10", + "installdate": "1748640946", + "arch": "x86_64" + }, + "iproute-tc": { + "epoch": "0", + "version": "6.11.0", + "release": "1.el10", + "installdate": "1748640946", + "arch": "x86_64" + }, + "kernel-tools": { + "epoch": "0", + "version": "6.12.0", + "release": "55.9.1.el10_0", + "installdate": "1748640946", + "arch": "x86_64" + }, + "dnf-plugins-core": { + "epoch": "0", + "version": "4.7.0", + "release": "8.el10", + "installdate": "1748640946", + "arch": "noarch" + }, + "yum": { + "epoch": "0", + "version": "4.20.0", + "release": "12.el10_0.alma.1", + "installdate": "1748640947", + "arch": "noarch" + }, + "crypto-policies-scripts": { + "epoch": "0", + "version": "20250214", + "release": "1.gitfd9b9b9.el10", + "installdate": "1748640947", + "arch": "noarch" + }, + "sssd-kcm": { + "epoch": "0", + "version": "2.10.2", + "release": "3.el10_0.2", + "installdate": "1748640947", + "arch": "x86_64" + }, + "openssh-clients": { + "epoch": "0", + "version": "9.9p1", + "release": "7.el10_0", + "installdate": "1748640947", + "arch": "x86_64" + }, + "openssh-server": { + "epoch": "0", + "version": "9.9p1", + "release": "7.el10_0", + "installdate": "1748640947", + "arch": "x86_64" + }, + "qemu-guest-agent": { + "epoch": "18", + "version": "9.1.0", + "release": "15.el10.alma.1", + "installdate": "1748640947", + "arch": "x86_64" + }, + "man-db": { + "epoch": "0", + "version": "2.12.0", + "release": "8.el10", + "installdate": "1748640947", + "arch": "x86_64" + }, + "kernel": { + "epoch": "0", + "version": "6.12.0", + "release": "55.9.1.el10_0", + "installdate": "1748640947", + "arch": "x86_64" + }, + "grub2-pc": { + "epoch": "1", + "version": "2.12", + "release": "14.el10_0.alma.1", + "installdate": "1748640947", + "arch": "x86_64" + }, + "dracut-config-generic": { + "epoch": "0", + "version": "105", + "release": "4.el10_0", + "installdate": "1748640947", + "arch": "x86_64" + }, + "e2fsprogs": { + "epoch": "0", + "version": "1.47.1", + "release": "3.el10", + "installdate": "1748640947", + "arch": "x86_64" + }, + "chrony": { + "epoch": "0", + "version": "4.6.1", + "release": "1.el10", + "installdate": "1748640947", + "arch": "x86_64" + }, + "microcode_ctl": { + "epoch": "4", + "version": "20250211", + "release": "1.el10_0", + "installdate": "1748640947", + "arch": "noarch" + }, + "parted": { + "epoch": "0", + "version": "3.6", + "release": "7.el10", + "installdate": "1748640949", + "arch": "x86_64" + }, + "authselect": { + "epoch": "0", + "version": "1.5.0", + "release": "8.el10", + "installdate": "1748640949", + "arch": "x86_64" + }, + "langpacks-en": { + "epoch": "0", + "version": "4.1", + "release": "3.el10", + "installdate": "1748640949", + "arch": "noarch" + }, + "sudo": { + "epoch": "0", + "version": "1.9.15", + "release": "8.p5.el10", + "installdate": "1748640949", + "arch": "x86_64" + }, + "initscripts-rename-device": { + "epoch": "0", + "version": "10.26", + "release": "2.el10", + "installdate": "1748640949", + "arch": "x86_64" + }, + "rpm-plugin-selinux": { + "epoch": "0", + "version": "4.19.1.1", + "release": "12.el10.alma.1", + "installdate": "1748640949", + "arch": "x86_64" + }, + "irqbalance": { + "epoch": "2", + "version": "1.9.4", + "release": "2.el10", + "installdate": "1748640949", + "arch": "x86_64" + }, + "wget": { + "epoch": "0", + "version": "1.24.5", + "release": "5.el10", + "installdate": "1748640949", + "arch": "x86_64" + }, + "prefixdevname": { + "epoch": "0", + "version": "0.2.0", + "release": "4.el10", + "installdate": "1748640949", + "arch": "x86_64" + }, + "tar": { + "epoch": "2", + "version": "1.35", + "release": "7.el10", + "installdate": "1748640949", + "arch": "x86_64" + }, + "vim-minimal": { + "epoch": "2", + "version": "9.1.083", + "release": "5.el10", + "installdate": "1748640949", + "arch": "x86_64" + }, + "lshw": { + "epoch": "0", + "version": "B.02.20", + "release": "6.el10", + "installdate": "1748640949", + "arch": "x86_64" + }, + "libsysfs": { + "epoch": "0", + "version": "2.1.1", + "release": "14.el10", + "installdate": "1748640949", + "arch": "x86_64" + }, + "lsscsi": { + "epoch": "0", + "version": "0.32", + "release": "15.el10", + "installdate": "1748640949", + "arch": "x86_64" + }, + "ncurses": { + "epoch": "0", + "version": "6.4", + "release": "14.20240127.el10", + "installdate": "1748640949", + "arch": "x86_64" + }, + "rootfiles": { + "epoch": "0", + "version": "8.1", + "release": "41.el10", + "installdate": "1748640949", + "arch": "noarch" + }, + "gpg-pubkey": { + "epoch": "0", + "version": "e37ed158", + "release": "65785fa9", + "installdate": "1748641137", + "arch": "(none)", + "versions": [ + { + "epoch": "0", + "version": "c2a1e572", + "release": "668fe8ef", + "installdate": "1748641134", + "arch": "(none)" + }, + { + "epoch": "0", + "version": "e37ed158", + "release": "65785fa9", + "installdate": "1748641137", + "arch": "(none)" + } + ] + }, + "dnf-automatic": { + "epoch": "0", + "version": "4.20.0", + "release": "12.el10_0.alma.1", + "installdate": "1748641139", + "arch": "noarch" + }, + "vim-filesystem": { + "epoch": "2", + "version": "9.1.083", + "release": "5.el10", + "installdate": "1748641143", + "arch": "noarch" + }, + "xxd": { + "epoch": "2", + "version": "9.1.083", + "release": "5.el10", + "installdate": "1748641143", + "arch": "x86_64" + }, + "vim-common": { + "epoch": "2", + "version": "9.1.083", + "release": "5.el10", + "installdate": "1748641143", + "arch": "x86_64" + }, + "vim-enhanced": { + "epoch": "2", + "version": "9.1.083", + "release": "5.el10", + "installdate": "1748641143", + "arch": "x86_64" + }, + "rsync": { + "epoch": "0", + "version": "3.4.1", + "release": "2.el10", + "installdate": "1748641143", + "arch": "x86_64" + }, + "openssl": { + "epoch": "1", + "version": "3.2.2", + "release": "16.el10.alma.1", + "installdate": "1748641150", + "arch": "x86_64" + }, + "libicu": { + "epoch": "0", + "version": "74.2", + "release": "4.el10", + "installdate": "1748641150", + "arch": "x86_64" + }, + "postfix-lmdb": { + "epoch": "2", + "version": "3.8.5", + "release": "8.el10", + "installdate": "1748641150", + "arch": "x86_64" + }, + "postfix": { + "epoch": "2", + "version": "3.8.5", + "release": "8.el10", + "installdate": "1748641151", + "arch": "x86_64" + }, + "libnftnl": { + "epoch": "0", + "version": "1.2.8", + "release": "2.el10", + "installdate": "1748641157", + "arch": "x86_64" + }, + "nftables": { + "epoch": "1", + "version": "1.1.1", + "release": "4.el10_0", + "installdate": "1748641157", + "arch": "x86_64" + }, + "kernel-modules-extra": { + "epoch": "0", + "version": "6.12.0", + "release": "55.9.1.el10_0", + "installdate": "1748641157", + "arch": "x86_64" + }, + "iptables-nft": { + "epoch": "0", + "version": "1.8.11", + "release": "8.el10_0", + "installdate": "1748641162", + "arch": "x86_64" + }, + "python3-nftables": { + "epoch": "1", + "version": "1.1.1", + "release": "4.el10_0", + "installdate": "1748641162", + "arch": "x86_64" + }, + "python3-setuptools": { + "epoch": "0", + "version": "69.0.3", + "release": "9.el10", + "installdate": "1748641163", + "arch": "noarch" + }, + "python3-setools": { + "epoch": "0", + "version": "4.5.1", + "release": "4.el10", + "installdate": "1748641163", + "arch": "x86_64" + }, + "ipset-libs": { + "epoch": "0", + "version": "7.22", + "release": "7.el10_0", + "installdate": "1748641163", + "arch": "x86_64" + }, + "ipset": { + "epoch": "0", + "version": "7.22", + "release": "7.el10_0", + "installdate": "1748641163", + "arch": "x86_64" + }, + "gobject-introspection": { + "epoch": "0", + "version": "1.79.1", + "release": "6.el10", + "installdate": "1748641163", + "arch": "x86_64" + }, + "python3-gobject-base-noarch": { + "epoch": "0", + "version": "3.46.0", + "release": "7.el10", + "installdate": "1748641163", + "arch": "noarch" + }, + "python3-gobject-base": { + "epoch": "0", + "version": "3.46.0", + "release": "7.el10", + "installdate": "1748641163", + "arch": "x86_64" + }, + "python3-firewall": { + "epoch": "0", + "version": "2.3.0", + "release": "2.el10", + "installdate": "1748641163", + "arch": "noarch" + }, + "firewalld-filesystem": { + "epoch": "0", + "version": "2.3.0", + "release": "2.el10", + "installdate": "1748641163", + "arch": "noarch" + }, + "python3-libsemanage": { + "epoch": "0", + "version": "3.8.1", + "release": "1.el10_0", + "installdate": "1748641163", + "arch": "x86_64" + }, + "python3-distro": { + "epoch": "0", + "version": "1.9.0", + "release": "5.el10", + "installdate": "1748641163", + "arch": "noarch" + }, + "python3-audit": { + "epoch": "0", + "version": "4.0.3", + "release": "1.el10", + "installdate": "1748641163", + "arch": "x86_64" + }, + "libcap-ng-python3": { + "epoch": "0", + "version": "0.8.4", + "release": "6.el10", + "installdate": "1748641163", + "arch": "x86_64" + }, + "firewalld": { + "epoch": "0", + "version": "2.3.0", + "release": "2.el10", + "installdate": "1748641163", + "arch": "noarch" + }, + "checkpolicy": { + "epoch": "0", + "version": "3.8", + "release": "1.el10", + "installdate": "1748641163", + "arch": "x86_64" + }, + "python3-policycoreutils": { + "epoch": "0", + "version": "3.8", + "release": "1.el10", + "installdate": "1748641163", + "arch": "noarch" + }, + "policycoreutils-python-utils": { + "epoch": "0", + "version": "3.8", + "release": "1.el10", + "installdate": "1748641163", + "arch": "noarch" + }, + "fail2ban-selinux": { + "epoch": "0", + "version": "1.1.0", + "release": "6.el10_0", + "installdate": "1748641163", + "arch": "noarch" + }, + "fail2ban-server": { + "epoch": "0", + "version": "1.1.0", + "release": "6.el10_0", + "installdate": "1748641170", + "arch": "noarch" + }, + "fail2ban-firewalld": { + "epoch": "0", + "version": "1.1.0", + "release": "6.el10_0", + "installdate": "1748641170", + "arch": "noarch" + }, + "fail2ban-sendmail": { + "epoch": "0", + "version": "1.1.0", + "release": "6.el10_0", + "installdate": "1748641170", + "arch": "noarch" + }, + "fail2ban": { + "epoch": "0", + "version": "1.1.0", + "release": "6.el10_0", + "installdate": "1748641170", + "arch": "noarch" + }, + "iptables-nft-services": { + "epoch": "0", + "version": "1.8.11", + "release": "8.el10_0", + "installdate": "1748641170", + "arch": "noarch" + }, + "device-mapper-event-libs": { + "epoch": "10", + "version": "1.02.202", + "release": "6.el10", + "installdate": "1748641174", + "arch": "x86_64" + }, + "python3-idna": { + "epoch": "0", + "version": "3.7", + "release": "4.el10", + "installdate": "1748641174", + "arch": "noarch" + }, + "libnvme": { + "epoch": "0", + "version": "1.11.1", + "release": "1.el10", + "installdate": "1748641174", + "arch": "x86_64" + }, + "libaio": { + "epoch": "0", + "version": "0.3.111", + "release": "22.el10", + "installdate": "1748641174", + "arch": "x86_64" + }, + "python3-urllib3": { + "epoch": "0", + "version": "1.26.19", + "release": "2.el10", + "installdate": "1748641174", + "arch": "noarch" + }, + "device-mapper-event": { + "epoch": "10", + "version": "1.02.202", + "release": "6.el10", + "installdate": "1748641175", + "arch": "x86_64" + }, + "lvm2-libs": { + "epoch": "10", + "version": "2.03.28", + "release": "6.el10", + "installdate": "1748641175", + "arch": "x86_64" + }, + "python3-charset-normalizer": { + "epoch": "0", + "version": "3.3.2", + "release": "7.el10", + "installdate": "1748641175", + "arch": "noarch" + }, + "python3-requests": { + "epoch": "0", + "version": "2.32.3", + "release": "2.el10", + "installdate": "1748641175", + "arch": "noarch" + }, + "dhcpcd": { + "epoch": "0", + "version": "10.0.6", + "release": "7.el10", + "installdate": "1748641175", + "arch": "x86_64" + }, + "device-mapper-persistent-data": { + "epoch": "0", + "version": "1.1.0", + "release": "2.el10", + "installdate": "1748641175", + "arch": "x86_64" + }, + "lvm2": { + "epoch": "10", + "version": "2.03.28", + "release": "6.el10", + "installdate": "1748641175", + "arch": "x86_64" + }, + "python3-pyserial": { + "epoch": "0", + "version": "3.5", + "release": "11.el10", + "installdate": "1748641176", + "arch": "noarch" + }, + "python3-oauthlib": { + "epoch": "0", + "version": "3.2.2", + "release": "6.el10", + "installdate": "1748641176", + "arch": "noarch" + }, + "python3-markupsafe": { + "epoch": "0", + "version": "2.1.3", + "release": "6.el10", + "installdate": "1748641176", + "arch": "x86_64" + }, + "python3-jinja2": { + "epoch": "0", + "version": "3.1.6", + "release": "1.el10_0", + "installdate": "1748641176", + "arch": "noarch" + }, + "python3-jsonpointer": { + "epoch": "0", + "version": "2.3", + "release": "9.el10", + "installdate": "1748641176", + "arch": "noarch" + }, + "python3-jsonpatch": { + "epoch": "0", + "version": "1.33", + "release": "6.el10", + "installdate": "1748641176", + "arch": "noarch" + }, + "python3-configobj": { + "epoch": "0", + "version": "5.0.8", + "release": "10.el10", + "installdate": "1748641176", + "arch": "noarch" + }, + "cloud-init": { + "epoch": "0", + "version": "24.4", + "release": "3.el10", + "installdate": "1748641176", + "arch": "noarch" + }, + "cloud-utils-growpart": { + "epoch": "0", + "version": "0.33", + "release": "11.el10", + "installdate": "1748641177", + "arch": "noarch" + }, + "gdisk": { + "epoch": "0", + "version": "1.0.10", + "release": "2.el10_0", + "installdate": "1748641177", + "arch": "x86_64" + }, + "libselinux": { + "epoch": "0", + "version": "3.8", + "release": "2.el10_0", + "installdate": "1751325899", + "arch": "x86_64" + }, + "python3-libs": { + "epoch": "0", + "version": "3.12.9", + "release": "2.el10_0.1", + "installdate": "1751325900", + "arch": "x86_64" + }, + "python3": { + "epoch": "0", + "version": "3.12.9", + "release": "2.el10_0.1", + "installdate": "1751325902", + "arch": "x86_64" + }, + "NetworkManager-libnm": { + "epoch": "1", + "version": "1.52.0", + "release": "4.el10_0", + "installdate": "1751325902", + "arch": "x86_64" + }, + "iputils": { + "epoch": "0", + "version": "20240905", + "release": "2.el10_0.1", + "installdate": "1751325902", + "arch": "x86_64" + }, + "NetworkManager": { + "epoch": "1", + "version": "1.52.0", + "release": "4.el10_0", + "installdate": "1751325903", + "arch": "x86_64" + }, + "elfutils-libelf": { + "epoch": "0", + "version": "0.192", + "release": "6.el10_0", + "installdate": "1751325903", + "arch": "x86_64" + }, + "elfutils-default-yama-scope": { + "epoch": "0", + "version": "0.192", + "release": "6.el10_0", + "installdate": "1751325903", + "arch": "noarch" + }, + "selinux-policy-epel-targeted": { + "epoch": "0", + "version": "40.13.30", + "release": "1.el10_0.1", + "installdate": "1751325903", + "arch": "noarch" + }, + "selinux-policy-epel": { + "epoch": "0", + "version": "40.13.30", + "release": "1.el10_0.1", + "installdate": "1751325915", + "arch": "noarch" + }, + "epel-release": { + "epoch": "0", + "version": "10", + "release": "6.el10_0", + "installdate": "1751325915", + "arch": "noarch" + }, + "elfutils-libs": { + "epoch": "0", + "version": "0.192", + "release": "6.el10_0", + "installdate": "1751325915", + "arch": "x86_64" + }, + "NetworkManager-tui": { + "epoch": "1", + "version": "1.52.0", + "release": "4.el10_0", + "installdate": "1751325915", + "arch": "x86_64" + }, + "python3-libselinux": { + "epoch": "0", + "version": "3.8", + "release": "2.el10_0", + "installdate": "1751325916", + "arch": "x86_64" + }, + "krb5-libs": { + "epoch": "0", + "version": "1.21.3", + "release": "8.el10_0", + "installdate": "1751325916", + "arch": "x86_64" + }, + "libselinux-utils": { + "epoch": "0", + "version": "3.8", + "release": "2.el10_0", + "installdate": "1751325916", + "arch": "x86_64" + }, + "libldb": { + "epoch": "0", + "version": "4.21.3", + "release": "104.el10_0", + "installdate": "1751325916", + "arch": "x86_64" + }, + "libarchive": { + "epoch": "0", + "version": "3.7.7", + "release": "3.el10_0", + "installdate": "1751325916", + "arch": "x86_64" + }, + "ethtool": { + "epoch": "2", + "version": "6.11", + "release": "5.el10_0", + "installdate": "1751325916", + "arch": "x86_64" + }, + "dmidecode": { + "epoch": "1", + "version": "3.6", + "release": "3.el10", + "installdate": "1751325950", + "arch": "x86_64" + }, + "chef": { + "epoch": "0", + "version": "18.7.10", + "release": "1.el9", + "installdate": "1751326187", + "arch": "x86_64" + } + }, + "platform": "almalinux", + "platform_family": "rhel", + "platform_version": "10.0", + "root_group": "root", + "shard_seed": 195456475, + "shells": [ + "/bin/sh", + "/bin/bash", + "/usr/bin/sh", + "/usr/bin/bash" + ], + "time": { + "timezone": "GMT" + }, + "uptime": "30 days 15 hours 07 minutes 30 seconds", + "uptime_seconds": 2646450, + "virtualization": { + "systems": {} + } +} diff --git a/lib/fauxhai/platforms/almalinux/9.json b/lib/fauxhai/platforms/almalinux/9.json new file mode 100644 index 00000000..eeccad8f --- /dev/null +++ b/lib/fauxhai/platforms/almalinux/9.json @@ -0,0 +1,3885 @@ +{ + "block_device": { + "sda": { + "size": "134217728", + "removable": "0", + "model": "VBOX HARDDISK", + "rev": "1.0", + "state": "running", + "timeout": "30", + "vendor": "ATA", + "queue_depth": "32", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + } + }, + "chef_packages": { + "chef": { + "version": "18.1.0", + "chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.1.0/lib", + "chef_effortless": null + }, + "ohai": { + "version": "18.0.26", + "ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.0.26/lib/ohai" + } + }, + "command": { + "ps": "ps -ef" + }, + "counters": { + "network": { + "interfaces": { + "lo": { + "tx": { + "queuelen": "1", + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "carrier": 0, + "collisions": 0 + }, + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0 + } + }, + "eth0": { + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "frame": 0, + "compressed": 0, + "multicast": 0 + }, + "tx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "collisions": 0, + "carrier": 0, + "compressed": 0 + } + } + } + } + }, + "cpu": { + "real": 1, + "total": 1, + "cores": 1 + }, + "current_user": "fauxhai", + "dmi": { + }, + "domain": "local", + "filesystem": { + "by_device": { + "devtmpfs": { + "kb_size": "4096", + "kb_used": "0", + "kb_available": "4096", + "percent_used": "0%", + "total_inodes": "1048576", + "inodes_used": "348", + "inodes_available": "1048228", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=4096k", + "nr_inodes=1048576", + "mode=755", + "inode64" + ], + "mounts": [ + "/dev" + ] + }, + "tmpfs": { + "kb_size": "78272", + "kb_used": "0", + "kb_available": "78272", + "percent_used": "0%", + "total_inodes": "19568", + "inodes_used": "14", + "inodes_available": "19554", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=78272k", + "nr_inodes=19568", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ], + "mounts": [ + "/dev/shm", + "/run", + "/run/user/1000" + ] + }, + "/dev/sda2": { + "kb_size": "64855104", + "kb_used": "1471296", + "kb_available": "63383808", + "percent_used": "3%", + "total_inodes": "32443392", + "inodes_used": "37679", + "inodes_available": "32405713", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "77094fb0-b937-4fd9-99f6-8585061c2875", + "mounts": [ + "/" + ] + }, + "vagrant": { + "kb_size": "492054648", + "kb_used": "395414728", + "kb_available": "96639920", + "percent_used": "81%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "mounts": [ + "/vagrant" + ] + }, + "proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/proc" + ] + }, + "sysfs": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys" + ] + }, + "securityfs": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/security" + ] + }, + "devpts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "mounts": [ + "/dev/pts" + ] + }, + "cgroup2": { + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "nsdelegate", + "memory_recursiveprot" + ], + "mounts": [ + "/sys/fs/cgroup" + ] + }, + "pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/fs/pstore" + ] + }, + "none": { + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "mounts": [ + "/sys/fs/bpf" + ] + }, + "selinuxfs": { + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/fs/selinux" + ] + }, + "systemd-1": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=36", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=17457" + ], + "mounts": [ + "/proc/sys/fs/binfmt_misc" + ] + }, + "debugfs": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/kernel/debug" + ] + }, + "mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/dev/mqueue" + ] + }, + "tracefs": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/kernel/tracing" + ] + }, + "hugetlbfs": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ], + "mounts": [ + "/dev/hugepages" + ] + }, + "configfs": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/config" + ] + }, + "fusectl": { + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/fs/fuse/connections" + ] + }, + "sunrpc": { + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ], + "mounts": [ + "/var/lib/nfs/rpc_pipefs" + ] + }, + "/dev/sda": { + "mounts": [ + + ] + }, + "/dev/sda1": { + "fs_type": "swap", + "uuid": "8b72c2ca-6136-437e-a4fe-4380b6473502", + "mounts": [ + + ] + } + }, + "by_mountpoint": { + "/dev": { + "kb_size": "4096", + "kb_used": "0", + "kb_available": "4096", + "percent_used": "0%", + "total_inodes": "1048576", + "inodes_used": "348", + "inodes_available": "1048228", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=4096k", + "nr_inodes=1048576", + "mode=755", + "inode64" + ], + "devices": [ + "devtmpfs" + ] + }, + "/dev/shm": { + "kb_size": "391372", + "kb_used": "0", + "kb_available": "391372", + "percent_used": "0%", + "total_inodes": "97843", + "inodes_used": "1", + "inodes_available": "97842", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/run": { + "kb_size": "156552", + "kb_used": "4356", + "kb_available": "152196", + "percent_used": "3%", + "total_inodes": "819200", + "inodes_used": "498", + "inodes_available": "818702", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "size=156552k", + "nr_inodes=819200", + "mode=755", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/": { + "kb_size": "64855104", + "kb_used": "1471296", + "kb_available": "63383808", + "percent_used": "3%", + "total_inodes": "32443392", + "inodes_used": "37679", + "inodes_available": "32405713", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "77094fb0-b937-4fd9-99f6-8585061c2875", + "devices": [ + "/dev/sda2" + ] + }, + "/vagrant": { + "kb_size": "492054648", + "kb_used": "395414728", + "kb_available": "96639920", + "percent_used": "81%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "devices": [ + "vagrant" + ] + }, + "/run/user/1000": { + "kb_size": "78272", + "kb_used": "0", + "kb_available": "78272", + "percent_used": "0%", + "total_inodes": "19568", + "inodes_used": "14", + "inodes_available": "19554", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=78272k", + "nr_inodes=19568", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "proc" + ] + }, + "/sys": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "sysfs" + ] + }, + "/sys/kernel/security": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "securityfs" + ] + }, + "/dev/pts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "devices": [ + "devpts" + ] + }, + "/sys/fs/cgroup": { + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "nsdelegate", + "memory_recursiveprot" + ], + "devices": [ + "cgroup2" + ] + }, + "/sys/fs/pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "pstore" + ] + }, + "/sys/fs/bpf": { + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "devices": [ + "none" + ] + }, + "/sys/fs/selinux": { + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime" + ], + "devices": [ + "selinuxfs" + ] + }, + "/proc/sys/fs/binfmt_misc": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=36", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=17457" + ], + "devices": [ + "systemd-1" + ] + }, + "/sys/kernel/debug": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "debugfs" + ] + }, + "/dev/mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "mqueue" + ] + }, + "/sys/kernel/tracing": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "tracefs" + ] + }, + "/dev/hugepages": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ], + "devices": [ + "hugetlbfs" + ] + }, + "/sys/kernel/config": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "configfs" + ] + }, + "/sys/fs/fuse/connections": { + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "fusectl" + ] + }, + "/var/lib/nfs/rpc_pipefs": { + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ], + "devices": [ + "sunrpc" + ] + } + }, + "by_pair": { + "devtmpfs,/dev": { + "device": "devtmpfs", + "kb_size": "4096", + "kb_used": "0", + "kb_available": "4096", + "percent_used": "0%", + "mount": "/dev", + "total_inodes": "1048576", + "inodes_used": "348", + "inodes_available": "1048228", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=4096k", + "nr_inodes=1048576", + "mode=755", + "inode64" + ] + }, + "tmpfs,/dev/shm": { + "device": "tmpfs", + "kb_size": "391372", + "kb_used": "0", + "kb_available": "391372", + "percent_used": "0%", + "mount": "/dev/shm", + "total_inodes": "97843", + "inodes_used": "1", + "inodes_available": "97842", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "inode64" + ] + }, + "tmpfs,/run": { + "device": "tmpfs", + "kb_size": "156552", + "kb_used": "4356", + "kb_available": "152196", + "percent_used": "3%", + "mount": "/run", + "total_inodes": "819200", + "inodes_used": "498", + "inodes_available": "818702", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "size=156552k", + "nr_inodes=819200", + "mode=755", + "inode64" + ] + }, + "/dev/sda2,/": { + "device": "/dev/sda2", + "kb_size": "64855104", + "kb_used": "1471296", + "kb_available": "63383808", + "percent_used": "3%", + "mount": "/", + "total_inodes": "32443392", + "inodes_used": "37679", + "inodes_available": "32405713", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "77094fb0-b937-4fd9-99f6-8585061c2875" + }, + "vagrant,/vagrant": { + "device": "vagrant", + "kb_size": "492054648", + "kb_used": "395414728", + "kb_available": "96639920", + "percent_used": "81%", + "mount": "/vagrant", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ] + }, + "tmpfs,/run/user/1000": { + "device": "tmpfs", + "kb_size": "78272", + "kb_used": "0", + "kb_available": "78272", + "percent_used": "0%", + "mount": "/run/user/1000", + "total_inodes": "19568", + "inodes_used": "14", + "inodes_available": "19554", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=78272k", + "nr_inodes=19568", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ] + }, + "proc,/proc": { + "device": "proc", + "mount": "/proc", + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "sysfs,/sys": { + "device": "sysfs", + "mount": "/sys", + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "securityfs,/sys/kernel/security": { + "device": "securityfs", + "mount": "/sys/kernel/security", + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "devpts,/dev/pts": { + "device": "devpts", + "mount": "/dev/pts", + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ] + }, + "cgroup2,/sys/fs/cgroup": { + "device": "cgroup2", + "mount": "/sys/fs/cgroup", + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "nsdelegate", + "memory_recursiveprot" + ] + }, + "pstore,/sys/fs/pstore": { + "device": "pstore", + "mount": "/sys/fs/pstore", + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "none,/sys/fs/bpf": { + "device": "none", + "mount": "/sys/fs/bpf", + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ] + }, + "selinuxfs,/sys/fs/selinux": { + "device": "selinuxfs", + "mount": "/sys/fs/selinux", + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime" + ] + }, + "systemd-1,/proc/sys/fs/binfmt_misc": { + "device": "systemd-1", + "mount": "/proc/sys/fs/binfmt_misc", + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=36", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=17457" + ] + }, + "debugfs,/sys/kernel/debug": { + "device": "debugfs", + "mount": "/sys/kernel/debug", + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "mqueue,/dev/mqueue": { + "device": "mqueue", + "mount": "/dev/mqueue", + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "tracefs,/sys/kernel/tracing": { + "device": "tracefs", + "mount": "/sys/kernel/tracing", + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "hugetlbfs,/dev/hugepages": { + "device": "hugetlbfs", + "mount": "/dev/hugepages", + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ] + }, + "configfs,/sys/kernel/config": { + "device": "configfs", + "mount": "/sys/kernel/config", + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "fusectl,/sys/fs/fuse/connections": { + "device": "fusectl", + "mount": "/sys/fs/fuse/connections", + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "sunrpc,/var/lib/nfs/rpc_pipefs": { + "device": "sunrpc", + "mount": "/var/lib/nfs/rpc_pipefs", + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ] + }, + "/dev/sda,": { + "device": "/dev/sda" + }, + "/dev/sda1,": { + "device": "/dev/sda1", + "fs_type": "swap", + "uuid": "8b72c2ca-6136-437e-a4fe-4380b6473502" + } + } + }, + "fips": { + "kernel": { + "enabled": false + } + }, + "fqdn": "fauxhai.local", + "hostname": "Fauxhai", + "idle": "30 days 15 hours 07 minutes 30 seconds", + "idletime_seconds": 2646450, + "init_package": "systemd", + "ipaddress": "10.0.0.2", + "kernel": { + "name": "Linux", + "release": "5.14.0-162.6.1.el9_1.x86_64", + "version": "#1 SMP PREEMPT_DYNAMIC Tue Nov 15 07:49:10 EST 2022", + "machine": "x86_64", + "processor": "x86_64", + "os": "GNU/Linux", + "modules": { + "tls": { + "size": "118784", + "refcount": "0" + }, + "vboxsf": { + "size": "90112", + "refcount": "1", + "version": "6.1.40 r154048" + }, + "rfkill": { + "size": "36864", + "refcount": "1" + }, + "intel_rapl_msr": { + "size": "20480", + "refcount": "0" + }, + "intel_rapl_common": { + "size": "28672", + "refcount": "1" + }, + "intel_pmc_core_pltdrv": { + "size": "16384", + "refcount": "0" + }, + "intel_pmc_core": { + "size": "53248", + "refcount": "0" + }, + "rapl": { + "size": "24576", + "refcount": "0" + }, + "pcspkr": { + "size": "16384", + "refcount": "0" + }, + "i2c_piix4": { + "size": "28672", + "refcount": "0" + }, + "joydev": { + "size": "28672", + "refcount": "0" + }, + "sunrpc": { + "size": "667648", + "refcount": "1" + }, + "fuse": { + "size": "176128", + "refcount": "1" + }, + "xfs": { + "size": "2002944", + "refcount": "1" + }, + "libcrc32c": { + "size": "16384", + "refcount": "1" + }, + "sd_mod": { + "size": "65536", + "refcount": "3" + }, + "t10_pi": { + "size": "16384", + "refcount": "1" + }, + "sg": { + "size": "40960", + "refcount": "0", + "version": "3.5.36" + }, + "ata_generic": { + "size": "16384", + "refcount": "0", + "version": "0.2.15" + }, + "vboxvideo": { + "size": "49152", + "refcount": "1", + "version": "6.1.40 r154048" + }, + "drm_ttm_helper": { + "size": "16384", + "refcount": "1" + }, + "ttm": { + "size": "86016", + "refcount": "2" + }, + "drm_kms_helper": { + "size": "200704", + "refcount": "1" + }, + "syscopyarea": { + "size": "16384", + "refcount": "1" + }, + "sysfillrect": { + "size": "16384", + "refcount": "1" + }, + "sysimgblt": { + "size": "16384", + "refcount": "1" + }, + "fb_sys_fops": { + "size": "16384", + "refcount": "1" + }, + "drm": { + "size": "622592", + "refcount": "5" + }, + "crct10dif_pclmul": { + "size": "16384", + "refcount": "1" + }, + "ata_piix": { + "size": "45056", + "refcount": "0", + "version": "2.13" + }, + "crc32_pclmul": { + "size": "16384", + "refcount": "0" + }, + "crc32c_intel": { + "size": "24576", + "refcount": "1" + }, + "ahci": { + "size": "49152", + "refcount": "2", + "version": "3.0" + }, + "libahci": { + "size": "49152", + "refcount": "1" + }, + "libata": { + "size": "389120", + "refcount": "4", + "version": "3.00" + }, + "e1000": { + "size": "167936", + "refcount": "0" + }, + "ghash_clmulni_intel": { + "size": "16384", + "refcount": "0" + }, + "vboxguest": { + "size": "397312", + "refcount": "2", + "version": "6.1.40 r154048" + }, + "serio_raw": { + "size": "20480", + "refcount": "0" + }, + "video": { + "size": "57344", + "refcount": "0" + } + } + }, + "keys": { + "ssh": { + "host_dsa_public": "ssh-dss AAAAB3NzaC1kc3MAAACBAJFo9BLAw4WKEs5hgipk5m423FzBsDXCZSMcC9ca/om/1VYzMqImixGe3uICDzNFUWxFoLJTQAOccyzo6MXZiQqwWJDLFi5qOSr6w2XcMyE+zd4wOyMoDiVM5fizmG8K3FzrqvGjwBcHcBdOQnavSijoj38DN25J9zhrid5BY4WlAAAAFQDxXrCyG52XCzn3FV4ej38wJBkomQAAAIBovGPJ4mP2P6BK8lHl0PPbktwQbWlpJ13oz6REJFDVcUi7vV26bX/BjQX+ohzZQzljdz1SpUbPc/8nuA4darYkVh91eBi307EN8IdxRHj2eBgp/ZG4yshIebG3WHrwJD/xUjjZ1MRfyDT1ermVi4LvjjPgWDxLZnPpMaR6S1nzgQAAAIEAj0Vd6DCWslvlsZ8+N53HWsqPi3gnx35JoLPz9Z2epkKIKqmEHav+93G3hdfztVa4I4t3phoPniQchYryF5+RNg8hqxKzjNtrIqUYCeuf2NJrksNsH7OZygPHZpqt4kTuwAGZxjxEGfAI0y8DhkU2ntp2LnzRnWH106BQBCmcXwo= fauxhai.local", + "host_rsa_public": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCtLCeqtqr/HbnORckw1ukdLhpfGoOPFi5/esKEokzTqq1gsgQ2V8emmyjfq1i6XXfRtSBxkdlHv/GWdP5wBTuE2G85MzBkVSQPvmwQN8lX/JMPEEtKXkeOo0o92/PiSmvY4eRsdF0mw40Uvg7jtE3f3fxj497kzh5fKtkrHnF4x9gXCbVdr3FqXJfggR5IJwAxToerbK7x/uRS+7YuZI9Pip3tt14nv9ezwXcuGb/tvjWOZINiFl8izVIFKi7sxfTX09p4NgamxRS7TD2Yd0jT8nEoF9UZTsgXcJ1kDSx7N7NxFfNfP6rCdOGRRz4gUhXtsUjG/XkxPeCwZ7A9VnOD fauxhai.local" + } + }, + "languages": { + "ruby": { + "platform": "x86_64-linux", + "version": "3.1.2", + "release_date": "2022-04-12", + "target": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_vendor": "pc", + "target_os": "linux", + "host": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux", + "host_vendor": "pc", + "bin_dir": "/usr/local/bin", + "ruby_bin": "/usr/local/bin/ruby", + "gem_bin": "/usr/local/bin/gem", + "gems_dir": "/usr/local/gems" + }, + "powershell": null + }, + "lsb": { + }, + "macaddress": "11:11:11:11:11:11", + "machinename": "Fauxhai", + "memory": { + "total": "1048576kB" + }, + "network": { + "interfaces": { + "lo": { + "mtu": "65536", + "flags": [ + "LOOPBACK", + "UP", + "LOWER_UP" + ], + "encapsulation": "Loopback", + "addresses": { + "127.0.0.1": { + "family": "inet", + "prefixlen": "8", + "netmask": "255.0.0.0", + "scope": "Node", + "ip_scope": "LOOPBACK" + }, + "::1": { + "family": "inet6", + "prefixlen": "128", + "scope": "Node", + "tags": [ + + ], + "ip_scope": "LINK LOCAL LOOPBACK" + } + }, + "state": "unknown" + }, + "eth0": { + "type": "eth", + "number": "0", + "mtu": "1500", + "flags": [ + "BROADCAST", + "MULTICAST", + "UP", + "LOWER_UP" + ], + "encapsulation": "Ethernet", + "addresses": { + "11:11:11:11:11:11": { + "family": "lladdr" + }, + "10.0.0.2": { + "family": "inet", + "prefixlen": "24", + "netmask": "255.255.255.0", + "broadcast": "10.0.0.255", + "scope": "Global", + "ip_scope": "RFC1918 PRIVATE" + }, + "fe80::11:1111:1111:1111": { + "family": "inet6", + "prefixlen": "64", + "scope": "Link", + "tags": [ + + ], + "ip_scope": "LINK LOCAL UNICAST" + } + }, + "state": "up", + "arp": { + "10.0.0.1": "fe:ff:ff:ff:ff:ff" + }, + "routes": [ + { + "destination": "default", + "family": "inet", + "via": "10.0.0.1" + }, + { + "destination": "10.0.0.0/24", + "family": "inet", + "scope": "link", + "proto": "kernel", + "src": "10.0.0.2" + }, + { + "destination": "fe80::/64", + "family": "inet6", + "metric": "256", + "proto": "kernel" + } + ], + "ring_params": { + } + } + }, + "default_interface": "eth0", + "default_gateway": "10.0.0.1" + }, + "ohai_time": 1675118412.760212, + "os": "linux", + "os_version": "5.14.0-162.6.1.el9_1.x86_64", + "packages": { + "libgcc": { + "epoch": "0", + "version": "11.3.1", + "release": "2.1.el9.alma", + "installdate": "1670812277", + "arch": "x86_64" + }, + "crypto-policies": { + "epoch": "0", + "version": "20220815", + "release": "1.git0fbe86f.el9", + "installdate": "1670812277", + "arch": "noarch" + }, + "gawk-all-langpacks": { + "epoch": "0", + "version": "5.1.0", + "release": "6.el9", + "installdate": "1670812280", + "arch": "x86_64" + }, + "quota-nls": { + "epoch": "1", + "version": "4.06", + "release": "6.el9", + "installdate": "1670812280", + "arch": "noarch" + }, + "python3-setuptools-wheel": { + "epoch": "0", + "version": "53.0.0", + "release": "10.el9", + "installdate": "1670812280", + "arch": "noarch" + }, + "publicsuffix-list-dafsa": { + "epoch": "0", + "version": "20210518", + "release": "3.el9", + "installdate": "1670812280", + "arch": "noarch" + }, + "pcre2-syntax": { + "epoch": "0", + "version": "10.40", + "release": "2.el9", + "installdate": "1670812280", + "arch": "noarch" + }, + "ncurses-base": { + "epoch": "0", + "version": "6.2", + "release": "8.20210508.el9", + "installdate": "1670812281", + "arch": "noarch" + }, + "libssh-config": { + "epoch": "0", + "version": "0.9.6", + "release": "3.el9", + "installdate": "1670812295", + "arch": "noarch" + }, + "libreport-filesystem": { + "epoch": "0", + "version": "2.15.2", + "release": "6.el9.alma", + "installdate": "1670812295", + "arch": "noarch" + }, + "dnf-data": { + "epoch": "0", + "version": "4.12.0", + "release": "4.el9.alma", + "installdate": "1670812295", + "arch": "noarch" + }, + "kbd-misc": { + "epoch": "0", + "version": "2.4.0", + "release": "8.el9", + "installdate": "1670812297", + "arch": "noarch" + }, + "hwdata": { + "epoch": "0", + "version": "0.348", + "release": "9.5.el9", + "installdate": "1670812297", + "arch": "noarch" + }, + "fonts-filesystem": { + "epoch": "1", + "version": "2.0.5", + "release": "7.el9.1", + "installdate": "1670812297", + "arch": "noarch" + }, + "dejavu-sans-fonts": { + "epoch": "0", + "version": "2.37", + "release": "18.el9", + "installdate": "1670812298", + "arch": "noarch" + }, + "langpacks-core-font-en": { + "epoch": "0", + "version": "3.0", + "release": "16.el9", + "installdate": "1670812298", + "arch": "noarch" + }, + "firewalld-filesystem": { + "epoch": "0", + "version": "1.1.1", + "release": "3.el9", + "installdate": "1670812298", + "arch": "noarch" + }, + "coreutils-common": { + "epoch": "0", + "version": "8.32", + "release": "32.el9", + "installdate": "1670812299", + "arch": "x86_64" + }, + "almalinux-gpg-keys": { + "epoch": "0", + "version": "9.1", + "release": "1.9.el9", + "installdate": "1670812299", + "arch": "x86_64" + }, + "almalinux-release": { + "epoch": "0", + "version": "9.1", + "release": "1.9.el9", + "installdate": "1670812299", + "arch": "x86_64" + }, + "almalinux-repos": { + "epoch": "0", + "version": "9.1", + "release": "1.9.el9", + "installdate": "1670812299", + "arch": "x86_64" + }, + "setup": { + "epoch": "0", + "version": "2.13.7", + "release": "7.el9", + "installdate": "1670812299", + "arch": "noarch" + }, + "filesystem": { + "epoch": "0", + "version": "3.16", + "release": "2.el9", + "installdate": "1670812303", + "arch": "x86_64" + }, + "basesystem": { + "epoch": "0", + "version": "11", + "release": "13.el9", + "installdate": "1670812303", + "arch": "noarch" + }, + "glibc-gconv-extra": { + "epoch": "0", + "version": "2.34", + "release": "40.el9", + "installdate": "1670812306", + "arch": "x86_64" + }, + "ncurses-libs": { + "epoch": "0", + "version": "6.2", + "release": "8.20210508.el9", + "installdate": "1670812306", + "arch": "x86_64" + }, + "glibc": { + "epoch": "0", + "version": "2.34", + "release": "40.el9", + "installdate": "1670812306", + "arch": "x86_64" + }, + "bash": { + "epoch": "0", + "version": "5.1.8", + "release": "5.el9", + "installdate": "1670812307", + "arch": "x86_64" + }, + "glibc-common": { + "epoch": "0", + "version": "2.34", + "release": "40.el9", + "installdate": "1670812307", + "arch": "x86_64" + }, + "glibc-langpack-en": { + "epoch": "0", + "version": "2.34", + "release": "40.el9", + "installdate": "1670812308", + "arch": "x86_64" + }, + "zlib": { + "epoch": "0", + "version": "1.2.11", + "release": "34.el9", + "installdate": "1670812308", + "arch": "x86_64" + }, + "xz-libs": { + "epoch": "0", + "version": "5.2.5", + "release": "8.el9_0", + "installdate": "1670812308", + "arch": "x86_64" + }, + "libcap": { + "epoch": "0", + "version": "2.48", + "release": "8.el9", + "installdate": "1670812308", + "arch": "x86_64" + }, + "libzstd": { + "epoch": "0", + "version": "1.5.1", + "release": "2.el9", + "installdate": "1670812308", + "arch": "x86_64" + }, + "popt": { + "epoch": "0", + "version": "1.18", + "release": "8.el9", + "installdate": "1670812308", + "arch": "x86_64" + }, + "bzip2-libs": { + "epoch": "0", + "version": "1.0.8", + "release": "8.el9", + "installdate": "1670812308", + "arch": "x86_64" + }, + "libuuid": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1670812308", + "arch": "x86_64" + }, + "libxcrypt": { + "epoch": "0", + "version": "4.4.18", + "release": "3.el9", + "installdate": "1670812309", + "arch": "x86_64" + }, + "sqlite-libs": { + "epoch": "0", + "version": "3.34.1", + "release": "5.el9", + "installdate": "1670812309", + "arch": "x86_64" + }, + "libcom_err": { + "epoch": "0", + "version": "1.46.5", + "release": "3.el9", + "installdate": "1670812309", + "arch": "x86_64" + }, + "elfutils-libelf": { + "epoch": "0", + "version": "0.187", + "release": "5.el9", + "installdate": "1670812309", + "arch": "x86_64" + }, + "libmnl": { + "epoch": "0", + "version": "1.0.4", + "release": "15.el9", + "installdate": "1670812309", + "arch": "x86_64" + }, + "libstdc++": { + "epoch": "0", + "version": "11.3.1", + "release": "2.1.el9.alma", + "installdate": "1670812309", + "arch": "x86_64" + }, + "libxml2": { + "epoch": "0", + "version": "2.9.13", + "release": "2.el9", + "installdate": "1670812309", + "arch": "x86_64" + }, + "lua-libs": { + "epoch": "0", + "version": "5.4.2", + "release": "4.el9_0.3", + "installdate": "1670812309", + "arch": "x86_64" + }, + "readline": { + "epoch": "0", + "version": "8.1", + "release": "4.el9", + "installdate": "1670812309", + "arch": "x86_64" + }, + "keyutils-libs": { + "epoch": "0", + "version": "1.6.1", + "release": "4.el9", + "installdate": "1670812309", + "arch": "x86_64" + }, + "libcap-ng": { + "epoch": "0", + "version": "0.8.2", + "release": "7.el9", + "installdate": "1670812309", + "arch": "x86_64" + }, + "audit-libs": { + "epoch": "0", + "version": "3.0.7", + "release": "103.el9", + "installdate": "1670812309", + "arch": "x86_64" + }, + "libunistring": { + "epoch": "0", + "version": "0.9.10", + "release": "15.el9", + "installdate": "1670812309", + "arch": "x86_64" + }, + "lz4-libs": { + "epoch": "0", + "version": "1.9.3", + "release": "5.el9", + "installdate": "1670812309", + "arch": "x86_64" + }, + "libidn2": { + "epoch": "0", + "version": "2.3.0", + "release": "7.el9", + "installdate": "1670812309", + "arch": "x86_64" + }, + "alternatives": { + "epoch": "0", + "version": "1.20", + "release": "2.el9", + "installdate": "1670812309", + "arch": "x86_64" + }, + "libffi": { + "epoch": "0", + "version": "3.4.2", + "release": "7.el9", + "installdate": "1670812309", + "arch": "x86_64" + }, + "p11-kit": { + "epoch": "0", + "version": "0.24.1", + "release": "2.el9", + "installdate": "1670812310", + "arch": "x86_64" + }, + "libgpg-error": { + "epoch": "0", + "version": "1.42", + "release": "5.el9", + "installdate": "1670812310", + "arch": "x86_64" + }, + "libnl3": { + "epoch": "0", + "version": "3.7.0", + "release": "1.el9", + "installdate": "1670812310", + "arch": "x86_64" + }, + "libsepol": { + "epoch": "0", + "version": "3.4", + "release": "1.1.el9", + "installdate": "1670812310", + "arch": "x86_64" + }, + "libtalloc": { + "epoch": "0", + "version": "2.3.3", + "release": "1.el9", + "installdate": "1670812310", + "arch": "x86_64" + }, + "pcre2": { + "epoch": "0", + "version": "10.40", + "release": "2.el9", + "installdate": "1670812310", + "arch": "x86_64" + }, + "libselinux": { + "epoch": "0", + "version": "3.4", + "release": "3.el9", + "installdate": "1670812310", + "arch": "x86_64" + }, + "libsemanage": { + "epoch": "0", + "version": "3.4", + "release": "2.el9", + "installdate": "1670812310", + "arch": "x86_64" + }, + "file-libs": { + "epoch": "0", + "version": "5.39", + "release": "10.el9", + "installdate": "1670812310", + "arch": "x86_64" + }, + "gmp": { + "epoch": "1", + "version": "6.2.0", + "release": "10.el9", + "installdate": "1670812311", + "arch": "x86_64" + }, + "libsmartcols": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1670812311", + "arch": "x86_64" + }, + "findutils": { + "epoch": "1", + "version": "4.8.0", + "release": "5.el9", + "installdate": "1670812311", + "arch": "x86_64" + }, + "libtevent": { + "epoch": "0", + "version": "0.12.0", + "release": "0.el9", + "installdate": "1670812311", + "arch": "x86_64" + }, + "libgcrypt": { + "epoch": "0", + "version": "1.10.0", + "release": "8.el9_0", + "installdate": "1670812311", + "arch": "x86_64" + }, + "expat": { + "epoch": "0", + "version": "2.4.9", + "release": "1.el9_1", + "installdate": "1670812311", + "arch": "x86_64" + }, + "gdbm-libs": { + "epoch": "1", + "version": "1.19", + "release": "4.el9", + "installdate": "1670812311", + "arch": "x86_64" + }, + "jansson": { + "epoch": "0", + "version": "2.14", + "release": "1.el9", + "installdate": "1670812311", + "arch": "x86_64" + }, + "json-c": { + "epoch": "0", + "version": "0.14", + "release": "11.el9", + "installdate": "1670812311", + "arch": "x86_64" + }, + "libattr": { + "epoch": "0", + "version": "2.5.1", + "release": "3.el9", + "installdate": "1670812311", + "arch": "x86_64" + }, + "libacl": { + "epoch": "0", + "version": "2.3.1", + "release": "3.el9", + "installdate": "1670812311", + "arch": "x86_64" + }, + "sed": { + "epoch": "0", + "version": "4.8", + "release": "9.el9", + "installdate": "1670812311", + "arch": "x86_64" + }, + "shadow-utils": { + "epoch": "2", + "version": "4.9", + "release": "5.el9", + "installdate": "1670812312", + "arch": "x86_64" + }, + "libedit": { + "epoch": "0", + "version": "3.1", + "release": "37.20210216cvs.el9", + "installdate": "1670812312", + "arch": "x86_64" + }, + "libref_array": { + "epoch": "0", + "version": "0.1.5", + "release": "53.el9", + "installdate": "1670812312", + "arch": "x86_64" + }, + "libtdb": { + "epoch": "0", + "version": "1.4.6", + "release": "1.el9", + "installdate": "1670812312", + "arch": "x86_64" + }, + "libverto": { + "epoch": "0", + "version": "0.3.2", + "release": "3.el9", + "installdate": "1670812312", + "arch": "x86_64" + }, + "file": { + "epoch": "0", + "version": "5.39", + "release": "10.el9", + "installdate": "1670812312", + "arch": "x86_64" + }, + "libassuan": { + "epoch": "0", + "version": "2.5.5", + "release": "3.el9", + "installdate": "1670812312", + "arch": "x86_64" + }, + "libpsl": { + "epoch": "0", + "version": "0.21.1", + "release": "5.el9", + "installdate": "1670812312", + "arch": "x86_64" + }, + "libnftnl": { + "epoch": "0", + "version": "1.2.2", + "release": "1.el9", + "installdate": "1670812312", + "arch": "x86_64" + }, + "libbpf": { + "epoch": "2", + "version": "0.6.0", + "release": "1.el9", + "installdate": "1670812312", + "arch": "x86_64" + }, + "e2fsprogs-libs": { + "epoch": "0", + "version": "1.46.5", + "release": "3.el9", + "installdate": "1670812312", + "arch": "x86_64" + }, + "fuse-libs": { + "epoch": "0", + "version": "2.9.9", + "release": "15.el9", + "installdate": "1670812312", + "arch": "x86_64" + }, + "libbasicobjects": { + "epoch": "0", + "version": "0.1.1", + "release": "53.el9", + "installdate": "1670812312", + "arch": "x86_64" + }, + "libcollection": { + "epoch": "0", + "version": "0.7.0", + "release": "53.el9", + "installdate": "1670812312", + "arch": "x86_64" + }, + "libdb": { + "epoch": "0", + "version": "5.3.28", + "release": "53.el9", + "installdate": "1670812312", + "arch": "x86_64" + }, + "libdhash": { + "epoch": "0", + "version": "0.5.0", + "release": "53.el9", + "installdate": "1670812313", + "arch": "x86_64" + }, + "libgomp": { + "epoch": "0", + "version": "11.3.1", + "release": "2.1.el9.alma", + "installdate": "1670812313", + "arch": "x86_64" + }, + "libseccomp": { + "epoch": "0", + "version": "2.5.2", + "release": "2.el9", + "installdate": "1670812313", + "arch": "x86_64" + }, + "libsigsegv": { + "epoch": "0", + "version": "2.13", + "release": "4.el9", + "installdate": "1670812313", + "arch": "x86_64" + }, + "libtasn1": { + "epoch": "0", + "version": "4.16.0", + "release": "7.el9", + "installdate": "1670812313", + "arch": "x86_64" + }, + "p11-kit-trust": { + "epoch": "0", + "version": "0.24.1", + "release": "2.el9", + "installdate": "1670812313", + "arch": "x86_64" + }, + "libyaml": { + "epoch": "0", + "version": "0.2.5", + "release": "7.el9", + "installdate": "1670812313", + "arch": "x86_64" + }, + "lzo": { + "epoch": "0", + "version": "2.10", + "release": "7.el9", + "installdate": "1670812313", + "arch": "x86_64" + }, + "make": { + "epoch": "1", + "version": "4.3", + "release": "7.el9", + "installdate": "1670812313", + "arch": "x86_64" + }, + "nettle": { + "epoch": "0", + "version": "3.8", + "release": "3.el9_0", + "installdate": "1670812313", + "arch": "x86_64" + }, + "gnutls": { + "epoch": "0", + "version": "3.7.6", + "release": "12.el9_0", + "installdate": "1670812313", + "arch": "x86_64" + }, + "pcre": { + "epoch": "0", + "version": "8.44", + "release": "3.el9.3", + "installdate": "1670812313", + "arch": "x86_64" + }, + "grep": { + "epoch": "0", + "version": "3.6", + "release": "5.el9", + "installdate": "1670812313", + "arch": "x86_64" + }, + "openssl-pkcs11": { + "epoch": "0", + "version": "0.4.11", + "release": "7.el9", + "installdate": "1670812314", + "arch": "x86_64" + }, + "openssl-libs": { + "epoch": "1", + "version": "3.0.1", + "release": "43.el9_0", + "installdate": "1670812314", + "arch": "x86_64" + }, + "coreutils": { + "epoch": "0", + "version": "8.32", + "release": "32.el9", + "installdate": "1670812314", + "arch": "x86_64" + }, + "ca-certificates": { + "epoch": "0", + "version": "2022.2.54", + "release": "90.2.el9_0", + "installdate": "1670812315", + "arch": "noarch" + }, + "systemd-libs": { + "epoch": "0", + "version": "250", + "release": "12.el9_1", + "installdate": "1670812320", + "arch": "x86_64" + }, + "libblkid": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1670812320", + "arch": "x86_64" + }, + "libmount": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1670812320", + "arch": "x86_64" + }, + "glib2": { + "epoch": "0", + "version": "2.68.4", + "release": "5.el9", + "installdate": "1670812320", + "arch": "x86_64" + }, + "dbus-libs": { + "epoch": "1", + "version": "1.12.20", + "release": "6.el9", + "installdate": "1670812320", + "arch": "x86_64" + }, + "kmod": { + "epoch": "0", + "version": "28", + "release": "7.el9", + "installdate": "1670812320", + "arch": "x86_64" + }, + "gzip": { + "epoch": "0", + "version": "1.12", + "release": "1.el9", + "installdate": "1670812320", + "arch": "x86_64" + }, + "kmod-libs": { + "epoch": "0", + "version": "28", + "release": "7.el9", + "installdate": "1670812320", + "arch": "x86_64" + }, + "cracklib": { + "epoch": "0", + "version": "2.9.6", + "release": "27.el9", + "installdate": "1670812321", + "arch": "x86_64" + }, + "NetworkManager-libnm": { + "epoch": "1", + "version": "1.40.0", + "release": "1.el9", + "installdate": "1670812321", + "arch": "x86_64" + }, + "util-linux-core": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1670812321", + "arch": "x86_64" + }, + "libfdisk": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1670812322", + "arch": "x86_64" + }, + "libevent": { + "epoch": "0", + "version": "2.1.12", + "release": "6.el9", + "installdate": "1670812322", + "arch": "x86_64" + }, + "which": { + "epoch": "0", + "version": "2.21", + "release": "28.el9", + "installdate": "1670812322", + "arch": "x86_64" + }, + "checkpolicy": { + "epoch": "0", + "version": "3.4", + "release": "1.el9", + "installdate": "1670812322", + "arch": "x86_64" + }, + "cracklib-dicts": { + "epoch": "0", + "version": "2.9.6", + "release": "27.el9", + "installdate": "1670812322", + "arch": "x86_64" + }, + "gobject-introspection": { + "epoch": "0", + "version": "1.68.0", + "release": "10.el9", + "installdate": "1670812322", + "arch": "x86_64" + }, + "procps-ng": { + "epoch": "0", + "version": "3.3.17", + "release": "8.el9", + "installdate": "1670812322", + "arch": "x86_64" + }, + "openssl": { + "epoch": "1", + "version": "3.0.1", + "release": "43.el9_0", + "installdate": "1670812323", + "arch": "x86_64" + }, + "libarchive": { + "epoch": "0", + "version": "3.5.3", + "release": "3.el9", + "installdate": "1670812323", + "arch": "x86_64" + }, + "xz": { + "epoch": "0", + "version": "5.2.5", + "release": "8.el9_0", + "installdate": "1670812323", + "arch": "x86_64" + }, + "squashfs-tools": { + "epoch": "0", + "version": "4.4", + "release": "8.git1.el9", + "installdate": "1670812323", + "arch": "x86_64" + }, + "libutempter": { + "epoch": "0", + "version": "1.2.1", + "release": "6.el9", + "installdate": "1670812323", + "arch": "x86_64" + }, + "acl": { + "epoch": "0", + "version": "2.3.1", + "release": "3.el9", + "installdate": "1670812323", + "arch": "x86_64" + }, + "gettext-libs": { + "epoch": "0", + "version": "0.21", + "release": "7.el9", + "installdate": "1670812323", + "arch": "x86_64" + }, + "gettext": { + "epoch": "0", + "version": "0.21", + "release": "7.el9", + "installdate": "1670812324", + "arch": "x86_64" + }, + "libcomps": { + "epoch": "0", + "version": "0.1.18", + "release": "1.el9", + "installdate": "1670812324", + "arch": "x86_64" + }, + "mpfr": { + "epoch": "0", + "version": "4.1.0", + "release": "7.el9", + "installdate": "1670812324", + "arch": "x86_64" + }, + "gawk": { + "epoch": "0", + "version": "5.1.0", + "release": "6.el9", + "installdate": "1670812324", + "arch": "x86_64" + }, + "libtirpc": { + "epoch": "0", + "version": "1.3.3", + "release": "0.el9", + "installdate": "1670812324", + "arch": "x86_64" + }, + "quota": { + "epoch": "1", + "version": "4.06", + "release": "6.el9", + "installdate": "1670812324", + "arch": "x86_64" + }, + "cyrus-sasl-lib": { + "epoch": "0", + "version": "2.1.27", + "release": "20.el9", + "installdate": "1670812324", + "arch": "x86_64" + }, + "openldap": { + "epoch": "0", + "version": "2.6.2", + "release": "3.el9", + "installdate": "1670812325", + "arch": "x86_64" + }, + "libnfsidmap": { + "epoch": "1", + "version": "2.5.4", + "release": "15.el9", + "installdate": "1670812325", + "arch": "x86_64" + }, + "openldap-compat": { + "epoch": "0", + "version": "2.6.2", + "release": "3.el9", + "installdate": "1670812325", + "arch": "x86_64" + }, + "libssh": { + "epoch": "0", + "version": "0.9.6", + "release": "3.el9", + "installdate": "1670812325", + "arch": "x86_64" + }, + "libselinux-utils": { + "epoch": "0", + "version": "3.4", + "release": "3.el9", + "installdate": "1670812325", + "arch": "x86_64" + }, + "libibverbs": { + "epoch": "0", + "version": "41.0", + "release": "3.el9", + "installdate": "1670812325", + "arch": "x86_64" + }, + "libpcap": { + "epoch": "14", + "version": "1.10.0", + "release": "4.el9", + "installdate": "1670812325", + "arch": "x86_64" + }, + "libnl3-cli": { + "epoch": "0", + "version": "3.7.0", + "release": "1.el9", + "installdate": "1670812325", + "arch": "x86_64" + }, + "libteam": { + "epoch": "0", + "version": "1.31", + "release": "14.el9", + "installdate": "1670812325", + "arch": "x86_64" + }, + "libksba": { + "epoch": "0", + "version": "1.5.1", + "release": "5.el9_0", + "installdate": "1670812325", + "arch": "x86_64" + }, + "zstd": { + "epoch": "0", + "version": "1.5.1", + "release": "2.el9", + "installdate": "1670812326", + "arch": "x86_64" + }, + "keyutils": { + "epoch": "0", + "version": "1.6.1", + "release": "4.el9", + "installdate": "1670812326", + "arch": "x86_64" + }, + "groff-base": { + "epoch": "0", + "version": "1.22.4", + "release": "10.el9", + "installdate": "1670812326", + "arch": "x86_64" + }, + "snappy": { + "epoch": "0", + "version": "1.1.8", + "release": "8.el9", + "installdate": "1670812326", + "arch": "x86_64" + }, + "ethtool": { + "epoch": "2", + "version": "5.16", + "release": "1.el9", + "installdate": "1670812326", + "arch": "x86_64" + }, + "ipset-libs": { + "epoch": "0", + "version": "7.11", + "release": "6.el9", + "installdate": "1670812326", + "arch": "x86_64" + }, + "ipset": { + "epoch": "0", + "version": "7.11", + "release": "6.el9", + "installdate": "1670812327", + "arch": "x86_64" + }, + "libss": { + "epoch": "0", + "version": "1.46.5", + "release": "3.el9", + "installdate": "1670812327", + "arch": "x86_64" + }, + "libxcrypt-compat": { + "epoch": "0", + "version": "4.4.18", + "release": "3.el9", + "installdate": "1670812327", + "arch": "x86_64" + }, + "python3-pip-wheel": { + "epoch": "0", + "version": "21.2.3", + "release": "6.el9", + "installdate": "1670812327", + "arch": "noarch" + }, + "python3-dbus": { + "epoch": "0", + "version": "1.2.18", + "release": "2.el9", + "installdate": "1670812335", + "arch": "x86_64" + }, + "python3-gobject-base": { + "epoch": "0", + "version": "3.40.1", + "release": "6.el9", + "installdate": "1670812335", + "arch": "x86_64" + }, + "python3-gobject-base-noarch": { + "epoch": "0", + "version": "3.40.1", + "release": "6.el9", + "installdate": "1670812335", + "arch": "noarch" + }, + "python3-libselinux": { + "epoch": "0", + "version": "3.4", + "release": "3.el9", + "installdate": "1670812335", + "arch": "x86_64" + }, + "python3-libsemanage": { + "epoch": "0", + "version": "3.4", + "release": "2.el9", + "installdate": "1670812335", + "arch": "x86_64" + }, + "python3-libcomps": { + "epoch": "0", + "version": "0.1.18", + "release": "1.el9", + "installdate": "1670812335", + "arch": "x86_64" + }, + "python3-pyyaml": { + "epoch": "0", + "version": "5.4.1", + "release": "6.el9", + "installdate": "1670812336", + "arch": "x86_64" + }, + "python3-setuptools": { + "epoch": "0", + "version": "53.0.0", + "release": "10.el9", + "installdate": "1670812337", + "arch": "noarch" + }, + "python3-setools": { + "epoch": "0", + "version": "4.4.0", + "release": "5.el9", + "installdate": "1670812338", + "arch": "x86_64" + }, + "python3-six": { + "epoch": "0", + "version": "1.15.0", + "release": "9.el9", + "installdate": "1670812338", + "arch": "noarch" + }, + "python3-dateutil": { + "epoch": "1", + "version": "2.8.1", + "release": "6.el9", + "installdate": "1670812338", + "arch": "noarch" + }, + "libcap-ng-python3": { + "epoch": "0", + "version": "0.8.2", + "release": "7.el9", + "installdate": "1670812338", + "arch": "x86_64" + }, + "python3-audit": { + "epoch": "0", + "version": "3.0.7", + "release": "103.el9", + "installdate": "1670812338", + "arch": "x86_64" + }, + "pigz": { + "epoch": "0", + "version": "2.5", + "release": "4.el9", + "installdate": "1670812338", + "arch": "x86_64" + }, + "langpacks-core-en": { + "epoch": "0", + "version": "3.0", + "release": "16.el9", + "installdate": "1670812338", + "arch": "noarch" + }, + "hostname": { + "epoch": "0", + "version": "3.23", + "release": "6.el9", + "installdate": "1670812338", + "arch": "x86_64" + }, + "kernel-tools-libs": { + "epoch": "0", + "version": "5.14.0", + "release": "162.6.1.el9_1", + "installdate": "1670812338", + "arch": "x86_64" + }, + "less": { + "epoch": "0", + "version": "590", + "release": "1.el9_0", + "installdate": "1670812338", + "arch": "x86_64" + }, + "systemd-rpm-macros": { + "epoch": "0", + "version": "250", + "release": "12.el9_1", + "installdate": "1670812338", + "arch": "noarch" + }, + "c-ares": { + "epoch": "0", + "version": "1.17.1", + "release": "5.el9", + "installdate": "1670812338", + "arch": "x86_64" + }, + "cpio": { + "epoch": "0", + "version": "2.13", + "release": "16.el9", + "installdate": "1670812339", + "arch": "x86_64" + }, + "diffutils": { + "epoch": "0", + "version": "3.7", + "release": "12.el9", + "installdate": "1670812339", + "arch": "x86_64" + }, + "inih": { + "epoch": "0", + "version": "49", + "release": "6.el9", + "installdate": "1670812339", + "arch": "x86_64" + }, + "libbrotli": { + "epoch": "0", + "version": "1.0.9", + "release": "6.el9", + "installdate": "1670812339", + "arch": "x86_64" + }, + "libcbor": { + "epoch": "0", + "version": "0.7.0", + "release": "5.el9", + "installdate": "1670812339", + "arch": "x86_64" + }, + "libdaemon": { + "epoch": "0", + "version": "0.14", + "release": "23.el9", + "installdate": "1670812339", + "arch": "x86_64" + }, + "teamd": { + "epoch": "0", + "version": "1.31", + "release": "14.el9", + "installdate": "1670812339", + "arch": "x86_64" + }, + "libeconf": { + "epoch": "0", + "version": "0.4.1", + "release": "2.el9", + "installdate": "1670812339", + "arch": "x86_64" + }, + "libpwquality": { + "epoch": "0", + "version": "1.4.4", + "release": "8.el9", + "installdate": "1670812339", + "arch": "x86_64" + }, + "pam": { + "epoch": "0", + "version": "1.5.1", + "release": "12.el9", + "installdate": "1670812340", + "arch": "x86_64" + }, + "util-linux": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1670812341", + "arch": "x86_64" + }, + "grub2-common": { + "epoch": "1", + "version": "2.06", + "release": "46.el9.alma", + "installdate": "1670812341", + "arch": "noarch" + }, + "openssh": { + "epoch": "0", + "version": "8.7p1", + "release": "24.el9_1", + "installdate": "1670812342", + "arch": "x86_64" + }, + "grub2-pc-modules": { + "epoch": "1", + "version": "2.06", + "release": "46.el9.alma", + "installdate": "1670812343", + "arch": "noarch" + }, + "device-mapper": { + "epoch": "9", + "version": "1.02.185", + "release": "3.el9", + "installdate": "1670812343", + "arch": "x86_64" + }, + "device-mapper-libs": { + "epoch": "9", + "version": "1.02.185", + "release": "3.el9", + "installdate": "1670812343", + "arch": "x86_64" + }, + "cryptsetup-libs": { + "epoch": "0", + "version": "2.4.3", + "release": "5.el9", + "installdate": "1670812343", + "arch": "x86_64" + }, + "dbus": { + "epoch": "1", + "version": "1.12.20", + "release": "6.el9", + "installdate": "1670812343", + "arch": "x86_64" + }, + "systemd-pam": { + "epoch": "0", + "version": "250", + "release": "12.el9_1", + "installdate": "1670812343", + "arch": "x86_64" + }, + "systemd": { + "epoch": "0", + "version": "250", + "release": "12.el9_1", + "installdate": "1670812345", + "arch": "x86_64" + }, + "dbus-common": { + "epoch": "1", + "version": "1.12.20", + "release": "6.el9", + "installdate": "1670812346", + "arch": "noarch" + }, + "dbus-broker": { + "epoch": "0", + "version": "28", + "release": "7.el9", + "installdate": "1670812346", + "arch": "x86_64" + }, + "grub2-tools-minimal": { + "epoch": "1", + "version": "2.06", + "release": "46.el9.alma", + "installdate": "1670812346", + "arch": "x86_64" + }, + "cronie-anacron": { + "epoch": "0", + "version": "1.5.7", + "release": "8.el9", + "installdate": "1670812346", + "arch": "x86_64" + }, + "cronie": { + "epoch": "0", + "version": "1.5.7", + "release": "8.el9", + "installdate": "1670812346", + "arch": "x86_64" + }, + "crontabs": { + "epoch": "0", + "version": "1.11", + "release": "27.20190603git.el9_0", + "installdate": "1670812346", + "arch": "noarch" + }, + "authselect-libs": { + "epoch": "0", + "version": "1.2.5", + "release": "1.el9", + "installdate": "1670812347", + "arch": "x86_64" + }, + "elfutils-default-yama-scope": { + "epoch": "0", + "version": "0.187", + "release": "5.el9", + "installdate": "1670812347", + "arch": "noarch" + }, + "elfutils-libs": { + "epoch": "0", + "version": "0.187", + "release": "5.el9", + "installdate": "1670812347", + "arch": "x86_64" + }, + "initscripts-service": { + "epoch": "0", + "version": "10.11.5", + "release": "1.el9", + "installdate": "1670812347", + "arch": "noarch" + }, + "iputils": { + "epoch": "0", + "version": "20210202", + "release": "7.el9", + "installdate": "1670812347", + "arch": "x86_64" + }, + "libkcapi": { + "epoch": "0", + "version": "1.3.1", + "release": "3.el9", + "installdate": "1670812347", + "arch": "x86_64" + }, + "libkcapi-hmaccalc": { + "epoch": "0", + "version": "1.3.1", + "release": "3.el9", + "installdate": "1670812347", + "arch": "x86_64" + }, + "logrotate": { + "epoch": "0", + "version": "3.18.0", + "release": "7.el9", + "installdate": "1670812347", + "arch": "x86_64" + }, + "kbd": { + "epoch": "0", + "version": "2.4.0", + "release": "8.el9", + "installdate": "1670812348", + "arch": "x86_64" + }, + "libuser": { + "epoch": "0", + "version": "0.63", + "release": "11.el9", + "installdate": "1670812348", + "arch": "x86_64" + }, + "libev": { + "epoch": "0", + "version": "4.33", + "release": "5.el9", + "installdate": "1670812348", + "arch": "x86_64" + }, + "libverto-libev": { + "epoch": "0", + "version": "0.3.2", + "release": "3.el9", + "installdate": "1670812348", + "arch": "x86_64" + }, + "libndp": { + "epoch": "0", + "version": "1.8", + "release": "4.el9", + "installdate": "1670812348", + "arch": "x86_64" + }, + "libnfnetlink": { + "epoch": "0", + "version": "1.0.1", + "release": "21.el9", + "installdate": "1670812348", + "arch": "x86_64" + }, + "libnetfilter_conntrack": { + "epoch": "0", + "version": "1.0.8", + "release": "4.el9", + "installdate": "1670812348", + "arch": "x86_64" + }, + "iptables-libs": { + "epoch": "0", + "version": "1.8.8", + "release": "4.el9", + "installdate": "1670812349", + "arch": "x86_64" + }, + "iptables-nft": { + "epoch": "0", + "version": "1.8.8", + "release": "4.el9", + "installdate": "1670812350", + "arch": "x86_64" + }, + "nftables": { + "epoch": "1", + "version": "1.0.4", + "release": "2.el9", + "installdate": "1670812350", + "arch": "x86_64" + }, + "python3-nftables": { + "epoch": "1", + "version": "1.0.4", + "release": "2.el9", + "installdate": "1670812351", + "arch": "x86_64" + }, + "python3-firewall": { + "epoch": "0", + "version": "1.1.1", + "release": "3.el9", + "installdate": "1670812352", + "arch": "noarch" + }, + "libnghttp2": { + "epoch": "0", + "version": "1.43.0", + "release": "5.el9", + "installdate": "1670812352", + "arch": "x86_64" + }, + "libcurl": { + "epoch": "0", + "version": "7.76.1", + "release": "19.el9", + "installdate": "1670812352", + "arch": "x86_64" + }, + "tpm2-tss": { + "epoch": "0", + "version": "3.0.3", + "release": "8.el9", + "installdate": "1670812352", + "arch": "x86_64" + }, + "systemd-udev": { + "epoch": "0", + "version": "250", + "release": "12.el9_1", + "installdate": "1670812353", + "arch": "x86_64" + }, + "dracut": { + "epoch": "0", + "version": "057", + "release": "13.git20220816.el9", + "installdate": "1670812357", + "arch": "x86_64" + }, + "NetworkManager": { + "epoch": "1", + "version": "1.40.0", + "release": "1.el9", + "installdate": "1670812357", + "arch": "x86_64" + }, + "kernel-core": { + "epoch": "0", + "version": "5.14.0", + "release": "162.6.1.el9_1", + "installdate": "1670812367", + "arch": "x86_64" + }, + "ima-evm-utils": { + "epoch": "0", + "version": "1.4", + "release": "4.el9", + "installdate": "1670812367", + "arch": "x86_64" + }, + "kernel-modules": { + "epoch": "0", + "version": "5.14.0", + "release": "162.6.1.el9_1", + "installdate": "1670812372", + "arch": "x86_64" + }, + "dracut-squash": { + "epoch": "0", + "version": "057", + "release": "13.git20220816.el9", + "installdate": "1670812401", + "arch": "x86_64" + }, + "libfido2": { + "epoch": "0", + "version": "1.6.0", + "release": "7.el9", + "installdate": "1670812401", + "arch": "x86_64" + }, + "os-prober": { + "epoch": "0", + "version": "1.77", + "release": "9.el9", + "installdate": "1670812401", + "arch": "x86_64" + }, + "curl": { + "epoch": "0", + "version": "7.76.1", + "release": "19.el9", + "installdate": "1670812401", + "arch": "x86_64" + }, + "policycoreutils": { + "epoch": "0", + "version": "3.4", + "release": "4.el9", + "installdate": "1670812402", + "arch": "x86_64" + }, + "selinux-policy": { + "epoch": "0", + "version": "34.1.43", + "release": "1.el9", + "installdate": "1670812402", + "arch": "noarch" + }, + "selinux-policy-targeted": { + "epoch": "0", + "version": "34.1.43", + "release": "1.el9", + "installdate": "1670812406", + "arch": "noarch" + }, + "grub2-tools": { + "epoch": "1", + "version": "2.06", + "release": "46.el9.alma", + "installdate": "1670812407", + "arch": "x86_64" + }, + "grubby": { + "epoch": "0", + "version": "8.40", + "release": "61.el9", + "installdate": "1670812407", + "arch": "x86_64" + }, + "libmodulemd": { + "epoch": "0", + "version": "2.13.0", + "release": "2.el9", + "installdate": "1670812407", + "arch": "x86_64" + }, + "libsolv": { + "epoch": "0", + "version": "0.7.22", + "release": "1.el9", + "installdate": "1670812407", + "arch": "x86_64" + }, + "rpcbind": { + "epoch": "0", + "version": "1.2.6", + "release": "5.el9", + "installdate": "1670812408", + "arch": "x86_64" + }, + "python3-policycoreutils": { + "epoch": "0", + "version": "3.4", + "release": "4.el9", + "installdate": "1670812409", + "arch": "noarch" + }, + "policycoreutils-python-utils": { + "epoch": "0", + "version": "3.4", + "release": "4.el9", + "installdate": "1670812409", + "arch": "noarch" + }, + "libpath_utils": { + "epoch": "0", + "version": "0.2.1", + "release": "53.el9", + "installdate": "1670812409", + "arch": "x86_64" + }, + "libini_config": { + "epoch": "0", + "version": "1.3.1", + "release": "53.el9", + "installdate": "1670812410", + "arch": "x86_64" + }, + "gssproxy": { + "epoch": "0", + "version": "0.8.4", + "release": "4.el9", + "installdate": "1670812410", + "arch": "x86_64" + }, + "libpipeline": { + "epoch": "0", + "version": "1.5.3", + "release": "4.el9", + "installdate": "1670812410", + "arch": "x86_64" + }, + "lmdb-libs": { + "epoch": "0", + "version": "0.9.29", + "release": "3.el9", + "installdate": "1670812410", + "arch": "x86_64" + }, + "libldb": { + "epoch": "0", + "version": "2.5.2", + "release": "1.el9", + "installdate": "1670812410", + "arch": "x86_64" + }, + "npth": { + "epoch": "0", + "version": "1.6", + "release": "8.el9", + "installdate": "1670812413", + "arch": "x86_64" + }, + "gnupg2": { + "epoch": "0", + "version": "2.3.3", + "release": "2.el9_0", + "installdate": "1670812414", + "arch": "x86_64" + }, + "gpgme": { + "epoch": "0", + "version": "1.15.1", + "release": "6.el9", + "installdate": "1670812414", + "arch": "x86_64" + }, + "librepo": { + "epoch": "0", + "version": "1.14.2", + "release": "3.el9", + "installdate": "1670812414", + "arch": "x86_64" + }, + "libdnf": { + "epoch": "0", + "version": "0.67.0", + "release": "3.el9.alma", + "installdate": "1670812414", + "arch": "x86_64" + }, + "python3-libdnf": { + "epoch": "0", + "version": "0.67.0", + "release": "3.el9.alma", + "installdate": "1670812415", + "arch": "x86_64" + }, + "python3-hawkey": { + "epoch": "0", + "version": "0.67.0", + "release": "3.el9.alma", + "installdate": "1670812415", + "arch": "x86_64" + }, + "python3-gpg": { + "epoch": "0", + "version": "1.15.1", + "release": "6.el9", + "installdate": "1670812415", + "arch": "x86_64" + }, + "python3-dnf": { + "epoch": "0", + "version": "4.12.0", + "release": "4.el9.alma", + "installdate": "1670812417", + "arch": "noarch" + }, + "dnf": { + "epoch": "0", + "version": "4.12.0", + "release": "4.el9.alma", + "installdate": "1670812417", + "arch": "noarch" + }, + "python3-dnf-plugins-core": { + "epoch": "0", + "version": "4.1.0", + "release": "3.el9", + "installdate": "1670812418", + "arch": "noarch" + }, + "dnf-plugins-core": { + "epoch": "0", + "version": "4.1.0", + "release": "3.el9", + "installdate": "1670812418", + "arch": "noarch" + }, + "numactl-libs": { + "epoch": "0", + "version": "2.0.14", + "release": "8.el9", + "installdate": "1670812418", + "arch": "x86_64" + }, + "pciutils-libs": { + "epoch": "0", + "version": "3.7.0", + "release": "5.el9", + "installdate": "1670812418", + "arch": "x86_64" + }, + "psmisc": { + "epoch": "0", + "version": "23.4", + "release": "3.el9", + "installdate": "1670812418", + "arch": "x86_64" + }, + "iproute": { + "epoch": "0", + "version": "5.18.0", + "release": "1.el9", + "installdate": "1670812418", + "arch": "x86_64" + }, + "dracut-network": { + "epoch": "0", + "version": "057", + "release": "13.git20220816.el9", + "installdate": "1670812419", + "arch": "x86_64" + }, + "sg3_utils-libs": { + "epoch": "0", + "version": "1.47", + "release": "9.el9", + "installdate": "1670812419", + "arch": "x86_64" + }, + "slang": { + "epoch": "0", + "version": "2.3.2", + "release": "11.el9", + "installdate": "1670812419", + "arch": "x86_64" + }, + "newt": { + "epoch": "0", + "version": "0.52.21", + "release": "11.el9", + "installdate": "1670812420", + "arch": "x86_64" + }, + "userspace-rcu": { + "epoch": "0", + "version": "0.12.1", + "release": "6.el9", + "installdate": "1670812420", + "arch": "x86_64" + }, + "libestr": { + "epoch": "0", + "version": "0.1.11", + "release": "4.el9", + "installdate": "1670812420", + "arch": "x86_64" + }, + "libfastjson": { + "epoch": "0", + "version": "0.99.9", + "release": "3.el9", + "installdate": "1670812420", + "arch": "x86_64" + }, + "rsyslog-logrotate": { + "epoch": "0", + "version": "8.2102.0", + "release": "105.el9", + "installdate": "1670812420", + "arch": "x86_64" + }, + "rsyslog": { + "epoch": "0", + "version": "8.2102.0", + "release": "105.el9", + "installdate": "1670812420", + "arch": "x86_64" + }, + "m4": { + "epoch": "0", + "version": "1.4.19", + "release": "1.el9", + "installdate": "1670812420", + "arch": "x86_64" + }, + "policycoreutils-devel": { + "epoch": "0", + "version": "3.4", + "release": "4.el9", + "installdate": "1670812420", + "arch": "x86_64" + }, + "selinux-policy-devel": { + "epoch": "0", + "version": "34.1.43", + "release": "1.el9", + "installdate": "1670812423", + "arch": "noarch" + }, + "xfsprogs": { + "epoch": "0", + "version": "5.14.2", + "release": "1.el9", + "installdate": "1670812460", + "arch": "x86_64" + }, + "NetworkManager-tui": { + "epoch": "1", + "version": "1.40.0", + "release": "1.el9", + "installdate": "1670812460", + "arch": "x86_64" + }, + "sg3_utils": { + "epoch": "0", + "version": "1.47", + "release": "9.el9", + "installdate": "1670812460", + "arch": "x86_64" + }, + "kexec-tools": { + "epoch": "0", + "version": "2.0.24", + "release": "5.el9", + "installdate": "1670812460", + "arch": "x86_64" + }, + "iproute-tc": { + "epoch": "0", + "version": "5.18.0", + "release": "1.el9", + "installdate": "1670812461", + "arch": "x86_64" + }, + "kernel-tools": { + "epoch": "0", + "version": "5.14.0", + "release": "162.6.1.el9_1", + "installdate": "1670812461", + "arch": "x86_64" + }, + "irqbalance": { + "epoch": "2", + "version": "1.9.0", + "release": "3.el9", + "installdate": "1670812461", + "arch": "x86_64" + }, + "yum-utils": { + "epoch": "0", + "version": "4.1.0", + "release": "3.el9", + "installdate": "1670812461", + "arch": "noarch" + }, + "yum": { + "epoch": "0", + "version": "4.12.0", + "release": "4.el9.alma", + "installdate": "1670812461", + "arch": "noarch" + }, + "man-db": { + "epoch": "0", + "version": "2.9.3", + "release": "6.el9", + "installdate": "1670812461", + "arch": "x86_64" + }, + "nfs-utils": { + "epoch": "1", + "version": "2.5.4", + "release": "15.el9", + "installdate": "1670812462", + "arch": "x86_64" + }, + "crypto-policies-scripts": { + "epoch": "0", + "version": "20220815", + "release": "1.git0fbe86f.el9", + "installdate": "1670812462", + "arch": "noarch" + }, + "grub2-pc": { + "epoch": "1", + "version": "2.06", + "release": "46.el9.alma", + "installdate": "1670812462", + "arch": "x86_64" + }, + "openssh-clients": { + "epoch": "0", + "version": "8.7p1", + "release": "24.el9_1", + "installdate": "1670812462", + "arch": "x86_64" + }, + "kernel": { + "epoch": "0", + "version": "5.14.0", + "release": "162.6.1.el9_1", + "installdate": "1670812463", + "arch": "x86_64" + }, + "NetworkManager-team": { + "epoch": "1", + "version": "1.40.0", + "release": "1.el9", + "installdate": "1670812463", + "arch": "x86_64" + }, + "dracut-config-rescue": { + "epoch": "0", + "version": "057", + "release": "13.git20220816.el9", + "installdate": "1670812463", + "arch": "x86_64" + }, + "firewalld": { + "epoch": "0", + "version": "1.1.1", + "release": "3.el9", + "installdate": "1670812464", + "arch": "noarch" + }, + "passwd": { + "epoch": "0", + "version": "0.80", + "release": "12.el9", + "installdate": "1670812464", + "arch": "x86_64" + }, + "audit": { + "epoch": "0", + "version": "3.0.7", + "release": "103.el9", + "installdate": "1670812464", + "arch": "x86_64" + }, + "authselect": { + "epoch": "0", + "version": "1.2.5", + "release": "1.el9", + "installdate": "1670812464", + "arch": "x86_64" + }, + "chrony": { + "epoch": "0", + "version": "4.2", + "release": "1.el9", + "installdate": "1670812464", + "arch": "x86_64" + }, + "net-tools": { + "epoch": "0", + "version": "2.0", + "release": "0.62.20160912git.el9", + "installdate": "1670812465", + "arch": "x86_64" + }, + "openssh-server": { + "epoch": "0", + "version": "8.7p1", + "release": "24.el9_1", + "installdate": "1670812465", + "arch": "x86_64" + }, + "parted": { + "epoch": "0", + "version": "3.5", + "release": "2.el9", + "installdate": "1670812465", + "arch": "x86_64" + }, + "sudo": { + "epoch": "0", + "version": "1.9.5p2", + "release": "7.el9", + "installdate": "1670812466", + "arch": "x86_64" + }, + "langpacks-en": { + "epoch": "0", + "version": "3.0", + "release": "16.el9", + "installdate": "1670812466", + "arch": "noarch" + }, + "e2fsprogs": { + "epoch": "0", + "version": "1.46.5", + "release": "3.el9", + "installdate": "1670812466", + "arch": "x86_64" + }, + "initscripts-rename-device": { + "epoch": "0", + "version": "10.11.5", + "release": "1.el9", + "installdate": "1670812466", + "arch": "x86_64" + }, + "prefixdevname": { + "epoch": "0", + "version": "0.1.0", + "release": "8.el9", + "installdate": "1670812466", + "arch": "x86_64" + }, + "rsync": { + "epoch": "0", + "version": "3.2.3", + "release": "18.el9", + "installdate": "1670812467", + "arch": "x86_64" + }, + "wget": { + "epoch": "0", + "version": "1.21.1", + "release": "7.el9", + "installdate": "1670812467", + "arch": "x86_64" + }, + "tar": { + "epoch": "2", + "version": "1.34", + "release": "5.el9", + "installdate": "1670812467", + "arch": "x86_64" + }, + "vim-minimal": { + "epoch": "2", + "version": "8.2.2637", + "release": "16.el9_0.3", + "installdate": "1670812467", + "arch": "x86_64" + }, + "lshw": { + "epoch": "0", + "version": "B.02.19.2", + "release": "9.el9", + "installdate": "1670812467", + "arch": "x86_64" + }, + "bzip2": { + "epoch": "0", + "version": "1.0.8", + "release": "8.el9", + "installdate": "1670812467", + "arch": "x86_64" + }, + "libsysfs": { + "epoch": "0", + "version": "2.1.1", + "release": "10.el9", + "installdate": "1670812467", + "arch": "x86_64" + }, + "lsscsi": { + "epoch": "0", + "version": "0.32", + "release": "6.el9", + "installdate": "1670812468", + "arch": "x86_64" + }, + "ncurses": { + "epoch": "0", + "version": "6.2", + "release": "8.20210508.el9", + "installdate": "1670812468", + "arch": "x86_64" + }, + "rootfiles": { + "epoch": "0", + "version": "8.1", + "release": "31.el9", + "installdate": "1670812468", + "arch": "noarch" + }, + "gpg-pubkey": { + "epoch": "0", + "version": "b86b3716", + "release": "61e69f29", + "installdate": "1670812864", + "arch": "(none)" + }, + "krb5-libs": { + "epoch": "0", + "version": "1.19.1", + "release": "24.el9_1", + "installdate": "1670812868", + "arch": "x86_64" + }, + "libsss_idmap": { + "epoch": "0", + "version": "2.7.3", + "release": "4.el9_1.1", + "installdate": "1670812868", + "arch": "x86_64" + }, + "rpm-libs": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.el9_1", + "installdate": "1670812868", + "arch": "x86_64" + }, + "rpm": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.el9_1", + "installdate": "1670812868", + "arch": "x86_64" + }, + "rpm-build-libs": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.el9_1", + "installdate": "1670812868", + "arch": "x86_64" + }, + "rpm-sign-libs": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.el9_1", + "installdate": "1670812868", + "arch": "x86_64" + }, + "tzdata": { + "epoch": "0", + "version": "2022g", + "release": "1.el9_1", + "installdate": "1670812871", + "arch": "noarch" + }, + "python3-libs": { + "epoch": "0", + "version": "3.9.14", + "release": "1.el9_1.1", + "installdate": "1670812875", + "arch": "x86_64" + }, + "python3": { + "epoch": "0", + "version": "3.9.14", + "release": "1.el9_1.1", + "installdate": "1670812875", + "arch": "x86_64" + }, + "python-unversioned-command": { + "epoch": "0", + "version": "3.9.14", + "release": "1.el9_1.1", + "installdate": "1670812875", + "arch": "noarch" + }, + "sssd-nfs-idmap": { + "epoch": "0", + "version": "2.7.3", + "release": "4.el9_1.1", + "installdate": "1670812875", + "arch": "x86_64" + }, + "libsss_sudo": { + "epoch": "0", + "version": "2.7.3", + "release": "4.el9_1.1", + "installdate": "1670812875", + "arch": "x86_64" + }, + "libsss_nss_idmap": { + "epoch": "0", + "version": "2.7.3", + "release": "4.el9_1.1", + "installdate": "1670812875", + "arch": "x86_64" + }, + "sssd-client": { + "epoch": "0", + "version": "2.7.3", + "release": "4.el9_1.1", + "installdate": "1670812875", + "arch": "x86_64" + }, + "libsss_certmap": { + "epoch": "0", + "version": "2.7.3", + "release": "4.el9_1.1", + "installdate": "1670812876", + "arch": "x86_64" + }, + "sssd-common": { + "epoch": "0", + "version": "2.7.3", + "release": "4.el9_1.1", + "installdate": "1670812876", + "arch": "x86_64" + }, + "sssd-kcm": { + "epoch": "0", + "version": "2.7.3", + "release": "4.el9_1.1", + "installdate": "1670812876", + "arch": "x86_64" + }, + "python3-rpm": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.el9_1", + "installdate": "1670812876", + "arch": "x86_64" + }, + "rpm-plugin-systemd-inhibit": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.el9_1", + "installdate": "1670812876", + "arch": "x86_64" + }, + "rpm-plugin-audit": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.el9_1", + "installdate": "1670812876", + "arch": "x86_64" + }, + "rpm-plugin-selinux": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.el9_1", + "installdate": "1670812876", + "arch": "x86_64" + }, + "kpartx": { + "epoch": "0", + "version": "0.8.7", + "release": "12.el9_1.1", + "installdate": "1670812876", + "arch": "x86_64" + }, + "chef": { + "epoch": "0", + "version": "18.1.0", + "release": "1.el9", + "installdate": "1675118377", + "arch": "x86_64" + } + }, + "platform": "almalinux", + "platform_family": "rhel", + "platform_version": "9.1", + "root_group": "root", + "shells": [ + "/bin/sh", + "/bin/bash", + "/usr/bin/sh", + "/usr/bin/bash" + ], + "time": { + "timezone": "GMT" + }, + "uptime": "30 days 15 hours 07 minutes 30 seconds", + "uptime_seconds": 2646450, + "virtualization": { + "systems": { + } + } +} diff --git a/lib/fauxhai/platforms/amazon/2023.json b/lib/fauxhai/platforms/amazon/2023.json new file mode 100644 index 00000000..9ef0fa10 --- /dev/null +++ b/lib/fauxhai/platforms/amazon/2023.json @@ -0,0 +1,5179 @@ +{ + "block_device": { + "loop0": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop1": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop2": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop3": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop4": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop5": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop6": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop7": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "nvme0n1": { + "size": "16777216", + "removable": "0", + "model": "Amazon Elastic Block Store", + "state": "live", + "firmware_rev": "1.0", + "rotational": "0", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "nvme1n1": { + "size": "16777216", + "removable": "0", + "model": "Amazon Elastic Block Store", + "state": "live", + "firmware_rev": "1.0", + "rotational": "0", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "nvme2n1": { + "size": "16777216", + "removable": "0", + "model": "Amazon Elastic Block Store", + "state": "live", + "firmware_rev": "1.0", + "rotational": "0", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "nvme3n1": { + "size": "16777216", + "removable": "0", + "model": "Amazon Elastic Block Store", + "state": "live", + "firmware_rev": "1.0", + "rotational": "0", + "physical_block_size": "512", + "logical_block_size": "512" + } + }, + "chef_packages": { + "chef": { + "version": "18.3.0", + "chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.3.0/lib", + "chef_effortless": null + }, + "ohai": { + "version": "18.1.4", + "ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.1.4/lib/ohai" + } + }, + "command": { + "ps": "ps -ef" + }, + "counters": { + "network": { + "interfaces": { + "lo": { + "tx": { + "queuelen": "1", + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "carrier": 0, + "collisions": 0 + }, + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0 + } + }, + "eth0": { + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "frame": 0, + "compressed": 0, + "multicast": 0 + }, + "tx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "collisions": 0, + "carrier": 0, + "compressed": 0 + } + } + } + } + }, + "cpu": { + "real": 1, + "total": 1, + "cores": 1 + }, + "current_user": "fauxhai", + "dmi": { + "dmidecode_version": "3.5", + "smbios_version": "2.7", + "structures": { + "count": "13", + "size": "568" + }, + "table_location": "0x7885A000", + "bios": { + "all_records": [ + { + "record_id": "0x0000", + "size": "0", + "application_identifier": "BIOS Information", + "Vendor": "Amazon EC2", + "Version": "1.0", + "Release Date": "10/16/2017", + "Address": "0xF0000", + "Runtime Size": "64 kB", + "ROM Size": "64 kB", + "Characteristics": { + "System is a virtual machine": null + }, + "BIOS Revision": "1.0" + } + ], + "vendor": "Amazon EC2", + "version": "1.0", + "release_date": "10/16/2017", + "address": "0xF0000", + "runtime_size": "64 kB", + "rom_size": "64 kB", + "bios_revision": "1.0" + }, + "system": { + "all_records": [ + { + "record_id": "0x0001", + "size": "1", + "application_identifier": "System Information", + "Manufacturer": "Amazon EC2", + "Product Name": "t3.small", + "Version": "Not Specified", + "Serial Number": "ec2e0347-8ddb-e6ea-37d7-c5fa70a6e55a", + "UUID": "ec2e0347-8ddb-e6ea-37d7-c5fa70a6e55a", + "Wake-up Type": "Power Switch", + "SKU Number": "Not Specified", + "Family": "Not Specified" + } + ], + "manufacturer": "Amazon EC2", + "product_name": "t3.small", + "version": "Not Specified", + "serial_number": "ec2e0347-8ddb-e6ea-37d7-c5fa70a6e55a", + "uuid": "ec2e0347-8ddb-e6ea-37d7-c5fa70a6e55a", + "wake_up_type": "Power Switch", + "sku_number": "Not Specified", + "family": "Not Specified" + }, + "base_board": { + "all_records": [ + { + "record_id": "0x0002", + "size": "2", + "application_identifier": "Base Board Information", + "Manufacturer": "Amazon EC2", + "Product Name": "Not Specified", + "Version": "Not Specified", + "Serial Number": "Not Specified", + "Asset Tag": "i-01f89585b0abba620", + "Features": "None", + "Location In Chassis": "Not Specified", + "Chassis Handle": "0x0003", + "Type": "Other", + "Contained Object Handles": "0" + } + ], + "manufacturer": "Amazon EC2", + "product_name": "Not Specified", + "version": "Not Specified", + "serial_number": "Not Specified", + "asset_tag": "i-01f89585b0abba620", + "features": "None", + "location_in_chassis": "Not Specified", + "chassis_handle": "0x0003", + "type": "Other", + "contained_object_handles": "0" + }, + "chassis": { + "all_records": [ + { + "record_id": "0x0003", + "size": "3", + "application_identifier": "Chassis Information", + "Manufacturer": "Amazon EC2", + "Type": "Other", + "Lock": "Not Present", + "Version": "Not Specified", + "Serial Number": "Not Specified", + "Asset Tag": "Amazon EC2", + "Boot-up State": "Safe", + "Power Supply State": "Safe", + "Thermal State": "Safe", + "Security Status": "None", + "OEM Information": "0x00000000", + "Height": "Unspecified", + "Number Of Power Cords": "1", + "Contained Elements": "0" + } + ], + "manufacturer": "Amazon EC2", + "type": "Other", + "lock": "Not Present", + "version": "Not Specified", + "serial_number": "Not Specified", + "asset_tag": "Amazon EC2", + "boot_up_state": "Safe", + "power_supply_state": "Safe", + "thermal_state": "Safe", + "security_status": "None", + "oem_information": "0x00000000", + "height": "Unspecified", + "number_of_power_cords": "1", + "contained_elements": "0" + }, + "processor": { + "all_records": [ + { + "record_id": "0x0004", + "size": "4", + "application_identifier": "Processor Information", + "Socket Designation": "CPU 0", + "Type": "Central Processor", + "Family": "Xeon", + "Manufacturer": "Intel(R) Corporation", + "ID": "57 06 05 00 FF FB EB BF", + "Signature": "Type 0, Family 6, Model 85, Stepping 7", + "Flags": { + "PBE (Pending break enabled)": null + }, + "Version": "Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz", + "Voltage": "1.6 V", + "External Clock": "100 MHz", + "Max Speed": "3500 MHz", + "Current Speed": "2500 MHz", + "Status": "Populated, Enabled", + "Upgrade": "Socket LGA3647-1", + "L1 Cache Handle": "0x0005", + "L2 Cache Handle": "0x0006", + "L3 Cache Handle": "0x0007", + "Serial Number": "Not Specified", + "Asset Tag": "Not Specified", + "Part Number": "Not Specified", + "Core Count": "1", + "Core Enabled": "1", + "Thread Count": "2", + "Characteristics": { + "Execute Protection": null + } + } + ], + "socket_designation": "CPU 0", + "type": "Central Processor", + "family": "Xeon", + "manufacturer": "Intel(R) Corporation", + "id": "57 06 05 00 FF FB EB BF", + "signature": "Type 0, Family 6, Model 85, Stepping 7", + "version": "Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz", + "voltage": "1.6 V", + "external_clock": "100 MHz", + "max_speed": "3500 MHz", + "current_speed": "2500 MHz", + "status": "Populated, Enabled", + "upgrade": "Socket LGA3647-1", + "l1_cache_handle": "0x0005", + "l2_cache_handle": "0x0006", + "l3_cache_handle": "0x0007", + "serial_number": "Not Specified", + "asset_tag": "Not Specified", + "part_number": "Not Specified", + "core_count": "1", + "core_enabled": "1", + "thread_count": "2" + } + }, + "domain": "local", + "filesystem": { + "by_device": { + "devtmpfs": { + "kb_size": "4096", + "kb_used": "0", + "kb_available": "4096", + "percent_used": "0%", + "total_inodes": "240766", + "inodes_used": "374", + "inodes_available": "240392", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=4096k", + "nr_inodes=240766", + "mode=755" + ], + "mounts": [ + "/dev" + ] + }, + "tmpfs": { + "kb_size": "194708", + "kb_used": "0", + "kb_available": "194708", + "percent_used": "0%", + "total_inodes": "48677", + "inodes_used": "14", + "inodes_available": "48663", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=194708k", + "nr_inodes=48677", + "mode=700", + "uid=1000", + "gid=1000" + ], + "mounts": [ + "/dev/shm", + "/run", + "/tmp", + "/run/user/1000" + ] + }, + "/dev/nvme0n1p1": { + "kb_size": "8310764", + "kb_used": "1782916", + "kb_available": "6527848", + "percent_used": "22%", + "total_inodes": "4188096", + "inodes_used": "58527", + "inodes_available": "4129569", + "inodes_percent_used": "2%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "noatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "sunit=1024", + "swidth=1024", + "noquota" + ], + "uuid": "66eb3733-37f3-4398-9990-e97c15b01e5b", + "label": "/", + "mounts": [ + "/" + ] + }, + "/dev/nvme0n1p128": { + "kb_size": "10202", + "kb_used": "1306", + "kb_available": "8896", + "percent_used": "13%", + "fs_type": "vfat", + "mount_options": [ + "rw", + "noatime", + "fmask=0077", + "dmask=0077", + "codepage=437", + "iocharset=ascii", + "shortname=winnt", + "errors=remount-ro", + "x-systemd.automount" + ], + "uuid": "A208-E305", + "mounts": [ + "/boot/efi" + ] + }, + "proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/proc" + ] + }, + "sysfs": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys" + ] + }, + "securityfs": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/security" + ] + }, + "devpts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "mounts": [ + "/dev/pts" + ] + }, + "cgroup2": { + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "nsdelegate", + "memory_recursiveprot" + ], + "mounts": [ + "/sys/fs/cgroup" + ] + }, + "pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/fs/pstore" + ] + }, + "efivarfs": { + "fs_type": "efivarfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/firmware/efi/efivars" + ] + }, + "bpf": { + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "mounts": [ + "/sys/fs/bpf" + ] + }, + "selinuxfs": { + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/fs/selinux" + ] + }, + "systemd-1": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=38", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=14383" + ], + "mounts": [ + "/proc/sys/fs/binfmt_misc", + "/boot/efi" + ] + }, + "hugetlbfs": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ], + "mounts": [ + "/dev/hugepages" + ] + }, + "mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/dev/mqueue" + ] + }, + "tracefs": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/kernel/tracing" + ] + }, + "debugfs": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/kernel/debug" + ] + }, + "ramfs": { + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "mode=700" + ], + "mounts": [ + "/run/credentials/systemd-sysctl.service", + "/run/credentials/systemd-tmpfiles-setup-dev.service", + "/run/credentials/systemd-tmpfiles-setup.service" + ] + }, + "fusectl": { + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/fs/fuse/connections" + ] + }, + "configfs": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/config" + ] + }, + "sunrpc": { + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ], + "mounts": [ + "/var/lib/nfs/rpc_pipefs" + ] + }, + "/dev/nvme0n1": { + "mounts": [] + }, + "/dev/nvme0n1p127": { + "mounts": [] + }, + "/dev/nvme1n1": { + "mounts": [] + }, + "/dev/nvme2n1": { + "mounts": [] + }, + "/dev/nvme3n1": { + "mounts": [] + } + }, + "by_mountpoint": { + "/dev": { + "kb_size": "4096", + "kb_used": "0", + "kb_available": "4096", + "percent_used": "0%", + "total_inodes": "240766", + "inodes_used": "374", + "inodes_available": "240392", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=4096k", + "nr_inodes=240766", + "mode=755" + ], + "devices": [ + "devtmpfs" + ] + }, + "/dev/shm": { + "kb_size": "973548", + "kb_used": "0", + "kb_available": "973548", + "percent_used": "0%", + "total_inodes": "243387", + "inodes_used": "1", + "inodes_available": "243386", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel" + ], + "devices": [ + "tmpfs" + ] + }, + "/run": { + "kb_size": "389420", + "kb_used": "488", + "kb_available": "388932", + "percent_used": "1%", + "total_inodes": "819200", + "inodes_used": "618", + "inodes_available": "818582", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "size=389420k", + "nr_inodes=819200", + "mode=755" + ], + "devices": [ + "tmpfs" + ] + }, + "/": { + "kb_size": "8310764", + "kb_used": "1782916", + "kb_available": "6527848", + "percent_used": "22%", + "total_inodes": "4188096", + "inodes_used": "58527", + "inodes_available": "4129569", + "inodes_percent_used": "2%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "noatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "sunit=1024", + "swidth=1024", + "noquota" + ], + "uuid": "66eb3733-37f3-4398-9990-e97c15b01e5b", + "label": "/", + "devices": [ + "/dev/nvme0n1p1" + ] + }, + "/tmp": { + "kb_size": "973548", + "kb_used": "0", + "kb_available": "973548", + "percent_used": "0%", + "total_inodes": "1048576", + "inodes_used": "17", + "inodes_available": "1048559", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "nr_inodes=1048576" + ], + "devices": [ + "tmpfs" + ] + }, + "/boot/efi": { + "kb_size": "10202", + "kb_used": "1306", + "kb_available": "8896", + "percent_used": "13%", + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=38", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=14383" + ], + "uuid": "A208-E305", + "devices": [ + "/dev/nvme0n1p128", + "systemd-1" + ] + }, + "/run/user/1000": { + "kb_size": "194708", + "kb_used": "0", + "kb_available": "194708", + "percent_used": "0%", + "total_inodes": "48677", + "inodes_used": "14", + "inodes_available": "48663", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=194708k", + "nr_inodes=48677", + "mode=700", + "uid=1000", + "gid=1000" + ], + "devices": [ + "tmpfs" + ] + }, + "/proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "proc" + ] + }, + "/sys": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "sysfs" + ] + }, + "/sys/kernel/security": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "securityfs" + ] + }, + "/dev/pts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "devices": [ + "devpts" + ] + }, + "/sys/fs/cgroup": { + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "nsdelegate", + "memory_recursiveprot" + ], + "devices": [ + "cgroup2" + ] + }, + "/sys/fs/pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "pstore" + ] + }, + "/sys/firmware/efi/efivars": { + "fs_type": "efivarfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "efivarfs" + ] + }, + "/sys/fs/bpf": { + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "devices": [ + "bpf" + ] + }, + "/sys/fs/selinux": { + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime" + ], + "devices": [ + "selinuxfs" + ] + }, + "/proc/sys/fs/binfmt_misc": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=29", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=1928" + ], + "devices": [ + "systemd-1" + ] + }, + "/dev/hugepages": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ], + "devices": [ + "hugetlbfs" + ] + }, + "/dev/mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "mqueue" + ] + }, + "/sys/kernel/tracing": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "tracefs" + ] + }, + "/sys/kernel/debug": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "debugfs" + ] + }, + "/run/credentials/systemd-sysctl.service": { + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "mode=700" + ], + "devices": [ + "ramfs" + ] + }, + "/sys/fs/fuse/connections": { + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "fusectl" + ] + }, + "/sys/kernel/config": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "configfs" + ] + }, + "/run/credentials/systemd-tmpfiles-setup-dev.service": { + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "mode=700" + ], + "devices": [ + "ramfs" + ] + }, + "/run/credentials/systemd-tmpfiles-setup.service": { + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "mode=700" + ], + "devices": [ + "ramfs" + ] + }, + "/var/lib/nfs/rpc_pipefs": { + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ], + "devices": [ + "sunrpc" + ] + } + }, + "by_pair": { + "devtmpfs,/dev": { + "device": "devtmpfs", + "kb_size": "4096", + "kb_used": "0", + "kb_available": "4096", + "percent_used": "0%", + "mount": "/dev", + "total_inodes": "240766", + "inodes_used": "374", + "inodes_available": "240392", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=4096k", + "nr_inodes=240766", + "mode=755" + ] + }, + "tmpfs,/dev/shm": { + "device": "tmpfs", + "kb_size": "973548", + "kb_used": "0", + "kb_available": "973548", + "percent_used": "0%", + "mount": "/dev/shm", + "total_inodes": "243387", + "inodes_used": "1", + "inodes_available": "243386", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel" + ] + }, + "tmpfs,/run": { + "device": "tmpfs", + "kb_size": "389420", + "kb_used": "488", + "kb_available": "388932", + "percent_used": "1%", + "mount": "/run", + "total_inodes": "819200", + "inodes_used": "618", + "inodes_available": "818582", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "size=389420k", + "nr_inodes=819200", + "mode=755" + ] + }, + "/dev/nvme0n1p1,/": { + "device": "/dev/nvme0n1p1", + "kb_size": "8310764", + "kb_used": "1782916", + "kb_available": "6527848", + "percent_used": "22%", + "mount": "/", + "total_inodes": "4188096", + "inodes_used": "58527", + "inodes_available": "4129569", + "inodes_percent_used": "2%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "noatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "sunit=1024", + "swidth=1024", + "noquota" + ], + "uuid": "66eb3733-37f3-4398-9990-e97c15b01e5b", + "label": "/" + }, + "tmpfs,/tmp": { + "device": "tmpfs", + "kb_size": "973548", + "kb_used": "0", + "kb_available": "973548", + "percent_used": "0%", + "mount": "/tmp", + "total_inodes": "1048576", + "inodes_used": "17", + "inodes_available": "1048559", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "nr_inodes=1048576" + ] + }, + "/dev/nvme0n1p128,/boot/efi": { + "device": "/dev/nvme0n1p128", + "kb_size": "10202", + "kb_used": "1306", + "kb_available": "8896", + "percent_used": "13%", + "mount": "/boot/efi", + "fs_type": "vfat", + "mount_options": [ + "rw", + "noatime", + "fmask=0077", + "dmask=0077", + "codepage=437", + "iocharset=ascii", + "shortname=winnt", + "errors=remount-ro", + "x-systemd.automount" + ], + "uuid": "A208-E305" + }, + "tmpfs,/run/user/1000": { + "device": "tmpfs", + "kb_size": "194708", + "kb_used": "0", + "kb_available": "194708", + "percent_used": "0%", + "mount": "/run/user/1000", + "total_inodes": "48677", + "inodes_used": "14", + "inodes_available": "48663", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=194708k", + "nr_inodes=48677", + "mode=700", + "uid=1000", + "gid=1000" + ] + }, + "proc,/proc": { + "device": "proc", + "mount": "/proc", + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "sysfs,/sys": { + "device": "sysfs", + "mount": "/sys", + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "securityfs,/sys/kernel/security": { + "device": "securityfs", + "mount": "/sys/kernel/security", + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "devpts,/dev/pts": { + "device": "devpts", + "mount": "/dev/pts", + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ] + }, + "cgroup2,/sys/fs/cgroup": { + "device": "cgroup2", + "mount": "/sys/fs/cgroup", + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "nsdelegate", + "memory_recursiveprot" + ] + }, + "pstore,/sys/fs/pstore": { + "device": "pstore", + "mount": "/sys/fs/pstore", + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "efivarfs,/sys/firmware/efi/efivars": { + "device": "efivarfs", + "mount": "/sys/firmware/efi/efivars", + "fs_type": "efivarfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "bpf,/sys/fs/bpf": { + "device": "bpf", + "mount": "/sys/fs/bpf", + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ] + }, + "selinuxfs,/sys/fs/selinux": { + "device": "selinuxfs", + "mount": "/sys/fs/selinux", + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime" + ] + }, + "systemd-1,/proc/sys/fs/binfmt_misc": { + "device": "systemd-1", + "mount": "/proc/sys/fs/binfmt_misc", + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=29", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=1928" + ] + }, + "hugetlbfs,/dev/hugepages": { + "device": "hugetlbfs", + "mount": "/dev/hugepages", + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ] + }, + "mqueue,/dev/mqueue": { + "device": "mqueue", + "mount": "/dev/mqueue", + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "tracefs,/sys/kernel/tracing": { + "device": "tracefs", + "mount": "/sys/kernel/tracing", + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "debugfs,/sys/kernel/debug": { + "device": "debugfs", + "mount": "/sys/kernel/debug", + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "ramfs,/run/credentials/systemd-sysctl.service": { + "device": "ramfs", + "mount": "/run/credentials/systemd-sysctl.service", + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "mode=700" + ] + }, + "fusectl,/sys/fs/fuse/connections": { + "device": "fusectl", + "mount": "/sys/fs/fuse/connections", + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "configfs,/sys/kernel/config": { + "device": "configfs", + "mount": "/sys/kernel/config", + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "ramfs,/run/credentials/systemd-tmpfiles-setup-dev.service": { + "device": "ramfs", + "mount": "/run/credentials/systemd-tmpfiles-setup-dev.service", + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "mode=700" + ] + }, + "systemd-1,/boot/efi": { + "device": "systemd-1", + "mount": "/boot/efi", + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=38", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=14383" + ] + }, + "ramfs,/run/credentials/systemd-tmpfiles-setup.service": { + "device": "ramfs", + "mount": "/run/credentials/systemd-tmpfiles-setup.service", + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "mode=700" + ] + }, + "sunrpc,/var/lib/nfs/rpc_pipefs": { + "device": "sunrpc", + "mount": "/var/lib/nfs/rpc_pipefs", + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ] + }, + "/dev/nvme0n1,": { + "device": "/dev/nvme0n1" + }, + "/dev/nvme0n1p127,": { + "device": "/dev/nvme0n1p127" + }, + "/dev/nvme1n1,": { + "device": "/dev/nvme1n1" + }, + "/dev/nvme2n1,": { + "device": "/dev/nvme2n1" + }, + "/dev/nvme3n1,": { + "device": "/dev/nvme3n1" + } + } + }, + "fips": { + "kernel": { + "enabled": false + } + }, + "fqdn": "fauxhai.local", + "hostname": "Fauxhai", + "idle": "30 days 15 hours 07 minutes 30 seconds", + "idletime_seconds": 2646450, + "init_package": "systemd", + "ipaddress": "10.0.0.2", + "kernel": { + "name": "Linux", + "release": "6.1.61-85.141.amzn2023.x86_64", + "version": "#1 SMP PREEMPT_DYNAMIC Wed Nov 8 00:39:18 UTC 2023", + "machine": "x86_64", + "processor": "x86_64", + "os": "GNU/Linux", + "modules": { + "nls_ascii": { + "size": "16384", + "refcount": "1" + }, + "nls_cp437": { + "size": "20480", + "refcount": "1" + }, + "vfat": { + "size": "24576", + "refcount": "1" + }, + "fat": { + "size": "86016", + "refcount": "1" + }, + "ghash_clmulni_intel": { + "size": "16384", + "refcount": "0" + }, + "sunrpc": { + "size": "692224", + "refcount": "1" + }, + "aesni_intel": { + "size": "393216", + "refcount": "0" + }, + "crypto_simd": { + "size": "16384", + "refcount": "1" + }, + "i8042": { + "size": "45056", + "refcount": "0" + }, + "serio": { + "size": "28672", + "refcount": "3" + }, + "cryptd": { + "size": "28672", + "refcount": "2" + }, + "ena": { + "size": "163840", + "refcount": "0", + "version": "2.10.0g" + }, + "button": { + "size": "24576", + "refcount": "0" + }, + "sch_fq_codel": { + "size": "20480", + "refcount": "3" + }, + "dm_mod": { + "size": "188416", + "refcount": "0" + }, + "loop": { + "size": "32768", + "refcount": "0" + }, + "fuse": { + "size": "163840", + "refcount": "1" + }, + "dax": { + "size": "45056", + "refcount": "1" + }, + "configfs": { + "size": "57344", + "refcount": "1", + "version": "0.0.2" + }, + "dmi_sysfs": { + "size": "20480", + "refcount": "0" + }, + "crc32_pclmul": { + "size": "16384", + "refcount": "0" + }, + "crc32c_intel": { + "size": "24576", + "refcount": "0" + }, + "efivarfs": { + "size": "24576", + "refcount": "1" + } + } + }, + "keys": { + "ssh": { + "host_dsa_public": "ssh-dss AAAAB3NzaC1kc3MAAACBAJFo9BLAw4WKEs5hgipk5m423FzBsDXCZSMcC9ca/om/1VYzMqImixGe3uICDzNFUWxFoLJTQAOccyzo6MXZiQqwWJDLFi5qOSr6w2XcMyE+zd4wOyMoDiVM5fizmG8K3FzrqvGjwBcHcBdOQnavSijoj38DN25J9zhrid5BY4WlAAAAFQDxXrCyG52XCzn3FV4ej38wJBkomQAAAIBovGPJ4mP2P6BK8lHl0PPbktwQbWlpJ13oz6REJFDVcUi7vV26bX/BjQX+ohzZQzljdz1SpUbPc/8nuA4darYkVh91eBi307EN8IdxRHj2eBgp/ZG4yshIebG3WHrwJD/xUjjZ1MRfyDT1ermVi4LvjjPgWDxLZnPpMaR6S1nzgQAAAIEAj0Vd6DCWslvlsZ8+N53HWsqPi3gnx35JoLPz9Z2epkKIKqmEHav+93G3hdfztVa4I4t3phoPniQchYryF5+RNg8hqxKzjNtrIqUYCeuf2NJrksNsH7OZygPHZpqt4kTuwAGZxjxEGfAI0y8DhkU2ntp2LnzRnWH106BQBCmcXwo= fauxhai.local", + "host_rsa_public": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCtLCeqtqr/HbnORckw1ukdLhpfGoOPFi5/esKEokzTqq1gsgQ2V8emmyjfq1i6XXfRtSBxkdlHv/GWdP5wBTuE2G85MzBkVSQPvmwQN8lX/JMPEEtKXkeOo0o92/PiSmvY4eRsdF0mw40Uvg7jtE3f3fxj497kzh5fKtkrHnF4x9gXCbVdr3FqXJfggR5IJwAxToerbK7x/uRS+7YuZI9Pip3tt14nv9ezwXcuGb/tvjWOZINiFl8izVIFKi7sxfTX09p4NgamxRS7TD2Yd0jT8nEoF9UZTsgXcJ1kDSx7N7NxFfNfP6rCdOGRRz4gUhXtsUjG/XkxPeCwZ7A9VnOD fauxhai.local" + } + }, + "languages": { + "ruby": { + "platform": "x86_64-linux", + "version": "3.1.2", + "release_date": "2022-04-12", + "target": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_vendor": "pc", + "target_os": "linux", + "host": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux", + "host_vendor": "pc", + "bin_dir": "/usr/local/bin", + "ruby_bin": "/usr/local/bin/ruby", + "gem_bin": "/usr/local/bin/gem", + "gems_dir": "/usr/local/gems" + }, + "powershell": null + }, + "lsb": {}, + "macaddress": "11:11:11:11:11:11", + "machinename": "Fauxhai", + "memory": { + "total": "1048576kB" + }, + "network": { + "interfaces": { + "lo": { + "mtu": "65536", + "flags": [ + "LOOPBACK", + "UP", + "LOWER_UP" + ], + "encapsulation": "Loopback", + "addresses": { + "127.0.0.1": { + "family": "inet", + "prefixlen": "8", + "netmask": "255.0.0.0", + "scope": "Node", + "ip_scope": "LOOPBACK" + }, + "::1": { + "family": "inet6", + "prefixlen": "128", + "scope": "Node", + "tags": [], + "ip_scope": "LINK LOCAL LOOPBACK" + } + }, + "state": "unknown" + }, + "eth0": { + "type": "eth", + "number": "0", + "mtu": "1500", + "flags": [ + "BROADCAST", + "MULTICAST", + "UP", + "LOWER_UP" + ], + "encapsulation": "Ethernet", + "addresses": { + "11:11:11:11:11:11": { + "family": "lladdr" + }, + "10.0.0.2": { + "family": "inet", + "prefixlen": "24", + "netmask": "255.255.255.0", + "broadcast": "10.0.0.255", + "scope": "Global", + "ip_scope": "RFC1918 PRIVATE" + }, + "fe80::11:1111:1111:1111": { + "family": "inet6", + "prefixlen": "64", + "scope": "Link", + "tags": [], + "ip_scope": "LINK LOCAL UNICAST" + } + }, + "state": "up", + "arp": { + "10.0.0.1": "fe:ff:ff:ff:ff:ff" + }, + "routes": [ + { + "destination": "default", + "family": "inet", + "via": "10.0.0.1" + }, + { + "destination": "10.0.0.0/24", + "family": "inet", + "scope": "link", + "proto": "kernel", + "src": "10.0.0.2" + }, + { + "destination": "fe80::/64", + "family": "inet6", + "metric": "256", + "proto": "kernel" + } + ], + "ring_params": {} + } + }, + "default_interface": "eth0", + "default_gateway": "10.0.0.1" + }, + "ohai_time": 1701829968.2431931, + "os": "linux", + "os_release": { + "name": "Amazon Linux", + "version": "2023", + "id": "amzn", + "id_like": [ + "fedora" + ], + "version_id": "2023", + "platform_id": "platform:al2023", + "pretty_name": "Amazon Linux 2023", + "ansi_color": "0;33", + "cpe_name": "cpe:2.3:o:amazon:amazon_linux:2023", + "home_url": "https://aws.amazon.com/linux/", + "bug_report_url": "https://github.com/amazonlinux/amazon-linux-2023", + "support_end": "2028-03-15" + }, + "os_version": "6.1.61-85.141.amzn2023.x86_64", + "packages": { + "pam": { + "epoch": "0", + "version": "1.5.1", + "release": "8.amzn2023.0.3", + "installdate": "1699646044", + "arch": "x86_64" + }, + "quota-nls": { + "epoch": "1", + "version": "4.06", + "release": "4.amzn2023.0.2", + "installdate": "1699646037", + "arch": "noarch" + }, + "libfdisk": { + "epoch": "0", + "version": "2.37.4", + "release": "1.amzn2023.0.3", + "installdate": "1699646044", + "arch": "x86_64" + }, + "kernel-srpm-macros": { + "epoch": "0", + "version": "1.0", + "release": "14.amzn2023.0.2", + "installdate": "1699646037", + "arch": "noarch" + }, + "util-linux": { + "epoch": "0", + "version": "2.37.4", + "release": "1.amzn2023.0.3", + "installdate": "1699646044", + "arch": "x86_64" + }, + "amazon-linux-repo-s3": { + "epoch": "0", + "version": "2023.2.20231113", + "release": "1.amzn2023", + "installdate": "1699646037", + "arch": "noarch" + }, + "kmod-libs": { + "epoch": "0", + "version": "29", + "release": "2.amzn2023.0.5", + "installdate": "1699646045", + "arch": "x86_64" + }, + "filesystem": { + "epoch": "0", + "version": "3.14", + "release": "5.amzn2023.0.3", + "installdate": "1699646037", + "arch": "x86_64" + }, + "systemd-udev": { + "epoch": "0", + "version": "252.16", + "release": "1.amzn2023.0.1", + "installdate": "1699646046", + "arch": "x86_64" + }, + "glibc-common": { + "epoch": "0", + "version": "2.34", + "release": "52.amzn2023.0.7", + "installdate": "1699646038", + "arch": "x86_64" + }, + "glib2": { + "epoch": "0", + "version": "2.74.7", + "release": "689.amzn2023.0.2", + "installdate": "1699646046", + "arch": "x86_64" + }, + "popt": { + "epoch": "0", + "version": "1.18", + "release": "6.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "rpm-plugin-selinux": { + "epoch": "0", + "version": "4.16.1.3", + "release": "12.amzn2023.0.6", + "installdate": "1699646046", + "arch": "x86_64" + }, + "libcap": { + "epoch": "0", + "version": "2.48", + "release": "2.amzn2023.0.3", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-libselinux": { + "epoch": "0", + "version": "3.4", + "release": "5.amzn2023.0.2", + "installdate": "1699646059", + "arch": "x86_64" + }, + "libxcrypt": { + "epoch": "0", + "version": "4.4.33", + "release": "7.amzn2023", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-dbus": { + "epoch": "0", + "version": "1.2.18", + "release": "1.amzn2023.0.2", + "installdate": "1699646059", + "arch": "x86_64" + }, + "libxml2": { + "epoch": "0", + "version": "2.10.4", + "release": "1.amzn2023.0.6", + "installdate": "1699646040", + "arch": "x86_64" + }, + "gnutls": { + "epoch": "0", + "version": "3.8.0", + "release": "376.amzn2023.0.2", + "installdate": "1699646059", + "arch": "x86_64" + }, + "file-libs": { + "epoch": "0", + "version": "5.39", + "release": "7.amzn2023.0.4", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-idna": { + "epoch": "0", + "version": "2.10", + "release": "3.amzn2023.0.2", + "installdate": "1699646059", + "arch": "noarch" + }, + "keyutils-libs": { + "epoch": "0", + "version": "1.6.3", + "release": "1.amzn2023", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-libsemanage": { + "epoch": "0", + "version": "3.4", + "release": "5.amzn2023.0.2", + "installdate": "1699646059", + "arch": "x86_64" + }, + "libidn2": { + "epoch": "0", + "version": "2.3.2", + "release": "1.amzn2023.0.5", + "installdate": "1699646040", + "arch": "x86_64" + }, + "libstoragemgmt": { + "epoch": "0", + "version": "1.9.4", + "release": "5.amzn2023.0.2", + "installdate": "1699646060", + "arch": "x86_64" + }, + "nss-util": { + "epoch": "0", + "version": "3.90.0", + "release": "3.amzn2023.0.3", + "installdate": "1699646040", + "arch": "x86_64" + }, + "libdnf": { + "epoch": "0", + "version": "0.67.0", + "release": "1.amzn2023.0.5", + "installdate": "1699646060", + "arch": "x86_64" + }, + "libffi": { + "epoch": "0", + "version": "3.4.4", + "release": "1.amzn2023.0.1", + "installdate": "1699646040", + "arch": "x86_64" + }, + "acpid": { + "epoch": "0", + "version": "2.0.32", + "release": "4.amzn2023.0.2", + "installdate": "1699646060", + "arch": "x86_64" + }, + "libsmartcols": { + "epoch": "0", + "version": "2.37.4", + "release": "1.amzn2023.0.3", + "installdate": "1699646040", + "arch": "x86_64" + }, + "rpm-plugin-systemd-inhibit": { + "epoch": "0", + "version": "4.16.1.3", + "release": "12.amzn2023.0.6", + "installdate": "1699646060", + "arch": "x86_64" + }, + "file": { + "epoch": "0", + "version": "5.39", + "release": "7.amzn2023.0.4", + "installdate": "1699646040", + "arch": "x86_64" + }, + "openssl-pkcs11": { + "epoch": "0", + "version": "0.4.12", + "release": "3.amzn2023.0.1", + "installdate": "1699646060", + "arch": "x86_64" + }, + "lmdb-libs": { + "epoch": "0", + "version": "0.9.29", + "release": "1.amzn2023.0.3", + "installdate": "1699646040", + "arch": "x86_64" + }, + "bind-libs": { + "epoch": "32", + "version": "9.16.42", + "release": "1.amzn2023.0.5", + "installdate": "1699646060", + "arch": "x86_64" + }, + "libtdb": { + "epoch": "0", + "version": "1.4.7", + "release": "1.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "nss-sysinit": { + "epoch": "0", + "version": "3.90.0", + "release": "3.amzn2023.0.3", + "installdate": "1699646060", + "arch": "x86_64" + }, + "libverto": { + "epoch": "0", + "version": "0.3.2", + "release": "1.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "dyninst": { + "epoch": "0", + "version": "10.2.1", + "release": "6.amzn2023.0.2", + "installdate": "1699646061", + "arch": "x86_64" + }, + "gdisk": { + "epoch": "0", + "version": "1.0.8", + "release": "1.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "go-srpm-macros": { + "epoch": "0", + "version": "3.2.0", + "release": "37.amzn2023", + "installdate": "1699646061", + "arch": "noarch" + }, + "protobuf-c": { + "epoch": "0", + "version": "1.4.1", + "release": "2.amzn2023.0.3", + "installdate": "1699646040", + "arch": "x86_64" + }, + "pkgconf-pkg-config": { + "epoch": "0", + "version": "1.8.0", + "release": "4.amzn2023.0.2", + "installdate": "1699646061", + "arch": "x86_64" + }, + "pciutils-libs": { + "epoch": "0", + "version": "3.7.0", + "release": "3.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-netifaces": { + "epoch": "0", + "version": "0.10.6", + "release": "13.amzn2023.0.2", + "installdate": "1699646061", + "arch": "x86_64" + }, + "libtasn1": { + "epoch": "0", + "version": "4.19.0", + "release": "1.amzn2023.0.4", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-ruamel-yaml-clib": { + "epoch": "0", + "version": "0.1.2", + "release": "6.amzn2023.0.2", + "installdate": "1699646061", + "arch": "x86_64" + }, + "coreutils-common": { + "epoch": "0", + "version": "8.32", + "release": "30.amzn2023.0.3", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-libcomps": { + "epoch": "0", + "version": "0.1.18", + "release": "1.amzn2023.0.2", + "installdate": "1699646061", + "arch": "x86_64" + }, + "perl-if": { + "epoch": "0", + "version": "0.60.800", + "release": "477.amzn2023.0.5", + "installdate": "1699646040", + "arch": "noarch" + }, + "python3-markupsafe": { + "epoch": "0", + "version": "1.1.1", + "release": "10.amzn2023.0.2", + "installdate": "1699646061", + "arch": "x86_64" + }, + "perl-IPC-Open3": { + "epoch": "0", + "version": "1.21", + "release": "477.amzn2023.0.5", + "installdate": "1699646040", + "arch": "noarch" + }, + "policycoreutils-python-utils": { + "epoch": "0", + "version": "3.4", + "release": "6.amzn2023.0.2", + "installdate": "1699646061", + "arch": "noarch" + }, + "perl-Term-ANSIColor": { + "epoch": "0", + "version": "5.01", + "release": "459.amzn2023.0.2", + "installdate": "1699646040", + "arch": "noarch" + }, + "python3-jmespath": { + "epoch": "0", + "version": "0.10.0", + "release": "1.amzn2023.0.3", + "installdate": "1699646072", + "arch": "noarch" + }, + "perl-SelectSaver": { + "epoch": "0", + "version": "1.02", + "release": "477.amzn2023.0.5", + "installdate": "1699646040", + "arch": "noarch" + }, + "python3-chardet": { + "epoch": "0", + "version": "4.0.0", + "release": "1.amzn2023.0.2", + "installdate": "1699646072", + "arch": "noarch" + }, + "perl-Pod-Perldoc": { + "epoch": "0", + "version": "3.28.01", + "release": "459.amzn2023.0.3", + "installdate": "1699646040", + "arch": "noarch" + }, + "python3-babel": { + "epoch": "0", + "version": "2.9.1", + "release": "1.amzn2023.0.2", + "installdate": "1699646072", + "arch": "noarch" + }, + "perl-Text-ParseWords": { + "epoch": "0", + "version": "3.30", + "release": "458.amzn2023.0.2", + "installdate": "1699646040", + "arch": "noarch" + }, + "python3-requests": { + "epoch": "0", + "version": "2.25.1", + "release": "1.amzn2023.0.3", + "installdate": "1699646072", + "arch": "noarch" + }, + "perl-Scalar-List-Utils": { + "epoch": "4", + "version": "1.56", + "release": "459.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-jsonpatch": { + "epoch": "0", + "version": "1.21", + "release": "14.amzn2023.0.2", + "installdate": "1699646072", + "arch": "noarch" + }, + "perl-Getopt-Std": { + "epoch": "0", + "version": "1.12", + "release": "477.amzn2023.0.5", + "installdate": "1699646040", + "arch": "noarch" + }, + "python3-cryptography": { + "epoch": "0", + "version": "36.0.1", + "release": "1.amzn2023.0.3", + "installdate": "1699646072", + "arch": "x86_64" + }, + "perl-vars": { + "epoch": "0", + "version": "1.05", + "release": "477.amzn2023.0.5", + "installdate": "1699646040", + "arch": "noarch" + }, + "chkconfig": { + "epoch": "0", + "version": "1.15", + "release": "2.amzn2023.0.2", + "installdate": "1699646073", + "arch": "x86_64" + }, + "perl-Carp": { + "epoch": "0", + "version": "1.50", + "release": "458.amzn2023.0.2", + "installdate": "1699646040", + "arch": "noarch" + }, + "hunspell-en": { + "epoch": "0", + "version": "0.20140811.1", + "release": "18.amzn2023.0.3", + "installdate": "1699646073", + "arch": "noarch" + }, + "perl-interpreter": { + "epoch": "4", + "version": "5.32.1", + "release": "477.amzn2023.0.5", + "installdate": "1699646041", + "arch": "x86_64" + }, + "ntsysv": { + "epoch": "0", + "version": "1.15", + "release": "2.amzn2023.0.2", + "installdate": "1699646074", + "arch": "x86_64" + }, + "gettext": { + "epoch": "0", + "version": "0.21", + "release": "4.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "ec2-instance-connect": { + "epoch": "0", + "version": "1.1", + "release": "19.amzn2023", + "installdate": "1699646093", + "arch": "noarch" + }, + "libgcrypt": { + "epoch": "0", + "version": "1.10.2", + "release": "1.amzn2023.0.1", + "installdate": "1699646041", + "arch": "x86_64" + }, + "dnf-plugin-support-info": { + "epoch": "0", + "version": "1.2", + "release": "1.amzn2023", + "installdate": "1699646093", + "arch": "noarch" + }, + "nss-softokn": { + "epoch": "0", + "version": "3.90.0", + "release": "3.amzn2023.0.3", + "installdate": "1699646041", + "arch": "x86_64" + }, + "kpatch-runtime": { + "epoch": "0", + "version": "0.9.7", + "release": "13.amzn2023.0.1", + "installdate": "1699646093", + "arch": "noarch" + }, + "keyutils": { + "epoch": "0", + "version": "1.6.3", + "release": "1.amzn2023", + "installdate": "1699646041", + "arch": "x86_64" + }, + "nfs-utils": { + "epoch": "1", + "version": "2.5.4", + "release": "2.rc3.amzn2023.0.3", + "installdate": "1699646094", + "arch": "x86_64" + }, + "zip": { + "epoch": "0", + "version": "3.0", + "release": "28.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "passwd": { + "epoch": "0", + "version": "0.80", + "release": "10.amzn2023.0.2", + "installdate": "1699646094", + "arch": "x86_64" + }, + "libnghttp2": { + "epoch": "0", + "version": "1.57.0", + "release": "1.amzn2023.0.1", + "installdate": "1699646041", + "arch": "x86_64" + }, + "xfsdump": { + "epoch": "0", + "version": "3.1.11", + "release": "2.amzn2023.0.2", + "installdate": "1699646094", + "arch": "x86_64" + }, + "xxd": { + "epoch": "2", + "version": "9.0.2081", + "release": "1.amzn2023", + "installdate": "1699646041", + "arch": "x86_64" + }, + "grub2-efi-x64-ec2": { + "epoch": "1", + "version": "2.06", + "release": "61.amzn2023.0.9", + "installdate": "1699646094", + "arch": "x86_64" + }, + "c-ares": { + "epoch": "0", + "version": "1.19.0", + "release": "1.amzn2023", + "installdate": "1699646041", + "arch": "x86_64" + }, + "iputils": { + "epoch": "0", + "version": "20210202", + "release": "2.amzn2023.0.4", + "installdate": "1699646095", + "arch": "x86_64" + }, + "libverto-libev": { + "epoch": "0", + "version": "0.3.2", + "release": "1.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "cryptsetup": { + "epoch": "0", + "version": "2.6.1", + "release": "1.amzn2023.0.1", + "installdate": "1699646095", + "arch": "x86_64" + }, + "hostname": { + "epoch": "0", + "version": "3.23", + "release": "4.amzn2023.0.3", + "installdate": "1699646041", + "arch": "x86_64" + }, + "cloud-utils-growpart": { + "epoch": "0", + "version": "0.31", + "release": "8.amzn2023.0.3", + "installdate": "1699646095", + "arch": "x86_64" + }, + "libpkgconf": { + "epoch": "0", + "version": "1.8.0", + "release": "4.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "vim-enhanced": { + "epoch": "2", + "version": "9.0.2081", + "release": "1.amzn2023", + "installdate": "1699646095", + "arch": "x86_64" + }, + "xxhash-libs": { + "epoch": "0", + "version": "0.8.0", + "release": "3.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "crontabs": { + "epoch": "0", + "version": "1.11", + "release": "24.20190603git.amzn2023.0.2", + "installdate": "1699646095", + "arch": "noarch" + }, + "efivar": { + "epoch": "0", + "version": "38", + "release": "2.amzn2023.0.1", + "installdate": "1699646041", + "arch": "x86_64" + }, + "kernel-tools": { + "epoch": "0", + "version": "6.1.61", + "release": "85.141.amzn2023", + "installdate": "1699646095", + "arch": "x86_64" + }, + "fstrm": { + "epoch": "0", + "version": "0.6.1", + "release": "2.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "acl": { + "epoch": "0", + "version": "2.3.1", + "release": "2.amzn2023.0.2", + "installdate": "1699646096", + "arch": "x86_64" + }, + "jq": { + "epoch": "0", + "version": "1.6", + "release": "10.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "time": { + "epoch": "0", + "version": "1.9", + "release": "16.amzn2023.0.2", + "installdate": "1699646096", + "arch": "x86_64" + }, + "dbus-common": { + "epoch": "1", + "version": "1.12.28", + "release": "1.amzn2023.0.1", + "installdate": "1699646041", + "arch": "noarch" + }, + "traceroute": { + "epoch": "3", + "version": "2.1.0", + "release": "13.amzn2023.0.2", + "installdate": "1699646096", + "arch": "x86_64" + }, + "hwdata": { + "epoch": "0", + "version": "0.353", + "release": "1.amzn2023.0.3", + "installdate": "1699646041", + "arch": "noarch" + }, + "vim-common": { + "epoch": "2", + "version": "9.0.2081", + "release": "1.amzn2023", + "installdate": "1699646042", + "arch": "x86_64" + }, + "dnf-data": { + "epoch": "0", + "version": "4.12.0", + "release": "2.amzn2023.0.4", + "installdate": "1699646042", + "arch": "noarch" + }, + "grep": { + "epoch": "0", + "version": "3.8", + "release": "1.amzn2023.0.4", + "installdate": "1699646042", + "arch": "x86_64" + }, + "shadow-utils": { + "epoch": "2", + "version": "4.9", + "release": "12.amzn2023.0.2", + "installdate": "1699646042", + "arch": "x86_64" + }, + "libselinux-utils": { + "epoch": "0", + "version": "3.4", + "release": "5.amzn2023.0.2", + "installdate": "1699646042", + "arch": "x86_64" + }, + "python3-setuptools": { + "epoch": "0", + "version": "59.6.0", + "release": "2.amzn2023.0.4", + "installdate": "1699646043", + "arch": "noarch" + }, + "grubby": { + "epoch": "0", + "version": "8.40", + "release": "51.amzn2023.0.4", + "installdate": "1699646043", + "arch": "x86_64" + }, + "curl-minimal": { + "epoch": "0", + "version": "8.3.0", + "release": "1.amzn2023.0.2", + "installdate": "1699646043", + "arch": "x86_64" + }, + "cracklib-dicts": { + "epoch": "0", + "version": "2.9.6", + "release": "27.amzn2023.0.2", + "installdate": "1699646043", + "arch": "x86_64" + }, + "device-mapper": { + "epoch": "0", + "version": "1.02.185", + "release": "1.amzn2023.0.4", + "installdate": "1699646043", + "arch": "x86_64" + }, + "elfutils-default-yama-scope": { + "epoch": "0", + "version": "0.188", + "release": "3.amzn2023.0.2", + "installdate": "1699646044", + "arch": "noarch" + }, + "systemd-resolved": { + "epoch": "0", + "version": "252.16", + "release": "1.amzn2023.0.1", + "installdate": "1699646044", + "arch": "x86_64" + }, + "libgcc": { + "epoch": "0", + "version": "11.4.1", + "release": "2.amzn2023.0.2", + "installdate": "1699646037", + "arch": "x86_64" + }, + "systemd-pam": { + "epoch": "0", + "version": "252.16", + "release": "1.amzn2023.0.1", + "installdate": "1699646044", + "arch": "x86_64" + }, + "vim-data": { + "epoch": "2", + "version": "9.0.2081", + "release": "1.amzn2023", + "installdate": "1699646037", + "arch": "noarch" + }, + "libpwquality": { + "epoch": "0", + "version": "1.4.4", + "release": "6.amzn2023.0.2", + "installdate": "1699646044", + "arch": "x86_64" + }, + "publicsuffix-list-dafsa": { + "epoch": "0", + "version": "20221208", + "release": "60.amzn2023", + "installdate": "1699646037", + "arch": "noarch" + }, + "libmount": { + "epoch": "0", + "version": "2.37.4", + "release": "1.amzn2023.0.3", + "installdate": "1699646044", + "arch": "x86_64" + }, + "rust-srpm-macros": { + "epoch": "0", + "version": "21", + "release": "42.amzn2023.0.2", + "installdate": "1699646037", + "arch": "noarch" + }, + "util-linux-core": { + "epoch": "0", + "version": "2.37.4", + "release": "1.amzn2023.0.3", + "installdate": "1699646044", + "arch": "x86_64" + }, + "ocaml-srpm-macros": { + "epoch": "0", + "version": "6", + "release": "6.amzn2023.0.2", + "installdate": "1699646037", + "arch": "noarch" + }, + "libblkid": { + "epoch": "0", + "version": "2.37.4", + "release": "1.amzn2023.0.3", + "installdate": "1699646044", + "arch": "x86_64" + }, + "kernel-livepatch-repo-s3": { + "epoch": "0", + "version": "2023.2.20231113", + "release": "1.amzn2023", + "installdate": "1699646037", + "arch": "noarch" + }, + "ca-certificates": { + "epoch": "0", + "version": "2023.2.62", + "release": "1.0.amzn2023.0.1", + "installdate": "1699646044", + "arch": "noarch" + }, + "ncurses-libs": { + "epoch": "0", + "version": "6.2", + "release": "4.20200222.amzn2023.0.4", + "installdate": "1699646037", + "arch": "x86_64" + }, + "rpm-libs": { + "epoch": "0", + "version": "4.16.1.3", + "release": "12.amzn2023.0.6", + "installdate": "1699646045", + "arch": "x86_64" + }, + "setup": { + "epoch": "0", + "version": "2.13.7", + "release": "3.amzn2023.0.2", + "installdate": "1699646037", + "arch": "noarch" + }, + "cryptsetup-libs": { + "epoch": "0", + "version": "2.6.1", + "release": "1.amzn2023.0.1", + "installdate": "1699646045", + "arch": "x86_64" + }, + "basesystem": { + "epoch": "0", + "version": "11", + "release": "11.amzn2023.0.2", + "installdate": "1699646037", + "arch": "noarch" + }, + "libfido2": { + "epoch": "0", + "version": "1.10.0", + "release": "2.amzn2023.0.2", + "installdate": "1699646045", + "arch": "x86_64" + }, + "glibc-all-langpacks": { + "epoch": "0", + "version": "2.34", + "release": "52.amzn2023.0.7", + "installdate": "1699646038", + "arch": "x86_64" + }, + "dracut": { + "epoch": "0", + "version": "055", + "release": "6.amzn2023.0.8", + "installdate": "1699646046", + "arch": "x86_64" + }, + "glibc-gconv-extra": { + "epoch": "0", + "version": "2.34", + "release": "52.amzn2023.0.7", + "installdate": "1699646038", + "arch": "x86_64" + }, + "grub2-tools": { + "epoch": "1", + "version": "2.06", + "release": "61.amzn2023.0.9", + "installdate": "1699646046", + "arch": "x86_64" + }, + "zlib": { + "epoch": "0", + "version": "1.2.11", + "release": "33.amzn2023.0.5", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-six": { + "epoch": "0", + "version": "1.15.0", + "release": "5.amzn2023.0.2", + "installdate": "1699646046", + "arch": "noarch" + }, + "xz-libs": { + "epoch": "0", + "version": "5.2.5", + "release": "9.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "libtirpc": { + "epoch": "0", + "version": "1.3.3", + "release": "0.amzn2023", + "installdate": "1699646046", + "arch": "x86_64" + }, + "libstdc++": { + "epoch": "0", + "version": "11.4.1", + "release": "2.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "selinux-policy": { + "epoch": "0", + "version": "37.22", + "release": "1.amzn2023.0.1", + "installdate": "1699646046", + "arch": "noarch" + }, + "systemd-libs": { + "epoch": "0", + "version": "252.16", + "release": "1.amzn2023.0.1", + "installdate": "1699646040", + "arch": "x86_64" + }, + "openssh": { + "epoch": "0", + "version": "8.7p1", + "release": "8.amzn2023.0.8", + "installdate": "1699646059", + "arch": "x86_64" + }, + "libcom_err": { + "epoch": "0", + "version": "1.46.5", + "release": "2.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-distro": { + "epoch": "0", + "version": "1.5.0", + "release": "5.amzn2023.0.2", + "installdate": "1699646059", + "arch": "noarch" + }, + "sqlite-libs": { + "epoch": "0", + "version": "3.40.0", + "release": "1.amzn2023.0.3", + "installdate": "1699646040", + "arch": "x86_64" + }, + "libmodulemd": { + "epoch": "0", + "version": "2.13.0", + "release": "2.amzn2023.0.2", + "installdate": "1699646059", + "arch": "x86_64" + }, + "libzstd": { + "epoch": "0", + "version": "1.5.5", + "release": "1.amzn2023.0.1", + "installdate": "1699646040", + "arch": "x86_64" + }, + "libsolv": { + "epoch": "0", + "version": "0.7.22", + "release": "1.amzn2023.0.2", + "installdate": "1699646059", + "arch": "x86_64" + }, + "lua-libs": { + "epoch": "0", + "version": "5.4.4", + "release": "3.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "xfsprogs": { + "epoch": "0", + "version": "5.18.0", + "release": "1.amzn2023.0.3", + "installdate": "1699646059", + "arch": "x86_64" + }, + "nspr": { + "epoch": "0", + "version": "4.35.0", + "release": "5.amzn2023.0.3", + "installdate": "1699646040", + "arch": "x86_64" + }, + "cyrus-sasl-lib": { + "epoch": "0", + "version": "2.1.27", + "release": "18.amzn2023.0.3", + "installdate": "1699646059", + "arch": "x86_64" + }, + "libcap-ng": { + "epoch": "0", + "version": "0.8.2", + "release": "4.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "libldb": { + "epoch": "0", + "version": "2.6.2", + "release": "1.amzn2023.0.2", + "installdate": "1699646059", + "arch": "x86_64" + }, + "libtalloc": { + "epoch": "0", + "version": "2.3.4", + "release": "1.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-docutils": { + "epoch": "0", + "version": "0.16", + "release": "4.amzn2023.0.2", + "installdate": "1699646059", + "arch": "noarch" + }, + "libattr": { + "epoch": "0", + "version": "2.5.1", + "release": "3.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "libuser": { + "epoch": "0", + "version": "0.63", + "release": "4.amzn2023.0.2", + "installdate": "1699646059", + "arch": "x86_64" + }, + "libunistring": { + "epoch": "0", + "version": "0.9.10", + "release": "10.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "openssh-server": { + "epoch": "0", + "version": "8.7p1", + "release": "8.amzn2023.0.8", + "installdate": "1699646060", + "arch": "x86_64" + }, + "libsepol": { + "epoch": "0", + "version": "3.4", + "release": "3.amzn2023.0.3", + "installdate": "1699646040", + "arch": "x86_64" + }, + "rpcbind": { + "epoch": "0", + "version": "1.2.6", + "release": "0.amzn2023.0.2", + "installdate": "1699646060", + "arch": "x86_64" + }, + "alternatives": { + "epoch": "0", + "version": "1.15", + "release": "2.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-libstoragemgmt": { + "epoch": "0", + "version": "1.9.4", + "release": "5.amzn2023.0.2", + "installdate": "1699646060", + "arch": "x86_64" + }, + "dbus-libs": { + "epoch": "1", + "version": "1.12.28", + "release": "1.amzn2023.0.1", + "installdate": "1699646040", + "arch": "x86_64" + }, + "librepo": { + "epoch": "0", + "version": "1.14.2", + "release": "1.amzn2023.0.4", + "installdate": "1699646060", + "arch": "x86_64" + }, + "libref_array": { + "epoch": "0", + "version": "0.1.5", + "release": "47.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-libdnf": { + "epoch": "0", + "version": "0.67.0", + "release": "1.amzn2023.0.5", + "installdate": "1699646060", + "arch": "x86_64" + }, + "p11-kit": { + "epoch": "0", + "version": "0.24.1", + "release": "2.amzn2023.0.3", + "installdate": "1699646040", + "arch": "x86_64" + }, + "initscripts": { + "epoch": "0", + "version": "10.09", + "release": "1.amzn2023.0.2", + "installdate": "1699646060", + "arch": "x86_64" + }, + "libgpg-error": { + "epoch": "0", + "version": "1.42", + "release": "1.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "gssproxy": { + "epoch": "0", + "version": "0.8.4", + "release": "2.amzn2023.0.3", + "installdate": "1699646060", + "arch": "x86_64" + }, + "grub2-common": { + "epoch": "1", + "version": "2.06", + "release": "61.amzn2023.0.9", + "installdate": "1699646040", + "arch": "noarch" + }, + "net-tools": { + "epoch": "0", + "version": "2.0", + "release": "0.59.20160912git.amzn2023.0.3", + "installdate": "1699646060", + "arch": "x86_64" + }, + "libtevent": { + "epoch": "0", + "version": "0.13.0", + "release": "1.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "rpm-build-libs": { + "epoch": "0", + "version": "4.16.1.3", + "release": "12.amzn2023.0.6", + "installdate": "1699646060", + "arch": "x86_64" + }, + "procps-ng": { + "epoch": "0", + "version": "3.3.17", + "release": "1.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-rpm": { + "epoch": "0", + "version": "4.16.1.3", + "release": "12.amzn2023.0.6", + "installdate": "1699646060", + "arch": "x86_64" + }, + "libgomp": { + "epoch": "0", + "version": "11.4.1", + "release": "2.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "libevent": { + "epoch": "0", + "version": "2.1.12", + "release": "3.amzn2023.0.3", + "installdate": "1699646060", + "arch": "x86_64" + }, + "libcollection": { + "epoch": "0", + "version": "0.7.0", + "release": "47.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "sbsigntools": { + "epoch": "0", + "version": "0.9.4", + "release": "8.amzn2023.0.2", + "installdate": "1699646060", + "arch": "x86_64" + }, + "libedit": { + "epoch": "0", + "version": "3.1", + "release": "38.20210714cvs.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "zram-generator": { + "epoch": "0", + "version": "1.1.2", + "release": "67.amzn2023", + "installdate": "1699646060", + "arch": "x86_64" + }, + "libbasicobjects": { + "epoch": "0", + "version": "0.1.1", + "release": "47.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "nss": { + "epoch": "0", + "version": "3.90.0", + "release": "3.amzn2023.0.3", + "installdate": "1699646060", + "arch": "x86_64" + }, + "gdbm-libs": { + "epoch": "1", + "version": "1.19", + "release": "2.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "binutils": { + "epoch": "0", + "version": "2.39", + "release": "6.amzn2023.0.10", + "installdate": "1699646060", + "arch": "x86_64" + }, + "libassuan": { + "epoch": "0", + "version": "2.5.5", + "release": "1.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "sssd-common": { + "epoch": "0", + "version": "2.5.0", + "release": "1.amzn2023.0.3", + "installdate": "1699646060", + "arch": "x86_64" + }, + "e2fsprogs-libs": { + "epoch": "0", + "version": "1.46.5", + "release": "2.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "efi-srpm-macros": { + "epoch": "0", + "version": "5", + "release": "4.amzn2023.0.5", + "installdate": "1699646061", + "arch": "noarch" + }, + "groff-base": { + "epoch": "0", + "version": "1.22.4", + "release": "7.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python-srpm-macros": { + "epoch": "0", + "version": "3.9", + "release": "41.amzn2023.0.5", + "installdate": "1699646061", + "arch": "noarch" + }, + "libnl3": { + "epoch": "0", + "version": "3.5.0", + "release": "6.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "fonts-srpm-macros": { + "epoch": "1", + "version": "2.0.5", + "release": "12.amzn2023.0.2", + "installdate": "1699646061", + "arch": "noarch" + }, + "libdhash": { + "epoch": "0", + "version": "0.5.0", + "release": "47.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "pkgconf": { + "epoch": "0", + "version": "1.8.0", + "release": "4.amzn2023.0.2", + "installdate": "1699646061", + "arch": "x86_64" + }, + "libsss_idmap": { + "epoch": "0", + "version": "2.5.0", + "release": "1.amzn2023.0.3", + "installdate": "1699646040", + "arch": "x86_64" + }, + "ec2-utils": { + "epoch": "0", + "version": "2.1.0", + "release": "1.amzn2023.0.1", + "installdate": "1699646061", + "arch": "noarch" + }, + "libseccomp": { + "epoch": "0", + "version": "2.5.3", + "release": "1.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "amazon-chrony-config": { + "epoch": "0", + "version": "4.3", + "release": "1.amzn2023.0.4", + "installdate": "1699646061", + "arch": "noarch" + }, + "libdb": { + "epoch": "0", + "version": "5.3.28", + "release": "49.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-audit": { + "epoch": "0", + "version": "3.0.6", + "release": "1.amzn2023.0.2", + "installdate": "1699646061", + "arch": "x86_64" + }, + "p11-kit-trust": { + "epoch": "0", + "version": "0.24.1", + "release": "2.amzn2023.0.3", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-awscrt": { + "epoch": "0", + "version": "0.16.7", + "release": "1.amzn2023.0.1", + "installdate": "1699646061", + "arch": "x86_64" + }, + "diffutils": { + "epoch": "0", + "version": "3.8", + "release": "1.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-ruamel-yaml": { + "epoch": "0", + "version": "0.16.6", + "release": "5.amzn2023.0.2", + "installdate": "1699646061", + "arch": "x86_64" + }, + "perl-Text-Tabs+Wrap": { + "epoch": "0", + "version": "2021.0726", + "release": "1.amzn2023.0.1", + "installdate": "1699646040", + "arch": "noarch" + }, + "python3-pyrsistent": { + "epoch": "0", + "version": "0.17.3", + "release": "6.amzn2023.0.2", + "installdate": "1699646061", + "arch": "x86_64" + }, + "perl-Pod-Escapes": { + "epoch": "1", + "version": "1.07", + "release": "458.amzn2023.0.2", + "installdate": "1699646040", + "arch": "noarch" + }, + "python3-dnf": { + "epoch": "0", + "version": "4.12.0", + "release": "2.amzn2023.0.4", + "installdate": "1699646061", + "arch": "noarch" + }, + "perl-Time-Local": { + "epoch": "2", + "version": "1.300", + "release": "5.amzn2023.0.2", + "installdate": "1699646040", + "arch": "noarch" + }, + "python3-dnf-plugins-core": { + "epoch": "0", + "version": "4.1.0", + "release": "1.amzn2023.0.3", + "installdate": "1699646061", + "arch": "noarch" + }, + "perl-subs": { + "epoch": "0", + "version": "1.03", + "release": "477.amzn2023.0.5", + "installdate": "1699646040", + "arch": "noarch" + }, + "python-chevron": { + "epoch": "0", + "version": "0.13.1", + "release": "1.amzn2023.0.3", + "installdate": "1699646061", + "arch": "x86_64" + }, + "perl-Class-Struct": { + "epoch": "0", + "version": "0.66", + "release": "477.amzn2023.0.5", + "installdate": "1699646040", + "arch": "noarch" + }, + "python3-policycoreutils": { + "epoch": "0", + "version": "3.4", + "release": "6.amzn2023.0.2", + "installdate": "1699646061", + "arch": "noarch" + }, + "perl-Term-Cap": { + "epoch": "0", + "version": "1.17", + "release": "458.amzn2023.0.2", + "installdate": "1699646040", + "arch": "noarch" + }, + "ec2-instance-connect-selinux": { + "epoch": "0", + "version": "1.1", + "release": "19.amzn2023", + "installdate": "1699646061", + "arch": "noarch" + }, + "perl-HTTP-Tiny": { + "epoch": "0", + "version": "0.078", + "release": "1.amzn2023.0.3", + "installdate": "1699646040", + "arch": "noarch" + }, + "python3-prompt-toolkit": { + "epoch": "0", + "version": "3.0.24", + "release": "1.amzn2023.0.2", + "installdate": "1699646072", + "arch": "noarch" + }, + "perl-Socket": { + "epoch": "4", + "version": "2.032", + "release": "1.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-prettytable": { + "epoch": "0", + "version": "0.7.2", + "release": "25.amzn2023.0.2", + "installdate": "1699646072", + "arch": "noarch" + }, + "perl-Symbol": { + "epoch": "0", + "version": "1.08", + "release": "477.amzn2023.0.5", + "installdate": "1699646040", + "arch": "noarch" + }, + "python3-jsonschema": { + "epoch": "0", + "version": "3.2.0", + "release": "9.amzn2023.0.3", + "installdate": "1699646072", + "arch": "noarch" + }, + "perl-podlators": { + "epoch": "1", + "version": "4.14", + "release": "458.amzn2023.0.2", + "installdate": "1699646040", + "arch": "noarch" + }, + "python3-colorama": { + "epoch": "0", + "version": "0.4.4", + "release": "2.amzn2023.0.2", + "installdate": "1699646072", + "arch": "noarch" + }, + "perl-mro": { + "epoch": "0", + "version": "1.23", + "release": "477.amzn2023.0.5", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-pytz": { + "epoch": "0", + "version": "2022.7.1", + "release": "1.amzn2023", + "installdate": "1699646072", + "arch": "noarch" + }, + "perl-overloading": { + "epoch": "0", + "version": "0.02", + "release": "477.amzn2023.0.5", + "installdate": "1699646040", + "arch": "noarch" + }, + "python3-jinja2": { + "epoch": "0", + "version": "2.11.3", + "release": "1.amzn2023.0.2", + "installdate": "1699646072", + "arch": "noarch" + }, + "perl-IO": { + "epoch": "0", + "version": "1.43", + "release": "477.amzn2023.0.5", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-urllib3": { + "epoch": "0", + "version": "1.25.10", + "release": "5.amzn2023.0.2", + "installdate": "1699646072", + "arch": "noarch" + }, + "perl-MIME-Base64": { + "epoch": "0", + "version": "3.16", + "release": "2.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-lockfile": { + "epoch": "1", + "version": "0.12.2", + "release": "5.amzn2023.0.3", + "installdate": "1699646072", + "arch": "noarch" + }, + "perl-Errno": { + "epoch": "0", + "version": "1.30", + "release": "477.amzn2023.0.5", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-jsonpointer": { + "epoch": "0", + "version": "2.0", + "release": "2.amzn2023.0.2", + "installdate": "1699646072", + "arch": "noarch" + }, + "perl-overload": { + "epoch": "0", + "version": "1.31", + "release": "477.amzn2023.0.5", + "installdate": "1699646040", + "arch": "noarch" + }, + "python3-ply": { + "epoch": "0", + "version": "3.11", + "release": "11.amzn2023.0.2", + "installdate": "1699646072", + "arch": "noarch" + }, + "perl-File-Basename": { + "epoch": "0", + "version": "2.85", + "release": "477.amzn2023.0.5", + "installdate": "1699646040", + "arch": "noarch" + }, + "perl-Storable": { + "epoch": "1", + "version": "3.21", + "release": "458.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "perl-Getopt-Long": { + "epoch": "1", + "version": "2.52", + "release": "2.amzn2023.0.2", + "installdate": "1699646040", + "arch": "noarch" + }, + "perl-PathTools": { + "epoch": "0", + "version": "3.78", + "release": "459.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "perl-Exporter": { + "epoch": "0", + "version": "5.74", + "release": "459.amzn2023.0.2", + "installdate": "1699646040", + "arch": "noarch" + }, + "perl-libs": { + "epoch": "4", + "version": "5.32.1", + "release": "477.amzn2023.0.5", + "installdate": "1699646041", + "arch": "x86_64" + }, + "libibverbs": { + "epoch": "0", + "version": "37.0", + "release": "1.amzn2023.0.3", + "installdate": "1699646041", + "arch": "x86_64" + }, + "gettext-libs": { + "epoch": "0", + "version": "0.21", + "release": "4.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "zstd": { + "epoch": "0", + "version": "1.5.5", + "release": "1.amzn2023.0.1", + "installdate": "1699646041", + "arch": "x86_64" + }, + "boost-filesystem": { + "epoch": "0", + "version": "1.75.0", + "release": "4.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "libcomps": { + "epoch": "0", + "version": "0.1.18", + "release": "1.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "nss-softokn-freebl": { + "epoch": "0", + "version": "3.90.0", + "release": "3.amzn2023.0.3", + "installdate": "1699646041", + "arch": "x86_64" + }, + "mpfr": { + "epoch": "0", + "version": "4.1.0", + "release": "7.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "attr": { + "epoch": "0", + "version": "2.5.1", + "release": "3.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "dwz": { + "epoch": "0", + "version": "0.14", + "release": "6.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "unzip": { + "epoch": "0", + "version": "6.0", + "release": "57.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "tbb": { + "epoch": "0", + "version": "2020.3", + "release": "7.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "info": { + "epoch": "0", + "version": "6.7", + "release": "10.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "libuv": { + "epoch": "1", + "version": "1.44.1", + "release": "156.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "jitterentropy": { + "epoch": "0", + "version": "3.4.1", + "release": "4.amzn2023", + "installdate": "1699646041", + "arch": "x86_64" + }, + "checkpolicy": { + "epoch": "0", + "version": "3.4", + "release": "3.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "gawk": { + "epoch": "0", + "version": "5.1.0", + "release": "3.amzn2023.0.3", + "installdate": "1699646041", + "arch": "x86_64" + }, + "slang": { + "epoch": "0", + "version": "2.3.2", + "release": "9.amzn2023.0.3", + "installdate": "1699646041", + "arch": "x86_64" + }, + "libev": { + "epoch": "0", + "version": "4.33", + "release": "3.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "libpath_utils": { + "epoch": "0", + "version": "0.2.1", + "release": "47.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "libargon2": { + "epoch": "0", + "version": "20171227", + "release": "9.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "npth": { + "epoch": "0", + "version": "1.6", + "release": "6.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "gpgme": { + "epoch": "0", + "version": "1.15.1", + "release": "6.amzn2023.0.3", + "installdate": "1699646041", + "arch": "x86_64" + }, + "less": { + "epoch": "0", + "version": "608", + "release": "2.amzn2023.0.1", + "installdate": "1699646041", + "arch": "x86_64" + }, + "lm_sensors-libs": { + "epoch": "0", + "version": "3.6.0", + "release": "8.amzn2023.0.3", + "installdate": "1699646041", + "arch": "x86_64" + }, + "libmaxminddb": { + "epoch": "0", + "version": "1.5.2", + "release": "1.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "efivar-libs": { + "epoch": "0", + "version": "38", + "release": "2.amzn2023.0.1", + "installdate": "1699646041", + "arch": "x86_64" + }, + "gpm-libs": { + "epoch": "0", + "version": "1.20.7", + "release": "26.amzn2023.amzn2023.0.3", + "installdate": "1699646041", + "arch": "x86_64" + }, + "numactl-libs": { + "epoch": "0", + "version": "2.0.14", + "release": "3.amzn2023.0.3", + "installdate": "1699646041", + "arch": "x86_64" + }, + "libpipeline": { + "epoch": "0", + "version": "1.5.3", + "release": "2.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "oniguruma": { + "epoch": "0", + "version": "6.9.7.1", + "release": "1.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "libeconf": { + "epoch": "0", + "version": "0.4.0", + "release": "1.amzn2023.0.3", + "installdate": "1699646041", + "arch": "x86_64" + }, + "package-notes-srpm-macros": { + "epoch": "0", + "version": "0.4", + "release": "18.amzn2023.0.5", + "installdate": "1699646041", + "arch": "noarch" + }, + "efi-filesystem": { + "epoch": "0", + "version": "5", + "release": "4.amzn2023.0.5", + "installdate": "1699646041", + "arch": "noarch" + }, + "kbd-misc": { + "epoch": "0", + "version": "2.4.0", + "release": "2.amzn2023.0.3", + "installdate": "1699646041", + "arch": "noarch" + }, + "bind-license": { + "epoch": "32", + "version": "9.16.42", + "release": "1.amzn2023.0.5", + "installdate": "1699646041", + "arch": "noarch" + }, + "vim-filesystem": { + "epoch": "2", + "version": "9.0.2081", + "release": "1.amzn2023", + "installdate": "1699646041", + "arch": "noarch" + }, + "python3-setuptools-wheel": { + "epoch": "0", + "version": "59.6.0", + "release": "2.amzn2023.0.4", + "installdate": "1699646042", + "arch": "noarch" + }, + "libreport-filesystem": { + "epoch": "0", + "version": "2.15.2", + "release": "2.amzn2023.0.2", + "installdate": "1699646042", + "arch": "noarch" + }, + "pcre2-syntax": { + "epoch": "0", + "version": "10.40", + "release": "1.amzn2023.0.3", + "installdate": "1699646042", + "arch": "noarch" + }, + "libselinux": { + "epoch": "0", + "version": "3.4", + "release": "5.amzn2023.0.2", + "installdate": "1699646042", + "arch": "x86_64" + }, + "sed": { + "epoch": "0", + "version": "4.8", + "release": "7.amzn2023.0.2", + "installdate": "1699646042", + "arch": "x86_64" + }, + "libsemanage": { + "epoch": "0", + "version": "3.4", + "release": "5.amzn2023.0.2", + "installdate": "1699646042", + "arch": "x86_64" + }, + "iproute": { + "epoch": "0", + "version": "5.10.0", + "release": "2.amzn2023.0.5", + "installdate": "1699646042", + "arch": "x86_64" + }, + "xz": { + "epoch": "0", + "version": "5.2.5", + "release": "9.amzn2023.0.2", + "installdate": "1699646042", + "arch": "x86_64" + }, + "dbus-broker": { + "epoch": "0", + "version": "32", + "release": "1.amzn2023.0.2", + "installdate": "1699646043", + "arch": "x86_64" + }, + "python3-pip-wheel": { + "epoch": "0", + "version": "21.3.1", + "release": "2.amzn2023.0.5", + "installdate": "1699646043", + "arch": "noarch" + }, + "python3-libs": { + "epoch": "0", + "version": "3.9.16", + "release": "1.amzn2023.0.6", + "installdate": "1699646043", + "arch": "x86_64" + }, + "krb5-libs": { + "epoch": "0", + "version": "1.21", + "release": "3.amzn2023.0.3", + "installdate": "1699646043", + "arch": "x86_64" + }, + "libkcapi": { + "epoch": "0", + "version": "1.4.0", + "release": "105.amzn2023.0.1", + "installdate": "1699646043", + "arch": "x86_64" + }, + "libarchive": { + "epoch": "0", + "version": "3.5.3", + "release": "2.amzn2023.0.3", + "installdate": "1699646043", + "arch": "x86_64" + }, + "libcurl-minimal": { + "epoch": "0", + "version": "8.3.0", + "release": "1.amzn2023.0.2", + "installdate": "1699646043", + "arch": "x86_64" + }, + "crypto-policies": { + "epoch": "0", + "version": "20220428", + "release": "1.gitdfb10ea.amzn2023.0.2", + "installdate": "1699646043", + "arch": "noarch" + }, + "cracklib": { + "epoch": "0", + "version": "2.9.6", + "release": "27.amzn2023.0.2", + "installdate": "1699646043", + "arch": "x86_64" + }, + "grub2-tools-minimal": { + "epoch": "1", + "version": "2.06", + "release": "61.amzn2023.0.9", + "installdate": "1699646043", + "arch": "x86_64" + }, + "device-mapper-libs": { + "epoch": "0", + "version": "1.02.185", + "release": "1.amzn2023.0.4", + "installdate": "1699646043", + "arch": "x86_64" + }, + "elfutils-debuginfod-client": { + "epoch": "0", + "version": "0.188", + "release": "3.amzn2023.0.2", + "installdate": "1699646044", + "arch": "x86_64" + }, + "elfutils-libs": { + "epoch": "0", + "version": "0.188", + "release": "3.amzn2023.0.2", + "installdate": "1699646044", + "arch": "x86_64" + }, + "kmod": { + "epoch": "0", + "version": "29", + "release": "2.amzn2023.0.5", + "installdate": "1699646044", + "arch": "x86_64" + }, + "python3-cffi": { + "epoch": "0", + "version": "1.14.5", + "release": "1.amzn2023.0.3", + "installdate": "1699646072", + "arch": "x86_64" + }, + "python3-oauthlib": { + "epoch": "0", + "version": "3.0.2", + "release": "9.amzn2023.0.3", + "installdate": "1699646072", + "arch": "noarch" + }, + "cloud-init-cfg-ec2": { + "epoch": "0", + "version": "22.2.2", + "release": "1.amzn2023.1.12", + "installdate": "1699646073", + "arch": "noarch" + }, + "microcode_ctl": { + "epoch": "2", + "version": "2.1", + "release": "53.amzn2023.0.3", + "installdate": "1699646073", + "arch": "x86_64" + }, + "hunspell-en-GB": { + "epoch": "0", + "version": "0.20140811.1", + "release": "18.amzn2023.0.3", + "installdate": "1699646073", + "arch": "noarch" + }, + "hunspell-en-US": { + "epoch": "0", + "version": "0.20140811.1", + "release": "18.amzn2023.0.3", + "installdate": "1699646073", + "arch": "noarch" + }, + "kernel": { + "epoch": "0", + "version": "6.1.61", + "release": "85.141.amzn2023", + "installdate": "1699646074", + "arch": "x86_64" + }, + "amazon-ec2-net-utils": { + "epoch": "0", + "version": "2.4.1", + "release": "1.amzn2023.0.1", + "installdate": "1699646074", + "arch": "noarch" + }, + "aws-cfn-bootstrap": { + "epoch": "0", + "version": "2.0", + "release": "23.amzn2023", + "installdate": "1699646076", + "arch": "noarch" + }, + "dnf-plugins-core": { + "epoch": "0", + "version": "4.1.0", + "release": "1.amzn2023.0.3", + "installdate": "1699646093", + "arch": "noarch" + }, + "dnf-plugin-release-notification": { + "epoch": "0", + "version": "1.2", + "release": "1.amzn2023.0.2", + "installdate": "1699646093", + "arch": "noarch" + }, + "bash-completion": { + "epoch": "1", + "version": "2.11", + "release": "2.amzn2023.0.2", + "installdate": "1699646093", + "arch": "noarch" + }, + "sssd-kcm": { + "epoch": "0", + "version": "2.5.0", + "release": "1.amzn2023.0.3", + "installdate": "1699646093", + "arch": "x86_64" + }, + "zram-generator-defaults": { + "epoch": "0", + "version": "1.1.2", + "release": "67.amzn2023", + "installdate": "1699646093", + "arch": "noarch" + }, + "amazon-linux-sb-keys": { + "epoch": "0", + "version": "2023.1", + "release": "1.amzn2023.0.3", + "installdate": "1699646093", + "arch": "noarch" + }, + "rng-tools": { + "epoch": "0", + "version": "6.14", + "release": "1.git.56626083.amzn2023.0.3", + "installdate": "1699646094", + "arch": "x86_64" + }, + "audit": { + "epoch": "0", + "version": "3.0.6", + "release": "1.amzn2023.0.2", + "installdate": "1699646094", + "arch": "x86_64" + }, + "sudo": { + "epoch": "0", + "version": "1.9.13", + "release": "1.p2.amzn2023.0.4", + "installdate": "1699646094", + "arch": "x86_64" + }, + "wget": { + "epoch": "0", + "version": "1.21.3", + "release": "1.amzn2023.0.3", + "installdate": "1699646094", + "arch": "x86_64" + }, + "openssh-clients": { + "epoch": "0", + "version": "8.7p1", + "release": "8.amzn2023.0.8", + "installdate": "1699646094", + "arch": "x86_64" + }, + "irqbalance": { + "epoch": "2", + "version": "1.9.0", + "release": "1.amzn2023.0.3", + "installdate": "1699646094", + "arch": "x86_64" + }, + "dracut-config-generic": { + "epoch": "0", + "version": "055", + "release": "6.amzn2023.0.8", + "installdate": "1699646094", + "arch": "x86_64" + }, + "amazon-ssm-agent": { + "epoch": "0", + "version": "3.2.1705.0", + "release": "1.amzn2023", + "installdate": "1699646095", + "arch": "x86_64" + }, + "at": { + "epoch": "0", + "version": "3.1.23", + "release": "6.amzn2023.0.2", + "installdate": "1699646095", + "arch": "x86_64" + }, + "update-motd": { + "epoch": "0", + "version": "2.1", + "release": "1.amzn2023.0.1", + "installdate": "1699646095", + "arch": "noarch" + }, + "pciutils": { + "epoch": "0", + "version": "3.7.0", + "release": "3.amzn2023.0.2", + "installdate": "1699646095", + "arch": "x86_64" + }, + "tcpdump": { + "epoch": "14", + "version": "4.99.1", + "release": "1.amzn2023.0.2", + "installdate": "1699646095", + "arch": "x86_64" + }, + "parted": { + "epoch": "0", + "version": "3.4", + "release": "2.amzn2023.0.2", + "installdate": "1699646095", + "arch": "x86_64" + }, + "tcsh": { + "epoch": "0", + "version": "6.24.07", + "release": "1.amzn2023", + "installdate": "1699646095", + "arch": "x86_64" + }, + "screen": { + "epoch": "0", + "version": "4.8.0", + "release": "5.amzn2023.0.3", + "installdate": "1699646095", + "arch": "x86_64" + }, + "sysstat": { + "epoch": "0", + "version": "12.5.6", + "release": "1.amzn2023.0.3", + "installdate": "1699646095", + "arch": "x86_64" + }, + "vim-minimal": { + "epoch": "2", + "version": "9.0.2081", + "release": "1.amzn2023", + "installdate": "1699646095", + "arch": "x86_64" + }, + "ed": { + "epoch": "0", + "version": "1.14.2", + "release": "10.amzn2023.0.2", + "installdate": "1699646095", + "arch": "x86_64" + }, + "ethtool": { + "epoch": "2", + "version": "5.15", + "release": "1.amzn2023.0.2", + "installdate": "1699646095", + "arch": "x86_64" + }, + "man-pages": { + "epoch": "0", + "version": "5.10", + "release": "2.amzn2023.0.3", + "installdate": "1699646096", + "arch": "noarch" + }, + "nano": { + "epoch": "0", + "version": "5.8", + "release": "3.amzn2023.0.3", + "installdate": "1699646096", + "arch": "x86_64" + }, + "bzip2": { + "epoch": "0", + "version": "1.0.8", + "release": "6.amzn2023.0.2", + "installdate": "1699646096", + "arch": "x86_64" + }, + "glibc-locale-source": { + "epoch": "0", + "version": "2.34", + "release": "52.amzn2023.0.7", + "installdate": "1699646096", + "arch": "x86_64" + }, + "libaio": { + "epoch": "0", + "version": "0.3.111", + "release": "11.amzn2023.0.2", + "installdate": "1699646096", + "arch": "x86_64" + }, + "words": { + "epoch": "0", + "version": "3.0", + "release": "37.amzn2023.0.2", + "installdate": "1699646096", + "arch": "noarch" + }, + "rootfiles": { + "epoch": "0", + "version": "8.1", + "release": "29.amzn2023.0.2", + "installdate": "1699646096", + "arch": "noarch" + }, + "kbd": { + "epoch": "0", + "version": "2.4.0", + "release": "2.amzn2023.0.3", + "installdate": "1699646044", + "arch": "x86_64" + }, + "tzdata": { + "epoch": "0", + "version": "2023c", + "release": "1.amzn2023.0.1", + "installdate": "1699646037", + "arch": "noarch" + }, + "which": { + "epoch": "0", + "version": "2.21", + "release": "26.amzn2023.0.2", + "installdate": "1699646044", + "arch": "x86_64" + }, + "openblas-srpm-macros": { + "epoch": "0", + "version": "2", + "release": "9.amzn2023.0.2", + "installdate": "1699646037", + "arch": "noarch" + }, + "coreutils": { + "epoch": "0", + "version": "8.32", + "release": "30.amzn2023.0.3", + "installdate": "1699646044", + "arch": "x86_64" + }, + "ncurses-base": { + "epoch": "0", + "version": "6.2", + "release": "4.20200222.amzn2023.0.4", + "installdate": "1699646037", + "arch": "noarch" + }, + "openssl-libs": { + "epoch": "1", + "version": "3.0.8", + "release": "1.amzn2023.0.9", + "installdate": "1699646045", + "arch": "x86_64" + }, + "system-release": { + "epoch": "0", + "version": "2023.2.20231113", + "release": "1.amzn2023", + "installdate": "1699646037", + "arch": "noarch" + }, + "systemd": { + "epoch": "0", + "version": "252.16", + "release": "1.amzn2023.0.1", + "installdate": "1699646045", + "arch": "x86_64" + }, + "bash": { + "epoch": "0", + "version": "5.2.15", + "release": "1.amzn2023.0.2", + "installdate": "1699646037", + "arch": "x86_64" + }, + "os-prober": { + "epoch": "0", + "version": "1.77", + "release": "7.amzn2023.0.3", + "installdate": "1699646046", + "arch": "x86_64" + }, + "glibc": { + "epoch": "0", + "version": "2.34", + "release": "52.amzn2023.0.7", + "installdate": "1699646039", + "arch": "x86_64" + }, + "policycoreutils": { + "epoch": "0", + "version": "3.4", + "release": "6.amzn2023.0.2", + "installdate": "1699646046", + "arch": "x86_64" + }, + "libuuid": { + "epoch": "0", + "version": "2.37.4", + "release": "1.amzn2023.0.3", + "installdate": "1699646040", + "arch": "x86_64" + }, + "selinux-policy-targeted": { + "epoch": "0", + "version": "37.22", + "release": "1.amzn2023.0.1", + "installdate": "1699646047", + "arch": "noarch" + }, + "bzip2-libs": { + "epoch": "0", + "version": "1.0.8", + "release": "6.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-dateutil": { + "epoch": "1", + "version": "2.8.1", + "release": "3.amzn2023.0.2", + "installdate": "1699646059", + "arch": "noarch" + }, + "elfutils-libelf": { + "epoch": "0", + "version": "0.188", + "release": "3.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "openssl": { + "epoch": "1", + "version": "3.0.8", + "release": "1.amzn2023.0.9", + "installdate": "1699646059", + "arch": "x86_64" + }, + "readline": { + "epoch": "0", + "version": "8.1", + "release": "2.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "openldap": { + "epoch": "0", + "version": "2.4.57", + "release": "6.amzn2023.0.6", + "installdate": "1699646059", + "arch": "x86_64" + }, + "audit-libs": { + "epoch": "0", + "version": "3.0.6", + "release": "1.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "libnfsidmap": { + "epoch": "1", + "version": "2.5.4", + "release": "2.rc3.amzn2023.0.3", + "installdate": "1699646059", + "arch": "x86_64" + }, + "libacl": { + "epoch": "0", + "version": "2.3.1", + "release": "2.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "quota": { + "epoch": "1", + "version": "4.06", + "release": "4.amzn2023.0.2", + "installdate": "1699646060", + "arch": "x86_64" + }, + "gmp": { + "epoch": "1", + "version": "6.2.1", + "release": "2.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-configobj": { + "epoch": "0", + "version": "5.0.6", + "release": "23.amzn2023.0.3", + "installdate": "1699646060", + "arch": "noarch" + }, + "json-c": { + "epoch": "0", + "version": "0.14", + "release": "8.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-hawkey": { + "epoch": "0", + "version": "0.67.0", + "release": "1.amzn2023.0.5", + "installdate": "1699646060", + "arch": "x86_64" + }, + "expat": { + "epoch": "0", + "version": "2.5.0", + "release": "1.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "logrotate": { + "epoch": "0", + "version": "3.20.1", + "release": "2.amzn2023.0.3", + "installdate": "1699646060", + "arch": "x86_64" + }, + "nettle": { + "epoch": "0", + "version": "3.8", + "release": "1.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "rpm-sign-libs": { + "epoch": "0", + "version": "4.16.1.3", + "release": "12.amzn2023.0.6", + "installdate": "1699646060", + "arch": "x86_64" + }, + "boost-system": { + "epoch": "0", + "version": "1.75.0", + "release": "4.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "libsss_certmap": { + "epoch": "0", + "version": "2.5.0", + "release": "1.amzn2023.0.3", + "installdate": "1699646060", + "arch": "x86_64" + }, + "lz4-libs": { + "epoch": "0", + "version": "1.9.4", + "release": "1.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "e2fsprogs": { + "epoch": "0", + "version": "1.46.5", + "release": "2.amzn2023.0.2", + "installdate": "1699646060", + "arch": "x86_64" + }, + "jansson": { + "epoch": "0", + "version": "2.14", + "release": "0.amzn2023", + "installdate": "1699646040", + "arch": "x86_64" + }, + "sssd-client": { + "epoch": "0", + "version": "2.5.0", + "release": "1.amzn2023.0.3", + "installdate": "1699646060", + "arch": "x86_64" + }, + "libtextstyle": { + "epoch": "0", + "version": "0.21", + "release": "4.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "lua-srpm-macros": { + "epoch": "0", + "version": "1", + "release": "4.amzn2023.0.2", + "installdate": "1699646061", + "arch": "noarch" + }, + "libmnl": { + "epoch": "0", + "version": "1.0.4", + "release": "13.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "amazon-rpm-config": { + "epoch": "0", + "version": "228", + "release": "3.amzn2023.0.2", + "installdate": "1699646061", + "arch": "noarch" + }, + "fuse-libs": { + "epoch": "0", + "version": "2.9.9", + "release": "13.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "chrony": { + "epoch": "0", + "version": "4.3", + "release": "1.amzn2023.0.4", + "installdate": "1699646061", + "arch": "x86_64" + }, + "libyaml": { + "epoch": "0", + "version": "0.2.5", + "release": "5.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-gpg": { + "epoch": "0", + "version": "1.15.1", + "release": "6.amzn2023.0.3", + "installdate": "1699646061", + "arch": "x86_64" + }, + "ncurses": { + "epoch": "0", + "version": "6.2", + "release": "4.20200222.amzn2023.0.4", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-pyyaml": { + "epoch": "0", + "version": "5.4.1", + "release": "2.amzn2023.0.2", + "installdate": "1699646061", + "arch": "x86_64" + }, + "perl-File-Path": { + "epoch": "0", + "version": "2.18", + "release": "2.amzn2023.0.2", + "installdate": "1699646040", + "arch": "noarch" + }, + "dnf": { + "epoch": "0", + "version": "4.12.0", + "release": "2.amzn2023.0.4", + "installdate": "1699646061", + "arch": "noarch" + }, + "perl-POSIX": { + "epoch": "0", + "version": "1.94", + "release": "477.amzn2023.0.5", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-setools": { + "epoch": "0", + "version": "4.4.1", + "release": "1.amzn2023", + "installdate": "1699646061", + "arch": "x86_64" + }, + "perl-File-Temp": { + "epoch": "1", + "version": "0.231.100", + "release": "2.amzn2023.0.2", + "installdate": "1699646040", + "arch": "noarch" + }, + "python3-wcwidth": { + "epoch": "0", + "version": "0.2.5", + "release": "3.amzn2023.0.2", + "installdate": "1699646072", + "arch": "noarch" + }, + "perl-Pod-Simple": { + "epoch": "1", + "version": "3.42", + "release": "2.amzn2023.0.2", + "installdate": "1699646040", + "arch": "noarch" + }, + "python3-attrs": { + "epoch": "0", + "version": "20.3.0", + "release": "2.amzn2023.0.2", + "installdate": "1699646072", + "arch": "noarch" + }, + "perl-File-stat": { + "epoch": "0", + "version": "1.09", + "release": "477.amzn2023.0.5", + "installdate": "1699646040", + "arch": "noarch" + }, + "python3-pyserial": { + "epoch": "0", + "version": "3.4", + "release": "10.amzn2023.0.2", + "installdate": "1699646072", + "arch": "noarch" + }, + "perl-Fcntl": { + "epoch": "0", + "version": "1.13", + "release": "477.amzn2023.0.5", + "installdate": "1699646040", + "arch": "x86_64" + }, + "python3-pysocks": { + "epoch": "0", + "version": "1.7.1", + "release": "8.amzn2023.0.2", + "installdate": "1699646072", + "arch": "noarch" + }, + "perl-Pod-Usage": { + "epoch": "4", + "version": "2.01", + "release": "2.amzn2023.0.2", + "installdate": "1699646040", + "arch": "noarch" + }, + "python3-daemon": { + "epoch": "0", + "version": "2.3.0", + "release": "4.amzn2023.0.2", + "installdate": "1699646072", + "arch": "noarch" + }, + "perl-constant": { + "epoch": "0", + "version": "1.33", + "release": "459.amzn2023.0.2", + "installdate": "1699646040", + "arch": "noarch" + }, + "python3-pycparser": { + "epoch": "0", + "version": "2.20", + "release": "3.amzn2023.0.2", + "installdate": "1699646072", + "arch": "noarch" + }, + "perl-parent": { + "epoch": "1", + "version": "0.238", + "release": "458.amzn2023.0.2", + "installdate": "1699646040", + "arch": "noarch" + }, + "cloud-init": { + "epoch": "0", + "version": "22.2.2", + "release": "1.amzn2023.1.12", + "installdate": "1699646073", + "arch": "noarch" + }, + "perl-DynaLoader": { + "epoch": "0", + "version": "1.47", + "release": "477.amzn2023.0.5", + "installdate": "1699646040", + "arch": "x86_64" + }, + "hunspell-filesystem": { + "epoch": "0", + "version": "1.7.0", + "release": "9.amzn2023.0.3", + "installdate": "1699646073", + "arch": "x86_64" + }, + "perl-Encode": { + "epoch": "4", + "version": "3.15", + "release": "462.amzn2023.0.2", + "installdate": "1699646040", + "arch": "x86_64" + }, + "hunspell": { + "epoch": "0", + "version": "1.7.0", + "release": "9.amzn2023.0.3", + "installdate": "1699646073", + "arch": "x86_64" + }, + "libpcap": { + "epoch": "14", + "version": "1.10.1", + "release": "1.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "awscli-2": { + "epoch": "0", + "version": "2.9.19", + "release": "1.amzn2023.0.1", + "installdate": "1699646076", + "arch": "noarch" + }, + "boost-thread": { + "epoch": "0", + "version": "1.75.0", + "release": "4.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "yum": { + "epoch": "0", + "version": "4.12.0", + "release": "2.amzn2023.0.4", + "installdate": "1699646093", + "arch": "noarch" + }, + "libmetalink": { + "epoch": "0", + "version": "0.1.3", + "release": "14.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "systemtap-runtime": { + "epoch": "0", + "version": "4.8", + "release": "3.amzn2023.0.5", + "installdate": "1699646093", + "arch": "x86_64" + }, + "libpsl": { + "epoch": "0", + "version": "0.21.1", + "release": "3.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "bind-utils": { + "epoch": "32", + "version": "9.16.42", + "release": "1.amzn2023.0.5", + "installdate": "1699646093", + "arch": "x86_64" + }, + "libss": { + "epoch": "0", + "version": "1.46.5", + "release": "2.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "ec2-hibinit-agent": { + "epoch": "0", + "version": "1.0.4", + "release": "0.amzn2023.0.2", + "installdate": "1699646094", + "arch": "noarch" + }, + "libconfig": { + "epoch": "0", + "version": "1.7.2", + "release": "7.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "cyrus-sasl-plain": { + "epoch": "0", + "version": "2.1.27", + "release": "18.amzn2023.0.3", + "installdate": "1699646094", + "arch": "x86_64" + }, + "cpio": { + "epoch": "0", + "version": "2.13", + "release": "13.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "lsof": { + "epoch": "0", + "version": "4.94.0", + "release": "1.amzn2023.0.2", + "installdate": "1699646094", + "arch": "x86_64" + }, + "libsigsegv": { + "epoch": "0", + "version": "2.13", + "release": "2.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "dracut-config-ec2": { + "epoch": "0", + "version": "3.0", + "release": "4.amzn2023.0.2", + "installdate": "1699646094", + "arch": "noarch" + }, + "newt": { + "epoch": "0", + "version": "0.52.21", + "release": "9.amzn2023.0.3", + "installdate": "1699646041", + "arch": "x86_64" + }, + "psacct": { + "epoch": "0", + "version": "6.6.4", + "release": "9.amzn2023.0.2", + "installdate": "1699646095", + "arch": "x86_64" + }, + "libini_config": { + "epoch": "0", + "version": "1.3.1", + "release": "47.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "rsync": { + "epoch": "0", + "version": "3.2.6", + "release": "1.amzn2023.0.3", + "installdate": "1699646095", + "arch": "x86_64" + }, + "gnupg2-minimal": { + "epoch": "0", + "version": "2.3.7", + "release": "1.amzn2023.0.4", + "installdate": "1699646041", + "arch": "x86_64" + }, + "man-db": { + "epoch": "0", + "version": "2.9.3", + "release": "3.amzn2023.0.3", + "installdate": "1699646095", + "arch": "x86_64" + }, + "psmisc": { + "epoch": "0", + "version": "23.4", + "release": "1.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "strace": { + "epoch": "0", + "version": "5.16", + "release": "2.amzn2023.0.3", + "installdate": "1699646095", + "arch": "x86_64" + }, + "inih": { + "epoch": "0", + "version": "49", + "release": "3.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "tar": { + "epoch": "2", + "version": "1.34", + "release": "1.amzn2023.0.3", + "installdate": "1699646095", + "arch": "x86_64" + }, + "libsss_nss_idmap": { + "epoch": "0", + "version": "2.5.0", + "release": "1.amzn2023.0.3", + "installdate": "1699646041", + "arch": "x86_64" + }, + "grub2-pc-modules": { + "epoch": "1", + "version": "2.06", + "release": "61.amzn2023.0.9", + "installdate": "1699646095", + "arch": "noarch" + }, + "libcbor": { + "epoch": "0", + "version": "0.7.0", + "release": "3.amzn2023.0.2", + "installdate": "1699646041", + "arch": "x86_64" + }, + "bc": { + "epoch": "0", + "version": "1.07.1", + "release": "14.amzn2023.0.2", + "installdate": "1699646096", + "arch": "x86_64" + }, + "userspace-rcu": { + "epoch": "0", + "version": "0.12.1", + "release": "3.amzn2023.0.4", + "installdate": "1699646041", + "arch": "x86_64" + }, + "dosfstools": { + "epoch": "0", + "version": "4.2", + "release": "1.amzn2023.0.2", + "installdate": "1699646096", + "arch": "x86_64" + }, + "ghc-srpm-macros": { + "epoch": "0", + "version": "1.5.0", + "release": "4.amzn2023.0.2", + "installdate": "1699646041", + "arch": "noarch" + }, + "sysctl-defaults": { + "epoch": "0", + "version": "1.0", + "release": "3.amzn2023", + "installdate": "1699646096", + "arch": "noarch" + }, + "perl-srpm-macros": { + "epoch": "0", + "version": "1", + "release": "39.amzn2023.0.2", + "installdate": "1699646041", + "arch": "noarch" + }, + "pkgconf-m4": { + "epoch": "0", + "version": "1.8.0", + "release": "4.amzn2023.0.2", + "installdate": "1699646042", + "arch": "noarch" + }, + "pcre2": { + "epoch": "0", + "version": "10.40", + "release": "1.amzn2023.0.3", + "installdate": "1699646042", + "arch": "x86_64" + }, + "findutils": { + "epoch": "1", + "version": "4.8.0", + "release": "2.amzn2023.0.2", + "installdate": "1699646042", + "arch": "x86_64" + }, + "libutempter": { + "epoch": "0", + "version": "1.2.1", + "release": "4.amzn2023.0.2", + "installdate": "1699646042", + "arch": "x86_64" + }, + "dbus": { + "epoch": "1", + "version": "1.12.28", + "release": "1.amzn2023.0.1", + "installdate": "1699646043", + "arch": "x86_64" + }, + "python3": { + "epoch": "0", + "version": "3.9.16", + "release": "1.amzn2023.0.6", + "installdate": "1699646043", + "arch": "x86_64" + }, + "libkcapi-hmaccalc": { + "epoch": "0", + "version": "1.4.0", + "release": "105.amzn2023.0.1", + "installdate": "1699646043", + "arch": "x86_64" + }, + "crypto-policies-scripts": { + "epoch": "0", + "version": "20220428", + "release": "1.gitdfb10ea.amzn2023.0.2", + "installdate": "1699646043", + "arch": "noarch" + }, + "gzip": { + "epoch": "0", + "version": "1.12", + "release": "1.amzn2023.0.1", + "installdate": "1699646043", + "arch": "x86_64" + }, + "rpm": { + "epoch": "0", + "version": "4.16.1.3", + "release": "12.amzn2023.0.6", + "installdate": "1699646043", + "arch": "x86_64" + }, + "systemd-networkd": { + "epoch": "0", + "version": "252.16", + "release": "1.amzn2023.0.1", + "installdate": "1699646044", + "arch": "x86_64" + }, + "gpg-pubkey": { + "epoch": "0", + "version": "d832c631", + "release": "6515c85e", + "installdate": "1699646126", + "arch": "(none)" + }, + "chef": { + "epoch": "0", + "version": "18.3.0", + "release": "1.el7", + "installdate": "1701829270", + "arch": "x86_64" + }, + "libxcrypt-compat": { + "epoch": "0", + "version": "4.4.33", + "release": "7.amzn2023", + "installdate": "1701829392", + "arch": "x86_64" + }, + "dmidecode": { + "epoch": "1", + "version": "3.5", + "release": "1.amzn2023.0.2", + "installdate": "1701829908", + "arch": "x86_64" + } + }, + "platform": "amazon", + "platform_family": "amazon", + "platform_version": "2023", + "root_group": "root", + "shard_seed": 86878930, + "shells": [ + "/bin/sh", + "/bin/bash", + "/usr/bin/sh", + "/usr/bin/bash", + "/bin/csh", + "/bin/tcsh", + "/usr/bin/csh", + "/usr/bin/tcsh" + ], + "time": { + "timezone": "GMT" + }, + "uptime": "30 days 15 hours 07 minutes 30 seconds", + "uptime_seconds": 2646450, + "virtualization": { + "systems": {} + } +} \ No newline at end of file diff --git a/lib/fauxhai/platforms/centos-stream/8.json b/lib/fauxhai/platforms/centos-stream/8.json new file mode 100644 index 00000000..3b4110ed --- /dev/null +++ b/lib/fauxhai/platforms/centos-stream/8.json @@ -0,0 +1,5787 @@ +{ + "block_device": { + "sda": { + "size": "134217728", + "removable": "0", + "model": "VBOX HARDDISK", + "rev": "1.0", + "state": "running", + "timeout": "30", + "vendor": "ATA", + "queue_depth": "32", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + } + }, + "chef_packages": { + "chef": { + "version": "18.1.0", + "chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.1.0/lib", + "chef_effortless": null + }, + "ohai": { + "version": "18.0.26", + "ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.0.26/lib/ohai" + } + }, + "command": { + "ps": "ps -ef" + }, + "counters": { + "network": { + "interfaces": { + "lo": { + "tx": { + "queuelen": "1", + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "carrier": 0, + "collisions": 0 + }, + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0 + } + }, + "eth0": { + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "frame": 0, + "compressed": 0, + "multicast": 0 + }, + "tx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "collisions": 0, + "carrier": 0, + "compressed": 0 + } + } + } + } + }, + "cpu": { + "real": 1, + "total": 1, + "cores": 1 + }, + "current_user": "fauxhai", + "dmi": { + "dmidecode_version": "3.3", + "smbios_version": "2.5", + "structures": { + "count": "10", + "size": "450" + }, + "table_location": "0x000E1000", + "bios": { + "all_records": [ + { + "record_id": "0x0000", + "size": "0", + "application_identifier": "BIOS Information", + "Vendor": "innotek GmbH", + "Version": "VirtualBox", + "Release Date": "12/01/2006", + "Address": "0xE0000", + "Runtime Size": "128 kB", + "ROM Size": "128 kB", + "Characteristics": { + "ACPI is supported": null + } + } + ], + "vendor": "innotek GmbH", + "version": "VirtualBox", + "release_date": "12/01/2006", + "address": "0xE0000", + "runtime_size": "128 kB", + "rom_size": "128 kB" + }, + "system": { + "all_records": [ + { + "record_id": "0x0001", + "size": "1", + "application_identifier": "System Information", + "Manufacturer": "innotek GmbH", + "Product Name": "VirtualBox", + "Version": "1.2", + "Serial Number": "0", + "UUID": "ba2dcf84-dfa6-b74d-91e0-0c4890823590", + "Wake-up Type": "Power Switch", + "SKU Number": "Not Specified", + "Family": "Virtual Machine" + } + ], + "manufacturer": "innotek GmbH", + "product_name": "VirtualBox", + "version": "1.2", + "serial_number": "0", + "uuid": "ba2dcf84-dfa6-b74d-91e0-0c4890823590", + "wake_up_type": "Power Switch", + "sku_number": "Not Specified", + "family": "Virtual Machine" + }, + "base_board": { + "all_records": [ + { + "record_id": "0x0008", + "size": "2", + "application_identifier": "Base Board Information", + "Manufacturer": "Oracle Corporation", + "Product Name": "VirtualBox", + "Version": "1.2", + "Serial Number": "0", + "Asset Tag": "Not Specified", + "Features": { + "Board is a hosting board": null + }, + "Location In Chassis": "Not Specified", + "Chassis Handle": "0x0003", + "Type": "Motherboard", + "Contained Object Handles": "0" + } + ], + "manufacturer": "Oracle Corporation", + "product_name": "VirtualBox", + "version": "1.2", + "serial_number": "0", + "asset_tag": "Not Specified", + "location_in_chassis": "Not Specified", + "chassis_handle": "0x0003", + "type": "Motherboard", + "contained_object_handles": "0" + }, + "chassis": { + "all_records": [ + { + "record_id": "0x0003", + "size": "3", + "application_identifier": "Chassis Information", + "Manufacturer": "Oracle Corporation", + "Type": "Other", + "Lock": "Not Present", + "Version": "Not Specified", + "Serial Number": "Not Specified", + "Asset Tag": "Not Specified", + "Boot-up State": "Safe", + "Power Supply State": "Safe", + "Thermal State": "Safe", + "Security Status": "None" + } + ], + "manufacturer": "Oracle Corporation", + "type": "Other", + "lock": "Not Present", + "version": "Not Specified", + "serial_number": "Not Specified", + "asset_tag": "Not Specified", + "boot_up_state": "Safe", + "power_supply_state": "Safe", + "thermal_state": "Safe", + "security_status": "None" + }, + "oem_strings": { + "all_records": [ + { + "record_id": "0x0002", + "size": "11", + "application_identifier": "OEM Strings", + "String 1": "vboxVer_6.1.42", + "String 2": "vboxRev_155177" + } + ], + "string_1": "vboxVer_6.1.42", + "string_2": "vboxRev_155177" + } + }, + "domain": "local", + "filesystem": { + "by_device": { + "devtmpfs": { + "kb_size": "1892916", + "kb_used": "0", + "kb_available": "1892916", + "percent_used": "0%", + "total_inodes": "473229", + "inodes_used": "326", + "inodes_available": "472903", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=1892916k", + "nr_inodes=473229", + "mode=755" + ], + "mounts": [ + "/dev" + ] + }, + "tmpfs": { + "kb_size": "382136", + "kb_used": "0", + "kb_available": "382136", + "percent_used": "0%", + "total_inodes": "477673", + "inodes_used": "5", + "inodes_available": "477668", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=382136k", + "mode=700", + "uid=1000", + "gid=1000" + ], + "mounts": [ + "/dev/shm", + "/run", + "/sys/fs/cgroup", + "/run/user/1000" + ] + }, + "/dev/sda2": { + "kb_size": "64837704", + "kb_used": "1873192", + "kb_available": "62964512", + "percent_used": "3%", + "total_inodes": "32434688", + "inodes_used": "43242", + "inodes_available": "32391446", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "c7a12ab8-69a7-4fc3-8af2-9bca350a92cc", + "mounts": [ + "/" + ] + }, + "vagrant": { + "kb_size": "492054648", + "kb_used": "396776644", + "kb_available": "95278004", + "percent_used": "81%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "mounts": [ + "/vagrant" + ] + }, + "sysfs": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys" + ] + }, + "proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/proc" + ] + }, + "securityfs": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/security" + ] + }, + "devpts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "mounts": [ + "/dev/pts" + ] + }, + "cgroup": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "rdma" + ], + "mounts": [ + "/sys/fs/cgroup/systemd", + "/sys/fs/cgroup/cpu,cpuacct", + "/sys/fs/cgroup/net_cls,net_prio", + "/sys/fs/cgroup/blkio", + "/sys/fs/cgroup/devices", + "/sys/fs/cgroup/hugetlb", + "/sys/fs/cgroup/perf_event", + "/sys/fs/cgroup/cpuset", + "/sys/fs/cgroup/freezer", + "/sys/fs/cgroup/pids", + "/sys/fs/cgroup/memory", + "/sys/fs/cgroup/rdma" + ] + }, + "pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/fs/pstore" + ] + }, + "bpf": { + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "mounts": [ + "/sys/fs/bpf" + ] + }, + "none": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/kernel/tracing" + ] + }, + "configfs": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "relatime" + ], + "mounts": [ + "/sys/kernel/config" + ] + }, + "selinuxfs": { + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "relatime" + ], + "mounts": [ + "/sys/fs/selinux" + ] + }, + "systemd-1": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=31", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=13755" + ], + "mounts": [ + "/proc/sys/fs/binfmt_misc" + ] + }, + "hugetlbfs": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ], + "mounts": [ + "/dev/hugepages" + ] + }, + "mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ], + "mounts": [ + "/dev/mqueue" + ] + }, + "debugfs": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/kernel/debug" + ] + }, + "sunrpc": { + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ], + "mounts": [ + "/var/lib/nfs/rpc_pipefs" + ] + }, + "/dev/sda": { + "mounts": [ + + ] + }, + "/dev/sda1": { + "fs_type": "swap", + "uuid": "37d4a022-8ce6-48a4-9adc-a7c490916194", + "mounts": [ + + ] + } + }, + "by_mountpoint": { + "/dev": { + "kb_size": "1892916", + "kb_used": "0", + "kb_available": "1892916", + "percent_used": "0%", + "total_inodes": "473229", + "inodes_used": "326", + "inodes_available": "472903", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=1892916k", + "nr_inodes=473229", + "mode=755" + ], + "devices": [ + "devtmpfs" + ] + }, + "/dev/shm": { + "kb_size": "1910692", + "kb_used": "0", + "kb_available": "1910692", + "percent_used": "0%", + "total_inodes": "477673", + "inodes_used": "1", + "inodes_available": "477672", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel" + ], + "devices": [ + "tmpfs" + ] + }, + "/run": { + "kb_size": "1910692", + "kb_used": "16772", + "kb_available": "1893920", + "percent_used": "1%", + "total_inodes": "477673", + "inodes_used": "446", + "inodes_available": "477227", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "mode=755" + ], + "devices": [ + "tmpfs" + ] + }, + "/sys/fs/cgroup": { + "kb_size": "1910692", + "kb_used": "0", + "kb_available": "1910692", + "percent_used": "0%", + "total_inodes": "477673", + "inodes_used": "17", + "inodes_available": "477656", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "seclabel", + "mode=755" + ], + "devices": [ + "tmpfs" + ] + }, + "/": { + "kb_size": "64837704", + "kb_used": "1873192", + "kb_available": "62964512", + "percent_used": "3%", + "total_inodes": "32434688", + "inodes_used": "43242", + "inodes_available": "32391446", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "c7a12ab8-69a7-4fc3-8af2-9bca350a92cc", + "devices": [ + "/dev/sda2" + ] + }, + "/vagrant": { + "kb_size": "492054648", + "kb_used": "396776644", + "kb_available": "95278004", + "percent_used": "81%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "devices": [ + "vagrant" + ] + }, + "/run/user/1000": { + "kb_size": "382136", + "kb_used": "0", + "kb_available": "382136", + "percent_used": "0%", + "total_inodes": "477673", + "inodes_used": "5", + "inodes_available": "477668", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=382136k", + "mode=700", + "uid=1000", + "gid=1000" + ], + "devices": [ + "tmpfs" + ] + }, + "/sys": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "sysfs" + ] + }, + "/proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "proc" + ] + }, + "/sys/kernel/security": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "securityfs" + ] + }, + "/dev/pts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "devices": [ + "devpts" + ] + }, + "/sys/fs/cgroup/systemd": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "xattr", + "release_agent=/usr/lib/systemd/systemd-cgroups-agent", + "name=systemd" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "pstore" + ] + }, + "/sys/fs/bpf": { + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "devices": [ + "bpf" + ] + }, + "/sys/fs/cgroup/cpu,cpuacct": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "cpu", + "cpuacct" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/net_cls,net_prio": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "net_cls", + "net_prio" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/blkio": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "blkio" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/devices": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "devices" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/hugetlb": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "hugetlb" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/perf_event": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "perf_event" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/cpuset": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "cpuset" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/freezer": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "freezer" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/pids": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "pids" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/memory": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "memory" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/rdma": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "rdma" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/kernel/tracing": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ], + "devices": [ + "none" + ] + }, + "/sys/kernel/config": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "relatime" + ], + "devices": [ + "configfs" + ] + }, + "/sys/fs/selinux": { + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "relatime" + ], + "devices": [ + "selinuxfs" + ] + }, + "/proc/sys/fs/binfmt_misc": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=31", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=13755" + ], + "devices": [ + "systemd-1" + ] + }, + "/dev/hugepages": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ], + "devices": [ + "hugetlbfs" + ] + }, + "/dev/mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ], + "devices": [ + "mqueue" + ] + }, + "/sys/kernel/debug": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ], + "devices": [ + "debugfs" + ] + }, + "/var/lib/nfs/rpc_pipefs": { + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ], + "devices": [ + "sunrpc" + ] + } + }, + "by_pair": { + "devtmpfs,/dev": { + "device": "devtmpfs", + "kb_size": "1892916", + "kb_used": "0", + "kb_available": "1892916", + "percent_used": "0%", + "mount": "/dev", + "total_inodes": "473229", + "inodes_used": "326", + "inodes_available": "472903", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=1892916k", + "nr_inodes=473229", + "mode=755" + ] + }, + "tmpfs,/dev/shm": { + "device": "tmpfs", + "kb_size": "1910692", + "kb_used": "0", + "kb_available": "1910692", + "percent_used": "0%", + "mount": "/dev/shm", + "total_inodes": "477673", + "inodes_used": "1", + "inodes_available": "477672", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel" + ] + }, + "tmpfs,/run": { + "device": "tmpfs", + "kb_size": "1910692", + "kb_used": "16772", + "kb_available": "1893920", + "percent_used": "1%", + "mount": "/run", + "total_inodes": "477673", + "inodes_used": "446", + "inodes_available": "477227", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "mode=755" + ] + }, + "tmpfs,/sys/fs/cgroup": { + "device": "tmpfs", + "kb_size": "1910692", + "kb_used": "0", + "kb_available": "1910692", + "percent_used": "0%", + "mount": "/sys/fs/cgroup", + "total_inodes": "477673", + "inodes_used": "17", + "inodes_available": "477656", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "seclabel", + "mode=755" + ] + }, + "/dev/sda2,/": { + "device": "/dev/sda2", + "kb_size": "64837704", + "kb_used": "1873192", + "kb_available": "62964512", + "percent_used": "3%", + "mount": "/", + "total_inodes": "32434688", + "inodes_used": "43242", + "inodes_available": "32391446", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "c7a12ab8-69a7-4fc3-8af2-9bca350a92cc" + }, + "vagrant,/vagrant": { + "device": "vagrant", + "kb_size": "492054648", + "kb_used": "396776644", + "kb_available": "95278004", + "percent_used": "81%", + "mount": "/vagrant", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ] + }, + "tmpfs,/run/user/1000": { + "device": "tmpfs", + "kb_size": "382136", + "kb_used": "0", + "kb_available": "382136", + "percent_used": "0%", + "mount": "/run/user/1000", + "total_inodes": "477673", + "inodes_used": "5", + "inodes_available": "477668", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=382136k", + "mode=700", + "uid=1000", + "gid=1000" + ] + }, + "sysfs,/sys": { + "device": "sysfs", + "mount": "/sys", + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "proc,/proc": { + "device": "proc", + "mount": "/proc", + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "securityfs,/sys/kernel/security": { + "device": "securityfs", + "mount": "/sys/kernel/security", + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "devpts,/dev/pts": { + "device": "devpts", + "mount": "/dev/pts", + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ] + }, + "cgroup,/sys/fs/cgroup/systemd": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/systemd", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "xattr", + "release_agent=/usr/lib/systemd/systemd-cgroups-agent", + "name=systemd" + ] + }, + "pstore,/sys/fs/pstore": { + "device": "pstore", + "mount": "/sys/fs/pstore", + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "bpf,/sys/fs/bpf": { + "device": "bpf", + "mount": "/sys/fs/bpf", + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ] + }, + "cgroup,/sys/fs/cgroup/cpu,cpuacct": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/cpu,cpuacct", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "cpu", + "cpuacct" + ] + }, + "cgroup,/sys/fs/cgroup/net_cls,net_prio": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/net_cls,net_prio", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "net_cls", + "net_prio" + ] + }, + "cgroup,/sys/fs/cgroup/blkio": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/blkio", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "blkio" + ] + }, + "cgroup,/sys/fs/cgroup/devices": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/devices", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "devices" + ] + }, + "cgroup,/sys/fs/cgroup/hugetlb": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/hugetlb", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "hugetlb" + ] + }, + "cgroup,/sys/fs/cgroup/perf_event": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/perf_event", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "perf_event" + ] + }, + "cgroup,/sys/fs/cgroup/cpuset": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/cpuset", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "cpuset" + ] + }, + "cgroup,/sys/fs/cgroup/freezer": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/freezer", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "freezer" + ] + }, + "cgroup,/sys/fs/cgroup/pids": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/pids", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "pids" + ] + }, + "cgroup,/sys/fs/cgroup/memory": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/memory", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "memory" + ] + }, + "cgroup,/sys/fs/cgroup/rdma": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/rdma", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "rdma" + ] + }, + "none,/sys/kernel/tracing": { + "device": "none", + "mount": "/sys/kernel/tracing", + "fs_type": "tracefs", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ] + }, + "configfs,/sys/kernel/config": { + "device": "configfs", + "mount": "/sys/kernel/config", + "fs_type": "configfs", + "mount_options": [ + "rw", + "relatime" + ] + }, + "selinuxfs,/sys/fs/selinux": { + "device": "selinuxfs", + "mount": "/sys/fs/selinux", + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "relatime" + ] + }, + "systemd-1,/proc/sys/fs/binfmt_misc": { + "device": "systemd-1", + "mount": "/proc/sys/fs/binfmt_misc", + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=31", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=13755" + ] + }, + "hugetlbfs,/dev/hugepages": { + "device": "hugetlbfs", + "mount": "/dev/hugepages", + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ] + }, + "mqueue,/dev/mqueue": { + "device": "mqueue", + "mount": "/dev/mqueue", + "fs_type": "mqueue", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ] + }, + "debugfs,/sys/kernel/debug": { + "device": "debugfs", + "mount": "/sys/kernel/debug", + "fs_type": "debugfs", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ] + }, + "sunrpc,/var/lib/nfs/rpc_pipefs": { + "device": "sunrpc", + "mount": "/var/lib/nfs/rpc_pipefs", + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ] + }, + "/dev/sda,": { + "device": "/dev/sda" + }, + "/dev/sda1,": { + "device": "/dev/sda1", + "fs_type": "swap", + "uuid": "37d4a022-8ce6-48a4-9adc-a7c490916194" + } + } + }, + "fips": { + "kernel": { + "enabled": false + } + }, + "fqdn": "fauxhai.local", + "hostname": "Fauxhai", + "idle": "30 days 15 hours 07 minutes 30 seconds", + "idletime_seconds": 2646450, + "init_package": "systemd", + "ipaddress": "10.0.0.2", + "kernel": { + "name": "Linux", + "release": "4.18.0-383.el8.x86_64", + "version": "#1 SMP Wed Apr 20 15:38:08 UTC 2022", + "machine": "x86_64", + "processor": "x86_64", + "os": "GNU/Linux", + "modules": { + "vboxsf": { + "size": "90112", + "refcount": "1", + "version": "6.1.32 r149290" + }, + "intel_rapl_msr": { + "size": "16384", + "refcount": "0" + }, + "intel_rapl_common": { + "size": "24576", + "refcount": "1" + }, + "intel_pmc_core_pltdrv": { + "size": "16384", + "refcount": "0" + }, + "intel_pmc_core": { + "size": "49152", + "refcount": "0" + }, + "crct10dif_pclmul": { + "size": "16384", + "refcount": "1" + }, + "crc32_pclmul": { + "size": "16384", + "refcount": "0" + }, + "ghash_clmulni_intel": { + "size": "16384", + "refcount": "0" + }, + "rapl": { + "size": "20480", + "refcount": "0" + }, + "i2c_piix4": { + "size": "24576", + "refcount": "0" + }, + "pcspkr": { + "size": "16384", + "refcount": "0" + }, + "joydev": { + "size": "24576", + "refcount": "0" + }, + "video": { + "size": "49152", + "refcount": "0" + }, + "sunrpc": { + "size": "565248", + "refcount": "1" + }, + "xfs": { + "size": "1556480", + "refcount": "1" + }, + "libcrc32c": { + "size": "16384", + "refcount": "1" + }, + "sd_mod": { + "size": "53248", + "refcount": "3" + }, + "t10_pi": { + "size": "16384", + "refcount": "1" + }, + "sg": { + "size": "40960", + "refcount": "0", + "version": "3.5.36" + }, + "ata_generic": { + "size": "16384", + "refcount": "0", + "version": "0.2.15" + }, + "vboxvideo": { + "size": "32768", + "refcount": "0" + }, + "drm_vram_helper": { + "size": "20480", + "refcount": "1" + }, + "drm_kms_helper": { + "size": "266240", + "refcount": "4" + }, + "syscopyarea": { + "size": "16384", + "refcount": "1" + }, + "sysfillrect": { + "size": "16384", + "refcount": "1" + }, + "sysimgblt": { + "size": "16384", + "refcount": "1" + }, + "fb_sys_fops": { + "size": "16384", + "refcount": "1" + }, + "drm_ttm_helper": { + "size": "16384", + "refcount": "2" + }, + "ttm": { + "size": "73728", + "refcount": "2" + }, + "ahci": { + "size": "40960", + "refcount": "2", + "version": "3.0" + }, + "libahci": { + "size": "40960", + "refcount": "1" + }, + "ata_piix": { + "size": "36864", + "refcount": "0", + "version": "2.13" + }, + "drm": { + "size": "585728", + "refcount": "6" + }, + "e1000": { + "size": "151552", + "refcount": "0", + "version": "7.3.21-k8-NAPI" + }, + "crc32c_intel": { + "size": "24576", + "refcount": "1" + }, + "vboxguest": { + "size": "385024", + "refcount": "2", + "version": "6.1.32 r149290" + }, + "serio_raw": { + "size": "16384", + "refcount": "0" + }, + "libata": { + "size": "262144", + "refcount": "4", + "version": "3.00" + } + } + }, + "keys": { + "ssh": { + "host_dsa_public": "ssh-dss AAAAB3NzaC1kc3MAAACBAJFo9BLAw4WKEs5hgipk5m423FzBsDXCZSMcC9ca/om/1VYzMqImixGe3uICDzNFUWxFoLJTQAOccyzo6MXZiQqwWJDLFi5qOSr6w2XcMyE+zd4wOyMoDiVM5fizmG8K3FzrqvGjwBcHcBdOQnavSijoj38DN25J9zhrid5BY4WlAAAAFQDxXrCyG52XCzn3FV4ej38wJBkomQAAAIBovGPJ4mP2P6BK8lHl0PPbktwQbWlpJ13oz6REJFDVcUi7vV26bX/BjQX+ohzZQzljdz1SpUbPc/8nuA4darYkVh91eBi307EN8IdxRHj2eBgp/ZG4yshIebG3WHrwJD/xUjjZ1MRfyDT1ermVi4LvjjPgWDxLZnPpMaR6S1nzgQAAAIEAj0Vd6DCWslvlsZ8+N53HWsqPi3gnx35JoLPz9Z2epkKIKqmEHav+93G3hdfztVa4I4t3phoPniQchYryF5+RNg8hqxKzjNtrIqUYCeuf2NJrksNsH7OZygPHZpqt4kTuwAGZxjxEGfAI0y8DhkU2ntp2LnzRnWH106BQBCmcXwo= fauxhai.local", + "host_rsa_public": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCtLCeqtqr/HbnORckw1ukdLhpfGoOPFi5/esKEokzTqq1gsgQ2V8emmyjfq1i6XXfRtSBxkdlHv/GWdP5wBTuE2G85MzBkVSQPvmwQN8lX/JMPEEtKXkeOo0o92/PiSmvY4eRsdF0mw40Uvg7jtE3f3fxj497kzh5fKtkrHnF4x9gXCbVdr3FqXJfggR5IJwAxToerbK7x/uRS+7YuZI9Pip3tt14nv9ezwXcuGb/tvjWOZINiFl8izVIFKi7sxfTX09p4NgamxRS7TD2Yd0jT8nEoF9UZTsgXcJ1kDSx7N7NxFfNfP6rCdOGRRz4gUhXtsUjG/XkxPeCwZ7A9VnOD fauxhai.local" + } + }, + "languages": { + "ruby": { + "platform": "x86_64-linux", + "version": "3.1.2", + "release_date": "2022-04-12", + "target": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_vendor": "pc", + "target_os": "linux", + "host": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux", + "host_vendor": "pc", + "bin_dir": "/usr/local/bin", + "ruby_bin": "/usr/local/bin/ruby", + "gem_bin": "/usr/local/bin/gem", + "gems_dir": "/usr/local/gems" + }, + "powershell": null + }, + "lsb": { + "id": "CentOSStream", + "description": "CentOS Stream release 8", + "release": "8", + "codename": "n/a" + }, + "macaddress": "11:11:11:11:11:11", + "machinename": "Fauxhai", + "memory": { + "total": "1048576kB" + }, + "network": { + "interfaces": { + "lo": { + "mtu": "65536", + "flags": [ + "LOOPBACK", + "UP", + "LOWER_UP" + ], + "encapsulation": "Loopback", + "addresses": { + "127.0.0.1": { + "family": "inet", + "prefixlen": "8", + "netmask": "255.0.0.0", + "scope": "Node", + "ip_scope": "LOOPBACK" + }, + "::1": { + "family": "inet6", + "prefixlen": "128", + "scope": "Node", + "tags": [ + + ], + "ip_scope": "LINK LOCAL LOOPBACK" + } + }, + "state": "unknown" + }, + "eth0": { + "type": "eth", + "number": "0", + "mtu": "1500", + "flags": [ + "BROADCAST", + "MULTICAST", + "UP", + "LOWER_UP" + ], + "encapsulation": "Ethernet", + "addresses": { + "11:11:11:11:11:11": { + "family": "lladdr" + }, + "10.0.0.2": { + "family": "inet", + "prefixlen": "24", + "netmask": "255.255.255.0", + "broadcast": "10.0.0.255", + "scope": "Global", + "ip_scope": "RFC1918 PRIVATE" + }, + "fe80::11:1111:1111:1111": { + "family": "inet6", + "prefixlen": "64", + "scope": "Link", + "tags": [ + + ], + "ip_scope": "LINK LOCAL UNICAST" + } + }, + "state": "up", + "arp": { + "10.0.0.1": "fe:ff:ff:ff:ff:ff" + }, + "routes": [ + { + "destination": "default", + "family": "inet", + "via": "10.0.0.1" + }, + { + "destination": "10.0.0.0/24", + "family": "inet", + "scope": "link", + "proto": "kernel", + "src": "10.0.0.2" + }, + { + "destination": "fe80::/64", + "family": "inet6", + "metric": "256", + "proto": "kernel" + } + ], + "ring_params": { + } + } + }, + "default_interface": "eth0", + "default_gateway": "10.0.0.1" + }, + "ohai_time": 1675120120.157616, + "os": "linux", + "os_release": { + "name": "CentOS Stream", + "version": "8", + "id": "centos", + "id_like": [ + "rhel", + "fedora" + ], + "version_id": "8", + "platform_id": "platform:el8", + "pretty_name": "CentOS Stream 8", + "ansi_color": "0;31", + "cpe_name": "cpe:/o:centos:centos:8", + "home_url": "https://centos.org/", + "bug_report_url": "https://bugzilla.redhat.com/", + "redhat_support_product": "Red Hat Enterprise Linux 8", + "redhat_support_product_version": "CentOS Stream" + }, + "os_version": "4.18.0-383.el8.x86_64", + "packages": { + "perl-Package-Generator": { + "epoch": "0", + "version": "1.106", + "release": "11.el8", + "installdate": "1654278572", + "arch": "noarch" + }, + "systemd": { + "epoch": "0", + "version": "239", + "release": "58.el8", + "installdate": "1654278214", + "arch": "x86_64" + }, + "tzdata": { + "epoch": "0", + "version": "2022a", + "release": "2.el8", + "installdate": "1654278179", + "arch": "noarch" + }, + "perl-Sys-Syslog": { + "epoch": "0", + "version": "0.35", + "release": "397.el8", + "installdate": "1654278572", + "arch": "x86_64" + }, + "libmodulemd": { + "epoch": "0", + "version": "2.13.0", + "release": "1.el8", + "installdate": "1654278215", + "arch": "x86_64" + }, + "xkeyboard-config": { + "epoch": "0", + "version": "2.28", + "release": "1.el8", + "installdate": "1654278179", + "arch": "noarch" + }, + "perl-Text-Glob": { + "epoch": "0", + "version": "0.11", + "release": "4.el8", + "installdate": "1654278572", + "arch": "noarch" + }, + "crontabs": { + "epoch": "0", + "version": "1.11", + "release": "17.20190603git.el8", + "installdate": "1654278215", + "arch": "noarch" + }, + "perl-local-lib": { + "epoch": "0", + "version": "2.000024", + "release": "2.el8", + "installdate": "1654278573", + "arch": "noarch" + }, + "iproute": { + "epoch": "0", + "version": "5.15.0", + "release": "4.el8", + "installdate": "1654278215", + "arch": "x86_64" + }, + "kbd-misc": { + "epoch": "0", + "version": "2.0.4", + "release": "10.el8", + "installdate": "1654278196", + "arch": "noarch" + }, + "perl-Archive-Tar": { + "epoch": "0", + "version": "2.30", + "release": "1.el8", + "installdate": "1654278573", + "arch": "noarch" + }, + "kernel-core": { + "epoch": "0", + "version": "4.18.0", + "release": "383.el8", + "installdate": "1654278220", + "arch": "x86_64" + }, + "centos-gpg-keys": { + "epoch": "1", + "version": "8", + "release": "6.el8", + "installdate": "1654278197", + "arch": "noarch" + }, + "perl-Devel-Peek": { + "epoch": "0", + "version": "1.26", + "release": "421.el8", + "installdate": "1654278573", + "arch": "x86_64" + }, + "libuser": { + "epoch": "0", + "version": "0.62", + "release": "24.el8", + "installdate": "1654278221", + "arch": "x86_64" + }, + "filesystem": { + "epoch": "0", + "version": "3.8", + "release": "6.el8", + "installdate": "1654278197", + "arch": "x86_64" + }, + "perl-PerlIO-via-QuotedPrint": { + "epoch": "0", + "version": "0.08", + "release": "395.el8", + "installdate": "1654278573", + "arch": "noarch" + }, + "openssh": { + "epoch": "0", + "version": "8.0p1", + "release": "12.el8", + "installdate": "1654278221", + "arch": "x86_64" + }, + "ncurses-libs": { + "epoch": "0", + "version": "6.1", + "release": "9.20180224.el8", + "installdate": "1654278197", + "arch": "x86_64" + }, + "python3-pyparsing": { + "epoch": "0", + "version": "2.1.10", + "release": "7.el8", + "installdate": "1654278573", + "arch": "noarch" + }, + "python3-decorator": { + "epoch": "0", + "version": "4.2.1", + "release": "2.el8", + "installdate": "1654278221", + "arch": "noarch" + }, + "glibc": { + "epoch": "0", + "version": "2.28", + "release": "203.el8", + "installdate": "1654278198", + "arch": "x86_64" + }, + "cups-client": { + "epoch": "1", + "version": "2.2.6", + "release": "46.el8", + "installdate": "1654278221", + "arch": "x86_64" + }, + "info": { + "epoch": "0", + "version": "6.5", + "release": "7.el8_5", + "installdate": "1654278198", + "arch": "x86_64" + }, + "perl-srpm-macros": { + "epoch": "0", + "version": "1", + "release": "25.el8", + "installdate": "1654278574", + "arch": "noarch" + }, + "network-scripts": { + "epoch": "0", + "version": "10.00.17", + "release": "1.el8", + "installdate": "1654278221", + "arch": "x86_64" + }, + "bzip2-libs": { + "epoch": "0", + "version": "1.0.6", + "release": "26.el8", + "installdate": "1654278198", + "arch": "x86_64" + }, + "python3-dateutil": { + "epoch": "1", + "version": "2.6.1", + "release": "6.el8", + "installdate": "1654278229", + "arch": "noarch" + }, + "libgpg-error": { + "epoch": "0", + "version": "1.31", + "release": "1.el8", + "installdate": "1654278198", + "arch": "x86_64" + }, + "ghc-srpm-macros": { + "epoch": "0", + "version": "1.4.2", + "release": "7.el8", + "installdate": "1654278576", + "arch": "noarch" + }, + "python3-setools": { + "epoch": "0", + "version": "4.3.0", + "release": "3.el8", + "installdate": "1654278230", + "arch": "x86_64" + }, + "libuuid": { + "epoch": "0", + "version": "2.32.1", + "release": "35.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "perl-ExtUtils-Install": { + "epoch": "0", + "version": "2.14", + "release": "4.el8", + "installdate": "1654278576", + "arch": "noarch" + }, + "unbound-libs": { + "epoch": "0", + "version": "1.7.3", + "release": "17.el8", + "installdate": "1654278230", + "arch": "x86_64" + }, + "expat": { + "epoch": "0", + "version": "2.2.5", + "release": "9.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "perl-ExtUtils-Embed": { + "epoch": "0", + "version": "1.34", + "release": "421.el8", + "installdate": "1654278576", + "arch": "noarch" + }, + "at": { + "epoch": "0", + "version": "3.1.20", + "release": "12.el8", + "installdate": "1654278231", + "arch": "x86_64" + }, + "libacl": { + "epoch": "0", + "version": "2.2.53", + "release": "1.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "perl-inc-latest": { + "epoch": "2", + "version": "0.500", + "release": "9.el8", + "installdate": "1654278576", + "arch": "noarch" + }, + "dbus-glib": { + "epoch": "0", + "version": "0.110", + "release": "2.el8", + "installdate": "1654278231", + "arch": "x86_64" + }, + "gmp": { + "epoch": "1", + "version": "6.1.2", + "release": "10.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "python3-gobject-base": { + "epoch": "0", + "version": "3.28.3", + "release": "2.el8", + "installdate": "1654278231", + "arch": "x86_64" + }, + "lua-libs": { + "epoch": "0", + "version": "5.3.4", + "release": "12.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "dracut-squash": { + "epoch": "0", + "version": "049", + "release": "202.git20220511.el8", + "installdate": "1654278232", + "arch": "x86_64" + }, + "libffi": { + "epoch": "0", + "version": "3.1", + "release": "23.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "libsss_certmap": { + "epoch": "0", + "version": "2.6.2", + "release": "3.el8", + "installdate": "1654278232", + "arch": "x86_64" + }, + "nss-util": { + "epoch": "0", + "version": "3.67.0", + "release": "7.el8_5", + "installdate": "1654278199", + "arch": "x86_64" + }, + "ima-evm-utils": { + "epoch": "0", + "version": "1.3.2", + "release": "12.el8", + "installdate": "1654278232", + "arch": "x86_64" + }, + "file-libs": { + "epoch": "0", + "version": "5.33", + "release": "20.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "gpgme": { + "epoch": "0", + "version": "1.13.1", + "release": "11.el8", + "installdate": "1654278233", + "arch": "x86_64" + }, + "libcollection": { + "epoch": "0", + "version": "0.7.0", + "release": "39.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "python3-hawkey": { + "epoch": "0", + "version": "0.63.0", + "release": "9.el8", + "installdate": "1654278233", + "arch": "x86_64" + }, + "libtevent": { + "epoch": "0", + "version": "0.11.0", + "release": "0.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "plymouth-core-libs": { + "epoch": "0", + "version": "0.9.4", + "release": "11.20200615git1e36e30.el8", + "installdate": "1654278233", + "arch": "x86_64" + }, + "cpio": { + "epoch": "0", + "version": "2.12", + "release": "11.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "man-db": { + "epoch": "0", + "version": "2.7.6.1", + "release": "18.el8", + "installdate": "1654278234", + "arch": "x86_64" + }, + "libverto": { + "epoch": "0", + "version": "0.3.0", + "release": "5.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "quota": { + "epoch": "1", + "version": "4.04", + "release": "14.el8", + "installdate": "1654278234", + "arch": "x86_64" + }, + "libnftnl": { + "epoch": "0", + "version": "1.1.5", + "release": "5.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "policycoreutils-python-utils": { + "epoch": "0", + "version": "2.9", + "release": "19.el8", + "installdate": "1654278234", + "arch": "noarch" + }, + "libgomp": { + "epoch": "0", + "version": "8.5.0", + "release": "13.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "policycoreutils-devel": { + "epoch": "0", + "version": "2.9", + "release": "19.el8", + "installdate": "1654278235", + "arch": "x86_64" + }, + "libdhash": { + "epoch": "0", + "version": "0.5.0", + "release": "39.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "python3-nftables": { + "epoch": "1", + "version": "0.9.3", + "release": "26.el8", + "installdate": "1654278243", + "arch": "x86_64" + }, + "libsss_idmap": { + "epoch": "0", + "version": "2.6.2", + "release": "3.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "python3-syspurpose": { + "epoch": "0", + "version": "1.28.28", + "release": "1.el8", + "installdate": "1654278243", + "arch": "x86_64" + }, + "lzo": { + "epoch": "0", + "version": "2.08", + "release": "14.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "yum-utils": { + "epoch": "0", + "version": "4.0.21", + "release": "11.el8", + "installdate": "1654278244", + "arch": "noarch" + }, + "grep": { + "epoch": "0", + "version": "3.1", + "release": "6.el8", + "installdate": "1654278201", + "arch": "x86_64" + }, + "sssd-kcm": { + "epoch": "0", + "version": "2.6.2", + "release": "3.el8", + "installdate": "1654278244", + "arch": "x86_64" + }, + "libnetfilter_conntrack": { + "epoch": "0", + "version": "1.0.6", + "release": "5.el8", + "installdate": "1654278201", + "arch": "x86_64" + }, + "kernel": { + "epoch": "0", + "version": "4.18.0", + "release": "383.el8", + "installdate": "1654278244", + "arch": "x86_64" + }, + "nss-softokn": { + "epoch": "0", + "version": "3.67.0", + "release": "7.el8_5", + "installdate": "1654278201", + "arch": "x86_64" + }, + "openssh-clients": { + "epoch": "0", + "version": "8.0p1", + "release": "12.el8", + "installdate": "1654278244", + "arch": "x86_64" + }, + "iptables": { + "epoch": "0", + "version": "1.8.4", + "release": "22.el8", + "installdate": "1654278201", + "arch": "x86_64" + }, + "net-tools": { + "epoch": "0", + "version": "2.0", + "release": "0.52.20160912git.el8", + "installdate": "1654278245", + "arch": "x86_64" + }, + "keyutils": { + "epoch": "0", + "version": "1.5.10", + "release": "9.el8", + "installdate": "1654278201", + "arch": "x86_64" + }, + "parted": { + "epoch": "0", + "version": "3.2", + "release": "39.el8", + "installdate": "1654278245", + "arch": "x86_64" + }, + "groff-base": { + "epoch": "0", + "version": "1.22.3", + "release": "18.el8", + "installdate": "1654278202", + "arch": "x86_64" + }, + "sg3_utils": { + "epoch": "0", + "version": "1.44", + "release": "5.el8", + "installdate": "1654278245", + "arch": "x86_64" + }, + "vim-minimal": { + "epoch": "2", + "version": "8.0.1763", + "release": "16.el8_5.12", + "installdate": "1654278202", + "arch": "x86_64" + }, + "lshw": { + "epoch": "0", + "version": "B.02.19.2", + "release": "6.el8", + "installdate": "1654278245", + "arch": "x86_64" + }, + "libicu": { + "epoch": "0", + "version": "60.3", + "release": "2.el8_1", + "installdate": "1654278203", + "arch": "x86_64" + }, + "lsscsi": { + "epoch": "0", + "version": "0.32", + "release": "3.el8", + "installdate": "1654278246", + "arch": "x86_64" + }, + "libbpf": { + "epoch": "0", + "version": "0.4.0", + "release": "3.el8", + "installdate": "1654278204", + "arch": "x86_64" + }, + "perl-Digest": { + "epoch": "0", + "version": "1.17", + "release": "395.el8", + "installdate": "1654278567", + "arch": "noarch" + }, + "time": { + "epoch": "0", + "version": "1.9", + "release": "3.el8", + "installdate": "1654278204", + "arch": "x86_64" + }, + "perl-Net-SSLeay": { + "epoch": "0", + "version": "1.88", + "release": "1.module_el8.4.0+517+be1595ff", + "installdate": "1654278568", + "arch": "x86_64" + }, + "libselinux-utils": { + "epoch": "0", + "version": "2.9", + "release": "5.el8", + "installdate": "1654278204", + "arch": "x86_64" + }, + "perl-IO-Socket-IP": { + "epoch": "0", + "version": "0.39", + "release": "5.el8", + "installdate": "1654278568", + "arch": "noarch" + }, + "c-ares": { + "epoch": "0", + "version": "1.13.0", + "release": "6.el8", + "installdate": "1654278204", + "arch": "x86_64" + }, + "perl-Term-Cap": { + "epoch": "0", + "version": "1.17", + "release": "395.el8", + "installdate": "1654278568", + "arch": "noarch" + }, + "libdaemon": { + "epoch": "0", + "version": "0.14", + "release": "15.el8", + "installdate": "1654278204", + "arch": "x86_64" + }, + "perl-podlators": { + "epoch": "0", + "version": "4.11", + "release": "1.el8", + "installdate": "1654278568", + "arch": "noarch" + }, + "libini_config": { + "epoch": "0", + "version": "1.3.1", + "release": "39.el8", + "installdate": "1654278205", + "arch": "x86_64" + }, + "perl-MIME-Base64": { + "epoch": "0", + "version": "3.15", + "release": "396.el8", + "installdate": "1654278568", + "arch": "x86_64" + }, + "perl-Socket": { + "epoch": "4", + "version": "2.027", + "release": "3.el8", + "installdate": "1654278568", + "arch": "x86_64" + }, + "libsss_autofs": { + "epoch": "0", + "version": "2.6.2", + "release": "3.el8", + "installdate": "1654278205", + "arch": "x86_64" + }, + "perl-libs": { + "epoch": "4", + "version": "5.26.3", + "release": "421.el8", + "installdate": "1654278569", + "arch": "x86_64" + }, + "memstrack": { + "epoch": "0", + "version": "0.1.11", + "release": "1.el8", + "installdate": "1654278205", + "arch": "x86_64" + }, + "perl-Text-Tabs+Wrap": { + "epoch": "0", + "version": "2013.0523", + "release": "395.el8", + "installdate": "1654278569", + "arch": "noarch" + }, + "slang": { + "epoch": "0", + "version": "2.3.2", + "release": "3.el8", + "installdate": "1654278205", + "arch": "x86_64" + }, + "perl-PathTools": { + "epoch": "0", + "version": "3.74", + "release": "1.el8", + "installdate": "1654278569", + "arch": "x86_64" + }, + "libmaxminddb": { + "epoch": "0", + "version": "1.2.0", + "release": "10.el8", + "installdate": "1654278205", + "arch": "x86_64" + }, + "perl-interpreter": { + "epoch": "4", + "version": "5.26.3", + "release": "421.el8", + "installdate": "1654278570", + "arch": "x86_64" + }, + "platform-python-pip": { + "epoch": "0", + "version": "9.0.3", + "release": "22.el8", + "installdate": "1654278206", + "arch": "noarch" + }, + "perl-ExtUtils-Manifest": { + "epoch": "0", + "version": "1.70", + "release": "395.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "libssh": { + "epoch": "0", + "version": "0.9.6", + "release": "3.el8", + "installdate": "1654278208", + "arch": "x86_64" + }, + "perl-Module-Metadata": { + "epoch": "0", + "version": "1.000033", + "release": "395.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "libkcapi": { + "epoch": "0", + "version": "1.2.0", + "release": "2.el8", + "installdate": "1654278208", + "arch": "x86_64" + }, + "perl-Module-Load": { + "epoch": "1", + "version": "0.32", + "release": "395.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "curl": { + "epoch": "0", + "version": "7.61.1", + "release": "22.el8", + "installdate": "1654278208", + "arch": "x86_64" + }, + "perl-Net-Ping": { + "epoch": "0", + "version": "2.55", + "release": "421.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "crypto-policies": { + "epoch": "0", + "version": "20211116", + "release": "1.gitae470d6.el8", + "installdate": "1654278208", + "arch": "noarch" + }, + "perl-Locale-Maketext": { + "epoch": "0", + "version": "1.28", + "release": "396.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "cracklib-dicts": { + "epoch": "0", + "version": "2.9.6", + "release": "15.el8", + "installdate": "1654278209", + "arch": "x86_64" + }, + "perl-Params-Util": { + "epoch": "0", + "version": "1.07", + "release": "22.el8", + "installdate": "1654278570", + "arch": "x86_64" + }, + "libnsl2": { + "epoch": "0", + "version": "1.2.0", + "release": "2.20180605git4a062cf.el8", + "installdate": "1654278209", + "arch": "x86_64" + }, + "perl-IO-Compress": { + "epoch": "0", + "version": "2.081", + "release": "1.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "elfutils-libs": { + "epoch": "0", + "version": "0.187", + "release": "4.el8", + "installdate": "1654278209", + "arch": "x86_64" + }, + "perl-JSON-PP": { + "epoch": "1", + "version": "2.97.001", + "release": "3.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "libcroco": { + "epoch": "0", + "version": "0.6.12", + "release": "4.el8_2.1", + "installdate": "1654278209", + "arch": "x86_64" + }, + "dbus-libs": { + "epoch": "1", + "version": "1.12.8", + "release": "18.el8", + "installdate": "1654278210", + "arch": "x86_64" + }, + "perl-bignum": { + "epoch": "0", + "version": "0.49", + "release": "2.el8", + "installdate": "1654278571", + "arch": "noarch" + }, + "systemd-libs": { + "epoch": "0", + "version": "239", + "release": "58.el8", + "installdate": "1654278210", + "arch": "x86_64" + }, + "perl-Filter-Simple": { + "epoch": "0", + "version": "0.94", + "release": "2.el8", + "installdate": "1654278571", + "arch": "noarch" + }, + "ca-certificates": { + "epoch": "0", + "version": "2021.2.50", + "release": "82.el8", + "installdate": "1654278210", + "arch": "noarch" + }, + "perl-experimental": { + "epoch": "0", + "version": "0.019", + "release": "2.el8", + "installdate": "1654278572", + "arch": "noarch" + }, + "kmod": { + "epoch": "0", + "version": "25", + "release": "19.el8", + "installdate": "1654278211", + "arch": "x86_64" + }, + "perl-Config-Perl-V": { + "epoch": "0", + "version": "0.30", + "release": "1.el8", + "installdate": "1654278572", + "arch": "noarch" + }, + "dbus-daemon": { + "epoch": "1", + "version": "1.12.8", + "release": "18.el8", + "installdate": "1654278211", + "arch": "x86_64" + }, + "perl-Encode-Locale": { + "epoch": "0", + "version": "1.05", + "release": "10.module_el8.3.0+416+dee7bcef", + "installdate": "1654278572", + "arch": "noarch" + }, + "pam": { + "epoch": "0", + "version": "1.3.1", + "release": "18.el8", + "installdate": "1654278211", + "arch": "x86_64" + }, + "perl-File-Fetch": { + "epoch": "0", + "version": "0.56", + "release": "2.el8", + "installdate": "1654278572", + "arch": "noarch" + }, + "os-prober": { + "epoch": "0", + "version": "1.74", + "release": "9.el8", + "installdate": "1654278212", + "arch": "x86_64" + }, + "perl-Locale-Codes": { + "epoch": "0", + "version": "3.57", + "release": "1.el8", + "installdate": "1654278572", + "arch": "noarch" + }, + "shared-mime-info": { + "epoch": "0", + "version": "1.9", + "release": "3.el8", + "installdate": "1654278213", + "arch": "x86_64" + }, + "libgcc": { + "epoch": "0", + "version": "8.5.0", + "release": "13.el8", + "installdate": "1654278176", + "arch": "x86_64" + }, + "dbus": { + "epoch": "1", + "version": "1.12.8", + "release": "18.el8", + "installdate": "1654278213", + "arch": "x86_64" + }, + "geolite2-city": { + "epoch": "0", + "version": "20180605", + "release": "1.el8", + "installdate": "1654278178", + "arch": "noarch" + }, + "systemd-udev": { + "epoch": "0", + "version": "239", + "release": "58.el8", + "installdate": "1654278214", + "arch": "x86_64" + }, + "python3-setuptools-wheel": { + "epoch": "0", + "version": "39.2.0", + "release": "6.el8", + "installdate": "1654278179", + "arch": "noarch" + }, + "policycoreutils": { + "epoch": "0", + "version": "2.9", + "release": "19.el8", + "installdate": "1654278215", + "arch": "x86_64" + }, + "ncurses-base": { + "epoch": "0", + "version": "6.1", + "release": "9.20180224.el8", + "installdate": "1654278179", + "arch": "noarch" + }, + "libevent": { + "epoch": "0", + "version": "2.1.8", + "release": "5.el8", + "installdate": "1654278215", + "arch": "x86_64" + }, + "quota-nls": { + "epoch": "1", + "version": "4.04", + "release": "14.el8", + "installdate": "1654278179", + "arch": "noarch" + }, + "python3-six": { + "epoch": "0", + "version": "1.11.0", + "release": "8.el8", + "installdate": "1654278215", + "arch": "noarch" + }, + "cronie": { + "epoch": "0", + "version": "1.5.2", + "release": "7.el8", + "installdate": "1654278215", + "arch": "x86_64" + }, + "libssh-config": { + "epoch": "0", + "version": "0.9.6", + "release": "3.el8", + "installdate": "1654278196", + "arch": "noarch" + }, + "libsolv": { + "epoch": "0", + "version": "0.7.20", + "release": "3.el8", + "installdate": "1654278215", + "arch": "x86_64" + }, + "dnf-data": { + "epoch": "0", + "version": "4.7.0", + "release": "9.el8", + "installdate": "1654278196", + "arch": "noarch" + }, + "rpm-plugin-selinux": { + "epoch": "0", + "version": "4.14.3", + "release": "23.el8", + "installdate": "1654278215", + "arch": "x86_64" + }, + "kbd-legacy": { + "epoch": "0", + "version": "2.0.4", + "release": "10.el8", + "installdate": "1654278196", + "arch": "noarch" + }, + "selinux-policy-targeted": { + "epoch": "0", + "version": "3.14.3", + "release": "98.el8", + "installdate": "1654278217", + "arch": "noarch" + }, + "firewalld-filesystem": { + "epoch": "0", + "version": "0.9.3", + "release": "13.el8", + "installdate": "1654278197", + "arch": "noarch" + }, + "initscripts": { + "epoch": "0", + "version": "10.00.17", + "release": "1.el8", + "installdate": "1654278220", + "arch": "x86_64" + }, + "centos-stream-release": { + "epoch": "0", + "version": "8.6", + "release": "1.el8", + "installdate": "1654278197", + "arch": "noarch" + }, + "NetworkManager": { + "epoch": "1", + "version": "1.39.5", + "release": "1.el8", + "installdate": "1654278220", + "arch": "x86_64" + }, + "setup": { + "epoch": "0", + "version": "2.12.2", + "release": "6.el8", + "installdate": "1654278197", + "arch": "noarch" + }, + "polkit-libs": { + "epoch": "0", + "version": "0.115", + "release": "13.0.1.el8.2", + "installdate": "1654278221", + "arch": "x86_64" + }, + "basesystem": { + "epoch": "0", + "version": "11", + "release": "5.el8", + "installdate": "1654278197", + "arch": "noarch" + }, + "polkit-pkla-compat": { + "epoch": "0", + "version": "0.1", + "release": "12.el8", + "installdate": "1654278221", + "arch": "x86_64" + }, + "libselinux": { + "epoch": "0", + "version": "2.9", + "release": "5.el8", + "installdate": "1654278197", + "arch": "x86_64" + }, + "logrotate": { + "epoch": "0", + "version": "3.14.0", + "release": "4.el8", + "installdate": "1654278221", + "arch": "x86_64" + }, + "glibc-langpack-en": { + "epoch": "0", + "version": "2.28", + "release": "203.el8", + "installdate": "1654278197", + "arch": "x86_64" + }, + "libnfsidmap": { + "epoch": "1", + "version": "2.3.3", + "release": "51.el8", + "installdate": "1654278221", + "arch": "x86_64" + }, + "glibc-gconv-extra": { + "epoch": "0", + "version": "2.28", + "release": "203.el8", + "installdate": "1654278198", + "arch": "x86_64" + }, + "libldb": { + "epoch": "0", + "version": "2.4.1", + "release": "1.el8", + "installdate": "1654278221", + "arch": "x86_64" + }, + "bash": { + "epoch": "0", + "version": "4.4.20", + "release": "4.el8", + "installdate": "1654278198", + "arch": "x86_64" + }, + "cups-libs": { + "epoch": "1", + "version": "2.2.6", + "release": "46.el8", + "installdate": "1654278221", + "arch": "x86_64" + }, + "zlib": { + "epoch": "0", + "version": "1.2.11", + "release": "19.el8", + "installdate": "1654278198", + "arch": "x86_64" + }, + "timedatex": { + "epoch": "0", + "version": "0.5", + "release": "3.el8", + "installdate": "1654278221", + "arch": "x86_64" + }, + "xz-libs": { + "epoch": "0", + "version": "5.2.4", + "release": "3.el8", + "installdate": "1654278198", + "arch": "x86_64" + }, + "util-linux-user": { + "epoch": "0", + "version": "2.32.1", + "release": "35.el8", + "installdate": "1654278221", + "arch": "x86_64" + }, + "popt": { + "epoch": "0", + "version": "1.18", + "release": "1.el8", + "installdate": "1654278198", + "arch": "x86_64" + }, + "network-scripts-team": { + "epoch": "0", + "version": "1.31", + "release": "2.el8", + "installdate": "1654278221", + "arch": "x86_64" + }, + "libcap": { + "epoch": "0", + "version": "2.48", + "release": "4.el8", + "installdate": "1654278198", + "arch": "x86_64" + }, + "kernel-modules": { + "epoch": "0", + "version": "4.18.0", + "release": "383.el8", + "installdate": "1654278223", + "arch": "x86_64" + }, + "elfutils-libelf": { + "epoch": "0", + "version": "0.187", + "release": "4.el8", + "installdate": "1654278198", + "arch": "x86_64" + }, + "python3-linux-procfs": { + "epoch": "0", + "version": "0.7.0", + "release": "1.el8", + "installdate": "1654278229", + "arch": "noarch" + }, + "libstdc++": { + "epoch": "0", + "version": "8.5.0", + "release": "13.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "python3-libsemanage": { + "epoch": "0", + "version": "2.9", + "release": "8.el8", + "installdate": "1654278230", + "arch": "x86_64" + }, + "libxcrypt": { + "epoch": "0", + "version": "4.1.1", + "release": "6.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "python3-slip": { + "epoch": "0", + "version": "0.6.4", + "release": "13.el8", + "installdate": "1654278230", + "arch": "noarch" + }, + "libxml2": { + "epoch": "0", + "version": "2.9.7", + "release": "14.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "gssproxy": { + "epoch": "0", + "version": "0.8.0", + "release": "20.el8", + "installdate": "1654278230", + "arch": "x86_64" + }, + "libzstd": { + "epoch": "0", + "version": "1.4.4", + "release": "1.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "python3-unbound": { + "epoch": "0", + "version": "1.7.3", + "release": "17.el8", + "installdate": "1654278230", + "arch": "x86_64" + }, + "findutils": { + "epoch": "1", + "version": "4.6.0", + "release": "20.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "rpcbind": { + "epoch": "0", + "version": "1.2.5", + "release": "8.el8", + "installdate": "1654278231", + "arch": "x86_64" + }, + "libattr": { + "epoch": "0", + "version": "2.4.48", + "release": "3.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "authselect-libs": { + "epoch": "0", + "version": "1.2.2", + "release": "3.el8", + "installdate": "1654278231", + "arch": "x86_64" + }, + "sed": { + "epoch": "0", + "version": "4.5", + "release": "5.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "dracut-network": { + "epoch": "0", + "version": "049", + "release": "202.git20220511.el8", + "installdate": "1654278231", + "arch": "x86_64" + }, + "libidn2": { + "epoch": "0", + "version": "2.2.0", + "release": "1.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "python3-dbus": { + "epoch": "0", + "version": "1.2.4", + "release": "15.el8", + "installdate": "1654278231", + "arch": "x86_64" + }, + "keyutils-libs": { + "epoch": "0", + "version": "1.5.10", + "release": "9.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "gobject-introspection": { + "epoch": "0", + "version": "1.56.1", + "release": "1.el8", + "installdate": "1654278231", + "arch": "x86_64" + }, + "audit-libs": { + "epoch": "0", + "version": "3.0.7", + "release": "4.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "chef": { + "epoch": "0", + "version": "18.1.0", + "release": "1.el8", + "installdate": "1675120067", + "arch": "x86_64" + }, + "libsecret": { + "epoch": "0", + "version": "0.18.6", + "release": "1.el8", + "installdate": "1654278231", + "arch": "x86_64" + }, + "nspr": { + "epoch": "0", + "version": "4.32.0", + "release": "1.el8_4", + "installdate": "1654278199", + "arch": "x86_64" + }, + "grub2-tools-extra": { + "epoch": "1", + "version": "2.02", + "release": "123.el8", + "installdate": "1654278232", + "arch": "x86_64" + }, + "grub2-common": { + "epoch": "1", + "version": "2.02", + "release": "123.el8", + "installdate": "1654278199", + "arch": "noarch" + }, + "virt-what": { + "epoch": "0", + "version": "1.18", + "release": "14.el8", + "installdate": "1654278232", + "arch": "x86_64" + }, + "p11-kit": { + "epoch": "0", + "version": "0.23.22", + "release": "1.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "rpm-plugin-systemd-inhibit": { + "epoch": "0", + "version": "4.14.3", + "release": "23.el8", + "installdate": "1654278232", + "arch": "x86_64" + }, + "libtalloc": { + "epoch": "0", + "version": "2.3.3", + "release": "1.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "sssd-common": { + "epoch": "0", + "version": "2.6.2", + "release": "3.el8", + "installdate": "1654278232", + "arch": "x86_64" + }, + "libsemanage": { + "epoch": "0", + "version": "2.9", + "release": "8.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "tpm2-tss": { + "epoch": "0", + "version": "2.3.2", + "release": "4.el8", + "installdate": "1654278232", + "arch": "x86_64" + }, + "diffutils": { + "epoch": "0", + "version": "3.6", + "release": "6.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "libusbx": { + "epoch": "0", + "version": "1.0.23", + "release": "4.el8", + "installdate": "1654278232", + "arch": "x86_64" + }, + "file": { + "epoch": "0", + "version": "5.33", + "release": "20.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "gnupg2": { + "epoch": "0", + "version": "2.2.20", + "release": "2.el8", + "installdate": "1654278233", + "arch": "x86_64" + }, + "libbasicobjects": { + "epoch": "0", + "version": "0.1.1", + "release": "39.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "librepo": { + "epoch": "0", + "version": "1.14.2", + "release": "1.el8", + "installdate": "1654278233", + "arch": "x86_64" + }, + "libref_array": { + "epoch": "0", + "version": "0.1.5", + "release": "39.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "python3-libdnf": { + "epoch": "0", + "version": "0.63.0", + "release": "9.el8", + "installdate": "1654278233", + "arch": "x86_64" + }, + "lz4-libs": { + "epoch": "0", + "version": "1.8.3", + "release": "3.el8_4", + "installdate": "1654278200", + "arch": "x86_64" + }, + "python3-gpg": { + "epoch": "0", + "version": "1.13.1", + "release": "11.el8", + "installdate": "1654278233", + "arch": "x86_64" + }, + "nettle": { + "epoch": "0", + "version": "3.4.1", + "release": "7.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "python3-rpm": { + "epoch": "0", + "version": "4.14.3", + "release": "23.el8", + "installdate": "1654278233", + "arch": "x86_64" + }, + "hostname": { + "epoch": "0", + "version": "3.20", + "release": "7.el8.0.1", + "installdate": "1654278200", + "arch": "x86_64" + }, + "plymouth-scripts": { + "epoch": "0", + "version": "0.9.4", + "release": "11.20200615git1e36e30.el8", + "installdate": "1654278233", + "arch": "x86_64" + }, + "gdbm-libs": { + "epoch": "1", + "version": "1.18", + "release": "1.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "binutils": { + "epoch": "0", + "version": "2.30", + "release": "116.el8", + "installdate": "1654278234", + "arch": "x86_64" + }, + "libtdb": { + "epoch": "0", + "version": "1.4.4", + "release": "1.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "nss-sysinit": { + "epoch": "0", + "version": "3.67.0", + "release": "7.el8_5", + "installdate": "1654278234", + "arch": "x86_64" + }, + "libnl3-cli": { + "epoch": "0", + "version": "3.5.0", + "release": "1.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "redhat-lsb-submod-security": { + "epoch": "0", + "version": "4.1", + "release": "47.el8", + "installdate": "1654278234", + "arch": "x86_64" + }, + "ethtool": { + "epoch": "2", + "version": "5.13", + "release": "1.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "kernel-tools": { + "epoch": "0", + "version": "4.18.0", + "release": "383.el8", + "installdate": "1654278234", + "arch": "x86_64" + }, + "bc": { + "epoch": "0", + "version": "1.07.1", + "release": "5.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "python3-policycoreutils": { + "epoch": "0", + "version": "2.9", + "release": "19.el8", + "installdate": "1654278234", + "arch": "noarch" + }, + "e2fsprogs-libs": { + "epoch": "0", + "version": "1.45.6", + "release": "5.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "python3-libcomps": { + "epoch": "0", + "version": "0.1.18", + "release": "1.el8", + "installdate": "1654278234", + "arch": "x86_64" + }, + "m4": { + "epoch": "0", + "version": "1.4.18", + "release": "7.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "dnf": { + "epoch": "0", + "version": "4.7.0", + "release": "9.el8", + "installdate": "1654278235", + "arch": "noarch" + }, + "dmidecode": { + "epoch": "1", + "version": "3.3", + "release": "4.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "selinux-policy-devel": { + "epoch": "0", + "version": "3.14.3", + "release": "98.el8", + "installdate": "1654278235", + "arch": "noarch" + }, + "libedit": { + "epoch": "0", + "version": "3.1", + "release": "23.20170329cvs.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "dnf-plugins-core": { + "epoch": "0", + "version": "4.0.21", + "release": "11.el8", + "installdate": "1654278243", + "arch": "noarch" + }, + "libseccomp": { + "epoch": "0", + "version": "2.5.2", + "release": "1.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "python3-firewall": { + "epoch": "0", + "version": "0.9.3", + "release": "13.el8", + "installdate": "1654278243", + "arch": "noarch" + }, + "libtasn1": { + "epoch": "0", + "version": "4.13", + "release": "3.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "python3-pyyaml": { + "epoch": "0", + "version": "3.12", + "release": "12.el8", + "installdate": "1654278243", + "arch": "x86_64" + }, + "libyaml": { + "epoch": "0", + "version": "0.1.7", + "release": "5.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "tuned": { + "epoch": "0", + "version": "2.18.0", + "release": "2.el8", + "installdate": "1654278243", + "arch": "noarch" + }, + "numactl-libs": { + "epoch": "0", + "version": "2.0.12", + "release": "13.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "firewalld": { + "epoch": "0", + "version": "0.9.3", + "release": "13.el8", + "installdate": "1654278244", + "arch": "noarch" + }, + "pcre": { + "epoch": "0", + "version": "8.42", + "release": "6.el8", + "installdate": "1654278201", + "arch": "x86_64" + }, + "yum": { + "epoch": "0", + "version": "4.7.0", + "release": "9.el8", + "installdate": "1654278244", + "arch": "noarch" + }, + "psmisc": { + "epoch": "0", + "version": "23.1", + "release": "5.el8", + "installdate": "1654278201", + "arch": "x86_64" + }, + "wget": { + "epoch": "0", + "version": "1.19.5", + "release": "10.el8", + "installdate": "1654278244", + "arch": "x86_64" + }, + "squashfs-tools": { + "epoch": "0", + "version": "4.3", + "release": "20.el8", + "installdate": "1654278201", + "arch": "x86_64" + }, + "kexec-tools": { + "epoch": "0", + "version": "2.0.24", + "release": "1.el8", + "installdate": "1654278244", + "arch": "x86_64" + }, + "libteam": { + "epoch": "0", + "version": "1.31", + "release": "2.el8", + "installdate": "1654278201", + "arch": "x86_64" + }, + "authselect": { + "epoch": "0", + "version": "1.2.2", + "release": "3.el8", + "installdate": "1654278244", + "arch": "x86_64" + }, + "nss-softokn-freebl": { + "epoch": "0", + "version": "3.67.0", + "release": "7.el8_5", + "installdate": "1654278201", + "arch": "x86_64" + }, + "NetworkManager-team": { + "epoch": "1", + "version": "1.39.5", + "release": "1.el8", + "installdate": "1654278244", + "arch": "x86_64" + }, + "libibverbs": { + "epoch": "0", + "version": "37.2", + "release": "1.el8", + "installdate": "1654278201", + "arch": "x86_64" + }, + "rsyslog": { + "epoch": "0", + "version": "8.2102.0", + "release": "9.el8", + "installdate": "1654278244", + "arch": "x86_64" + }, + "iptables-libs": { + "epoch": "0", + "version": "1.8.4", + "release": "22.el8", + "installdate": "1654278201", + "arch": "x86_64" + }, + "openssh-server": { + "epoch": "0", + "version": "8.0p1", + "release": "12.el8", + "installdate": "1654278245", + "arch": "x86_64" + }, + "iptables-ebtables": { + "epoch": "0", + "version": "1.8.4", + "release": "22.el8", + "installdate": "1654278201", + "arch": "x86_64" + }, + "grub2-pc-modules": { + "epoch": "1", + "version": "2.02", + "release": "123.el8", + "installdate": "1654278201", + "arch": "noarch" + }, + "mpfr": { + "epoch": "0", + "version": "3.1.6", + "release": "1.el8", + "installdate": "1654278201", + "arch": "x86_64" + }, + "ipset": { + "epoch": "0", + "version": "7.1", + "release": "1.el8", + "installdate": "1654278202", + "arch": "x86_64" + }, + "acl": { + "epoch": "0", + "version": "2.2.53", + "release": "1.el8", + "installdate": "1654278202", + "arch": "x86_64" + }, + "tar": { + "epoch": "2", + "version": "1.30", + "release": "5.el8", + "installdate": "1654278202", + "arch": "x86_64" + }, + "patch": { + "epoch": "0", + "version": "2.7.6", + "release": "11.el8", + "installdate": "1654278202", + "arch": "x86_64" + }, + "libmetalink": { + "epoch": "0", + "version": "0.1.3", + "release": "7.el8", + "installdate": "1654278202", + "arch": "x86_64" + }, + "mozjs60": { + "epoch": "0", + "version": "60.9.0", + "release": "4.el8", + "installdate": "1654278204", + "arch": "x86_64" + }, + "snappy": { + "epoch": "0", + "version": "1.1.8", + "release": "3.el8", + "installdate": "1654278204", + "arch": "x86_64" + }, + "libss": { + "epoch": "0", + "version": "1.45.6", + "release": "5.el8", + "installdate": "1654278204", + "arch": "x86_64" + }, + "ed": { + "epoch": "0", + "version": "1.14.2", + "release": "4.el8", + "installdate": "1654278204", + "arch": "x86_64" + }, + "libpng": { + "epoch": "2", + "version": "1.6.34", + "release": "5.el8", + "installdate": "1654278204", + "arch": "x86_64" + }, + "pigz": { + "epoch": "0", + "version": "2.4", + "release": "4.el8", + "installdate": "1654278204", + "arch": "x86_64" + }, + "kernel-tools-libs": { + "epoch": "0", + "version": "4.18.0", + "release": "383.el8", + "installdate": "1654278204", + "arch": "x86_64" + }, + "brotli": { + "epoch": "0", + "version": "1.0.6", + "release": "3.el8", + "installdate": "1654278204", + "arch": "x86_64" + }, + "fuse-libs": { + "epoch": "0", + "version": "2.9.7", + "release": "15.el8", + "installdate": "1654278204", + "arch": "x86_64" + }, + "hdparm": { + "epoch": "0", + "version": "9.54", + "release": "4.el8", + "installdate": "1654278204", + "arch": "x86_64" + }, + "libndp": { + "epoch": "0", + "version": "1.7", + "release": "6.el8", + "installdate": "1654278204", + "arch": "x86_64" + }, + "libpath_utils": { + "epoch": "0", + "version": "0.2.1", + "release": "39.el8", + "installdate": "1654278205", + "arch": "x86_64" + }, + "libpipeline": { + "epoch": "0", + "version": "1.5.0", + "release": "2.el8", + "installdate": "1654278205", + "arch": "x86_64" + }, + "gawk": { + "epoch": "0", + "version": "4.2.1", + "release": "4.el8", + "installdate": "1654278205", + "arch": "x86_64" + }, + "libsss_nss_idmap": { + "epoch": "0", + "version": "2.6.2", + "release": "3.el8", + "installdate": "1654278205", + "arch": "x86_64" + }, + "lmdb-libs": { + "epoch": "0", + "version": "0.9.24", + "release": "1.el8", + "installdate": "1654278205", + "arch": "x86_64" + }, + "ncurses": { + "epoch": "0", + "version": "6.1", + "release": "9.20180224.el8", + "installdate": "1654278205", + "arch": "x86_64" + }, + "sg3_utils-libs": { + "epoch": "0", + "version": "1.44", + "release": "5.el8", + "installdate": "1654278205", + "arch": "x86_64" + }, + "newt": { + "epoch": "0", + "version": "0.52.20", + "release": "11.el8", + "installdate": "1654278205", + "arch": "x86_64" + }, + "libfastjson": { + "epoch": "0", + "version": "0.99.9", + "release": "1.el8", + "installdate": "1654278205", + "arch": "x86_64" + }, + "ipcalc": { + "epoch": "0", + "version": "0.2.4", + "release": "4.el8", + "installdate": "1654278205", + "arch": "x86_64" + }, + "cyrus-sasl-lib": { + "epoch": "0", + "version": "2.1.27", + "release": "6.el8_5", + "installdate": "1654278205", + "arch": "x86_64" + }, + "platform-python-setuptools": { + "epoch": "0", + "version": "39.2.0", + "release": "6.el8", + "installdate": "1654278206", + "arch": "noarch" + }, + "grub2-tools-minimal": { + "epoch": "1", + "version": "2.02", + "release": "123.el8", + "installdate": "1654278208", + "arch": "x86_64" + }, + "openldap": { + "epoch": "0", + "version": "2.4.46", + "release": "18.el8", + "installdate": "1654278208", + "arch": "x86_64" + }, + "grubby": { + "epoch": "0", + "version": "8.40", + "release": "42.el8", + "installdate": "1654278208", + "arch": "x86_64" + }, + "libkcapi-hmaccalc": { + "epoch": "0", + "version": "1.2.0", + "release": "2.el8", + "installdate": "1654278208", + "arch": "x86_64" + }, + "libdb-utils": { + "epoch": "0", + "version": "5.3.28", + "release": "42.el8_4", + "installdate": "1654278208", + "arch": "x86_64" + }, + "libcurl": { + "epoch": "0", + "version": "7.61.1", + "release": "22.el8", + "installdate": "1654278208", + "arch": "x86_64" + }, + "crypto-policies-scripts": { + "epoch": "0", + "version": "20211116", + "release": "1.gitae470d6.el8", + "installdate": "1654278208", + "arch": "noarch" + }, + "elfutils-default-yama-scope": { + "epoch": "0", + "version": "0.187", + "release": "4.el8", + "installdate": "1654278208", + "arch": "noarch" + }, + "cracklib": { + "epoch": "0", + "version": "2.9.6", + "release": "15.el8", + "installdate": "1654278209", + "arch": "x86_64" + }, + "procps-ng": { + "epoch": "0", + "version": "3.3.15", + "release": "7.el8", + "installdate": "1654278209", + "arch": "x86_64" + }, + "libtirpc": { + "epoch": "0", + "version": "1.1.4", + "release": "6.el8", + "installdate": "1654278209", + "arch": "x86_64" + }, + "kpartx": { + "epoch": "0", + "version": "0.8.4", + "release": "24.el8", + "installdate": "1654278209", + "arch": "x86_64" + }, + "elfutils-debuginfod-client": { + "epoch": "0", + "version": "0.187", + "release": "4.el8", + "installdate": "1654278209", + "arch": "x86_64" + }, + "openssl-pkcs11": { + "epoch": "0", + "version": "0.4.10", + "release": "2.el8", + "installdate": "1654278209", + "arch": "x86_64" + }, + "gettext-libs": { + "epoch": "0", + "version": "0.19.8.1", + "release": "17.el8", + "installdate": "1654278209", + "arch": "x86_64" + }, + "dbus-common": { + "epoch": "1", + "version": "1.12.8", + "release": "18.el8", + "installdate": "1654278209", + "arch": "noarch" + }, + "libmount": { + "epoch": "0", + "version": "2.32.1", + "release": "35.el8", + "installdate": "1654278209", + "arch": "x86_64" + }, + "dbus-tools": { + "epoch": "1", + "version": "1.12.8", + "release": "18.el8", + "installdate": "1654278210", + "arch": "x86_64" + }, + "coreutils": { + "epoch": "0", + "version": "8.30", + "release": "12.el8", + "installdate": "1654278210", + "arch": "x86_64" + }, + "shadow-utils": { + "epoch": "2", + "version": "4.6", + "release": "16.el8", + "installdate": "1654278210", + "arch": "x86_64" + }, + "device-mapper-libs": { + "epoch": "8", + "version": "1.02.181", + "release": "3.el8", + "installdate": "1654278210", + "arch": "x86_64" + }, + "openssl-libs": { + "epoch": "1", + "version": "1.1.1k", + "release": "6.el8", + "installdate": "1654278211", + "arch": "x86_64" + }, + "rpm-libs": { + "epoch": "0", + "version": "4.14.3", + "release": "23.el8", + "installdate": "1654278211", + "arch": "x86_64" + }, + "kmod-libs": { + "epoch": "0", + "version": "25", + "release": "19.el8", + "installdate": "1654278211", + "arch": "x86_64" + }, + "trousers-lib": { + "epoch": "0", + "version": "0.3.15", + "release": "1.el8", + "installdate": "1654278211", + "arch": "x86_64" + }, + "libutempter": { + "epoch": "0", + "version": "1.1.6", + "release": "14.el8", + "installdate": "1654278211", + "arch": "x86_64" + }, + "libpwquality": { + "epoch": "0", + "version": "1.4.4", + "release": "3.el8", + "installdate": "1654278211", + "arch": "x86_64" + }, + "util-linux": { + "epoch": "0", + "version": "2.32.1", + "release": "35.el8", + "installdate": "1654278212", + "arch": "x86_64" + }, + "dracut": { + "epoch": "0", + "version": "049", + "release": "202.git20220511.el8", + "installdate": "1654278212", + "arch": "x86_64" + }, + "gettext": { + "epoch": "0", + "version": "0.19.8.1", + "release": "17.el8", + "installdate": "1654278212", + "arch": "x86_64" + }, + "glib2": { + "epoch": "0", + "version": "2.56.4", + "release": "159.el8", + "installdate": "1654278213", + "arch": "x86_64" + }, + "perl-Module-Loaded": { + "epoch": "1", + "version": "0.08", + "release": "421.el8", + "installdate": "1654278572", + "arch": "noarch" + }, + "perl-Sub-Exporter": { + "epoch": "0", + "version": "0.987", + "release": "15.el8", + "installdate": "1654278572", + "arch": "noarch" + }, + "perl-Pod-Parser": { + "epoch": "0", + "version": "1.63", + "release": "396.el8", + "installdate": "1654278572", + "arch": "noarch" + }, + "perl-TermReadKey": { + "epoch": "0", + "version": "2.37", + "release": "7.el8", + "installdate": "1654278572", + "arch": "x86_64" + }, + "perl-Test-Simple": { + "epoch": "1", + "version": "1.302135", + "release": "1.el8", + "installdate": "1654278572", + "arch": "noarch" + }, + "perl-Text-Template": { + "epoch": "0", + "version": "1.51", + "release": "1.el8", + "installdate": "1654278572", + "arch": "noarch" + }, + "perl-Unicode-Collate": { + "epoch": "0", + "version": "1.25", + "release": "2.el8", + "installdate": "1654278572", + "arch": "x86_64" + }, + "perl-utils": { + "epoch": "0", + "version": "5.26.3", + "release": "421.el8", + "installdate": "1654278573", + "arch": "noarch" + }, + "perl-Text-Diff": { + "epoch": "0", + "version": "1.45", + "release": "2.el8", + "installdate": "1654278573", + "arch": "noarch" + }, + "perl-Thread-Queue": { + "epoch": "0", + "version": "3.13", + "release": "1.el8", + "installdate": "1654278573", + "arch": "noarch" + }, + "perl-File-HomeDir": { + "epoch": "0", + "version": "1.002", + "release": "4.el8", + "installdate": "1654278573", + "arch": "noarch" + }, + "perl-MRO-Compat": { + "epoch": "0", + "version": "0.13", + "release": "4.el8", + "installdate": "1654278573", + "arch": "noarch" + }, + "perl-Software-License": { + "epoch": "0", + "version": "0.103013", + "release": "2.el8", + "installdate": "1654278573", + "arch": "noarch" + }, + "perl-perlfaq": { + "epoch": "0", + "version": "5.20180605", + "release": "1.el8", + "installdate": "1654278573", + "arch": "noarch" + }, + "zip": { + "epoch": "0", + "version": "3.0", + "release": "23.el8", + "installdate": "1654278573", + "arch": "x86_64" + }, + "systemtap-sdt-devel": { + "epoch": "0", + "version": "4.7", + "release": "1.el8", + "installdate": "1654278573", + "arch": "x86_64" + }, + "qt5-srpm-macros": { + "epoch": "0", + "version": "5.15.3", + "release": "1.el8", + "installdate": "1654278574", + "arch": "noarch" + }, + "openblas-srpm-macros": { + "epoch": "0", + "version": "2", + "release": "2.el8", + "installdate": "1654278574", + "arch": "noarch" + }, + "go-srpm-macros": { + "epoch": "0", + "version": "2", + "release": "17.el8", + "installdate": "1654278576", + "arch": "noarch" + }, + "efi-srpm-macros": { + "epoch": "0", + "version": "3", + "release": "3.el8", + "installdate": "1654278576", + "arch": "noarch" + }, + "redhat-rpm-config": { + "epoch": "0", + "version": "130", + "release": "1.el8", + "installdate": "1654278576", + "arch": "noarch" + }, + "perl-devel": { + "epoch": "4", + "version": "5.26.3", + "release": "421.el8", + "installdate": "1654278576", + "arch": "x86_64" + }, + "perl-ExtUtils-CBuilder": { + "epoch": "1", + "version": "0.280230", + "release": "2.el8", + "installdate": "1654278576", + "arch": "noarch" + }, + "perl-ExtUtils-Miniperl": { + "epoch": "0", + "version": "1.06", + "release": "421.el8", + "installdate": "1654278576", + "arch": "noarch" + }, + "perl-Encode-devel": { + "epoch": "4", + "version": "2.97", + "release": "3.el8", + "installdate": "1654278576", + "arch": "x86_64" + }, + "perl-Module-Build": { + "epoch": "2", + "version": "0.42.24", + "release": "5.el8", + "installdate": "1654278576", + "arch": "noarch" + }, + "perl": { + "epoch": "4", + "version": "5.26.3", + "release": "421.el8", + "installdate": "1654278576", + "arch": "x86_64" + }, + "audit": { + "epoch": "0", + "version": "3.0.7", + "release": "4.el8", + "installdate": "1654278245", + "arch": "x86_64" + }, + "irqbalance": { + "epoch": "2", + "version": "1.4.0", + "release": "6.el8", + "installdate": "1654278245", + "arch": "x86_64" + }, + "sudo": { + "epoch": "0", + "version": "1.8.29", + "release": "8.el8", + "installdate": "1654278245", + "arch": "x86_64" + }, + "xfsprogs": { + "epoch": "0", + "version": "5.0.0", + "release": "10.el8", + "installdate": "1654278245", + "arch": "x86_64" + }, + "prefixdevname": { + "epoch": "0", + "version": "0.1.0", + "release": "6.el8", + "installdate": "1654278245", + "arch": "x86_64" + }, + "rsync": { + "epoch": "0", + "version": "3.1.3", + "release": "14.el8", + "installdate": "1654278245", + "arch": "x86_64" + }, + "bzip2": { + "epoch": "0", + "version": "1.0.6", + "release": "26.el8", + "installdate": "1654278246", + "arch": "x86_64" + }, + "libsysfs": { + "epoch": "0", + "version": "2.1.0", + "release": "25.el8", + "installdate": "1654278246", + "arch": "x86_64" + }, + "langpacks-en": { + "epoch": "0", + "version": "1.0", + "release": "12.el8", + "installdate": "1654278246", + "arch": "noarch" + }, + "gpg-pubkey": { + "epoch": "0", + "version": "8483c65d", + "release": "5ccc5b19", + "installdate": "1654278563", + "arch": "(none)" + }, + "perl-Digest-MD5": { + "epoch": "0", + "version": "2.55", + "release": "396.el8", + "installdate": "1654278567", + "arch": "x86_64" + }, + "perl-libnet": { + "epoch": "0", + "version": "3.11", + "release": "3.el8", + "installdate": "1654278567", + "arch": "noarch" + }, + "perl-URI": { + "epoch": "0", + "version": "1.73", + "release": "3.el8", + "installdate": "1654278568", + "arch": "noarch" + }, + "perl-Mozilla-CA": { + "epoch": "0", + "version": "20160104", + "release": "7.module_el8.3.0+416+dee7bcef", + "installdate": "1654278568", + "arch": "noarch" + }, + "perl-Time-Local": { + "epoch": "1", + "version": "1.280", + "release": "1.el8", + "installdate": "1654278568", + "arch": "noarch" + }, + "perl-Term-ANSIColor": { + "epoch": "0", + "version": "4.06", + "release": "396.el8", + "installdate": "1654278568", + "arch": "noarch" + }, + "perl-File-Temp": { + "epoch": "0", + "version": "0.230.600", + "release": "1.el8", + "installdate": "1654278568", + "arch": "noarch" + }, + "perl-HTTP-Tiny": { + "epoch": "0", + "version": "0.074", + "release": "1.el8", + "installdate": "1654278568", + "arch": "noarch" + }, + "perl-Pod-Perldoc": { + "epoch": "0", + "version": "3.28", + "release": "396.el8", + "installdate": "1654278568", + "arch": "noarch" + }, + "perl-Pod-Usage": { + "epoch": "4", + "version": "1.69", + "release": "395.el8", + "installdate": "1654278568", + "arch": "noarch" + }, + "perl-Storable": { + "epoch": "1", + "version": "3.11", + "release": "3.el8", + "installdate": "1654278568", + "arch": "x86_64" + }, + "perl-Errno": { + "epoch": "0", + "version": "1.28", + "release": "421.el8", + "installdate": "1654278568", + "arch": "x86_64" + }, + "perl-Encode": { + "epoch": "4", + "version": "2.97", + "release": "3.el8", + "installdate": "1654278568", + "arch": "x86_64" + }, + "perl-Exporter": { + "epoch": "0", + "version": "5.72", + "release": "396.el8", + "installdate": "1654278568", + "arch": "noarch" + }, + "perl-Scalar-List-Utils": { + "epoch": "3", + "version": "1.49", + "release": "2.el8", + "installdate": "1654278569", + "arch": "x86_64" + }, + "perl-macros": { + "epoch": "4", + "version": "5.26.3", + "release": "421.el8", + "installdate": "1654278569", + "arch": "x86_64" + }, + "perl-Unicode-Normalize": { + "epoch": "0", + "version": "1.25", + "release": "396.el8", + "installdate": "1654278569", + "arch": "x86_64" + }, + "perl-IO": { + "epoch": "0", + "version": "1.38", + "release": "421.el8", + "installdate": "1654278569", + "arch": "x86_64" + }, + "perl-constant": { + "epoch": "0", + "version": "1.33", + "release": "396.el8", + "installdate": "1654278569", + "arch": "noarch" + }, + "perl-threads-shared": { + "epoch": "0", + "version": "1.58", + "release": "2.el8", + "installdate": "1654278569", + "arch": "x86_64" + }, + "perl-version": { + "epoch": "6", + "version": "0.99.24", + "release": "1.el8", + "installdate": "1654278570", + "arch": "x86_64" + }, + "perl-CPAN-Meta-Requirements": { + "epoch": "0", + "version": "2.140", + "release": "396.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "perl-ExtUtils-ParseXS": { + "epoch": "1", + "version": "3.35", + "release": "2.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "perl-Module-CoreList": { + "epoch": "1", + "version": "5.20181130", + "release": "1.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "perl-Filter": { + "epoch": "2", + "version": "1.58", + "release": "2.el8", + "installdate": "1654278570", + "arch": "x86_64" + }, + "perl-Compress-Raw-Zlib": { + "epoch": "0", + "version": "2.081", + "release": "1.el8", + "installdate": "1654278570", + "arch": "x86_64" + }, + "perl-Perl-OSType": { + "epoch": "0", + "version": "1.010", + "release": "396.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "perl-encoding": { + "epoch": "4", + "version": "2.22", + "release": "3.el8", + "installdate": "1654278570", + "arch": "x86_64" + }, + "perl-CPAN-Meta-YAML": { + "epoch": "0", + "version": "0.018", + "release": "397.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "perl-ExtUtils-Command": { + "epoch": "1", + "version": "7.34", + "release": "1.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "perl-Locale-Maketext-Simple": { + "epoch": "1", + "version": "0.21", + "release": "421.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "perl-Module-Load-Conditional": { + "epoch": "0", + "version": "0.68", + "release": "395.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "perl-Pod-Html": { + "epoch": "0", + "version": "1.22.02", + "release": "421.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "perl-Compress-Raw-Bzip2": { + "epoch": "0", + "version": "2.081", + "release": "1.el8", + "installdate": "1654278570", + "arch": "x86_64" + }, + "perl-IO-Zlib": { + "epoch": "1", + "version": "1.10", + "release": "421.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "perl-Math-BigInt": { + "epoch": "1", + "version": "1.9998.11", + "release": "7.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "perl-CPAN-Meta": { + "epoch": "0", + "version": "2.150010", + "release": "396.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "python-srpm-macros": { + "epoch": "0", + "version": "3", + "release": "41.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "python3-rpm-macros": { + "epoch": "0", + "version": "3", + "release": "41.el8", + "installdate": "1654278571", + "arch": "noarch" + }, + "perl-Math-BigInt-FastCalc": { + "epoch": "0", + "version": "0.500.600", + "release": "6.el8", + "installdate": "1654278571", + "arch": "x86_64" + }, + "perl-open": { + "epoch": "0", + "version": "1.11", + "release": "421.el8", + "installdate": "1654278571", + "arch": "noarch" + }, + "perl-Archive-Zip": { + "epoch": "0", + "version": "1.60", + "release": "3.el8", + "installdate": "1654278571", + "arch": "noarch" + }, + "perl-Module-CoreList-tools": { + "epoch": "1", + "version": "5.20181130", + "release": "1.el8", + "installdate": "1654278571", + "arch": "noarch" + }, + "perl-Attribute-Handlers": { + "epoch": "0", + "version": "0.99", + "release": "421.el8", + "installdate": "1654278572", + "arch": "noarch" + }, + "perl-Compress-Bzip2": { + "epoch": "0", + "version": "2.26", + "release": "6.el8", + "installdate": "1654278572", + "arch": "x86_64" + }, + "perl-DB_File": { + "epoch": "0", + "version": "1.842", + "release": "1.el8", + "installdate": "1654278572", + "arch": "x86_64" + }, + "perl-Devel-Size": { + "epoch": "0", + "version": "0.81", + "release": "2.el8", + "installdate": "1654278572", + "arch": "x86_64" + }, + "perl-Env": { + "epoch": "0", + "version": "1.04", + "release": "395.el8", + "installdate": "1654278572", + "arch": "noarch" + }, + "perl-IPC-Cmd": { + "epoch": "2", + "version": "1.02", + "release": "1.el8", + "installdate": "1654278572", + "arch": "noarch" + }, + "perl-IPC-SysV": { + "epoch": "0", + "version": "2.07", + "release": "397.el8", + "installdate": "1654278572", + "arch": "x86_64" + }, + "perl-autodie": { + "epoch": "0", + "version": "2.29", + "release": "396.el8", + "installdate": "1654278572", + "arch": "noarch" + }, + "perl-Memoize": { + "epoch": "0", + "version": "1.03", + "release": "421.el8", + "installdate": "1654278572", + "arch": "noarch" + }, + "gnutls": { + "epoch": "0", + "version": "3.6.16", + "release": "4.el8", + "installdate": "1654278213", + "arch": "x86_64" + }, + "geolite2-country": { + "epoch": "0", + "version": "20180605", + "release": "1.el8", + "installdate": "1654278176", + "arch": "noarch" + }, + "perl-Pod-Checker": { + "epoch": "4", + "version": "1.73", + "release": "395.el8", + "installdate": "1654278572", + "arch": "noarch" + }, + "trousers": { + "epoch": "0", + "version": "0.3.15", + "release": "1.el8", + "installdate": "1654278215", + "arch": "x86_64" + }, + "python3-pip-wheel": { + "epoch": "0", + "version": "9.0.3", + "release": "22.el8", + "installdate": "1654278179", + "arch": "noarch" + }, + "perl-Test": { + "epoch": "0", + "version": "1.30", + "release": "421.el8", + "installdate": "1654278572", + "arch": "noarch" + }, + "python3-libselinux": { + "epoch": "0", + "version": "2.9", + "release": "5.el8", + "installdate": "1654278215", + "arch": "x86_64" + }, + "publicsuffix-list-dafsa": { + "epoch": "0", + "version": "20180723", + "release": "1.el8", + "installdate": "1654278179", + "arch": "noarch" + }, + "perl-Time-Piece": { + "epoch": "0", + "version": "1.31", + "release": "421.el8", + "installdate": "1654278572", + "arch": "x86_64" + }, + "cronie-anacron": { + "epoch": "0", + "version": "1.5.2", + "release": "7.el8", + "installdate": "1654278215", + "arch": "x86_64" + }, + "libreport-filesystem": { + "epoch": "0", + "version": "2.9.5", + "release": "15.el8", + "installdate": "1654278196", + "arch": "x86_64" + }, + "perl-Algorithm-Diff": { + "epoch": "0", + "version": "1.1903", + "release": "9.el8", + "installdate": "1654278573", + "arch": "noarch" + }, + "selinux-policy": { + "epoch": "0", + "version": "3.14.3", + "release": "98.el8", + "installdate": "1654278215", + "arch": "noarch" + }, + "hwdata": { + "epoch": "0", + "version": "0.314", + "release": "8.12.el8", + "installdate": "1654278197", + "arch": "noarch" + }, + "perl-File-Which": { + "epoch": "0", + "version": "1.22", + "release": "2.el8", + "installdate": "1654278573", + "arch": "noarch" + }, + "NetworkManager-libnm": { + "epoch": "1", + "version": "1.39.5", + "release": "1.el8", + "installdate": "1654278220", + "arch": "x86_64" + }, + "centos-stream-repos": { + "epoch": "0", + "version": "8", + "release": "6.el8", + "installdate": "1654278197", + "arch": "noarch" + }, + "perl-Data-Section": { + "epoch": "0", + "version": "0.200007", + "release": "3.el8", + "installdate": "1654278573", + "arch": "noarch" + }, + "polkit": { + "epoch": "0", + "version": "0.115", + "release": "13.0.1.el8.2", + "installdate": "1654278221", + "arch": "x86_64" + }, + "pcre2": { + "epoch": "0", + "version": "10.32", + "release": "2.el8", + "installdate": "1654278197", + "arch": "x86_64" + }, + "unzip": { + "epoch": "0", + "version": "6.0", + "release": "46.el8", + "installdate": "1654278573", + "arch": "x86_64" + }, + "avahi-libs": { + "epoch": "0", + "version": "0.7", + "release": "20.el8", + "installdate": "1654278221", + "arch": "x86_64" + }, + "glibc-common": { + "epoch": "0", + "version": "2.28", + "release": "203.el8", + "installdate": "1654278197", + "arch": "x86_64" + }, + "sssd-nfs-idmap": { + "epoch": "0", + "version": "2.6.2", + "release": "3.el8", + "installdate": "1654278221", + "arch": "x86_64" + }, + "libsepol": { + "epoch": "0", + "version": "2.9", + "release": "3.el8", + "installdate": "1654278198", + "arch": "x86_64" + }, + "rust-srpm-macros": { + "epoch": "0", + "version": "5", + "release": "2.el8", + "installdate": "1654278574", + "arch": "noarch" + }, + "passwd": { + "epoch": "0", + "version": "0.80", + "release": "4.el8", + "installdate": "1654278221", + "arch": "x86_64" + }, + "libcom_err": { + "epoch": "0", + "version": "1.45.6", + "release": "5.el8", + "installdate": "1654278198", + "arch": "x86_64" + }, + "ocaml-srpm-macros": { + "epoch": "0", + "version": "5", + "release": "4.el8", + "installdate": "1654278574", + "arch": "noarch" + }, + "teamd": { + "epoch": "0", + "version": "1.31", + "release": "2.el8", + "installdate": "1654278221", + "arch": "x86_64" + }, + "sqlite-libs": { + "epoch": "0", + "version": "3.26.0", + "release": "15.el8", + "installdate": "1654278198", + "arch": "x86_64" + }, + "python3-pyudev": { + "epoch": "0", + "version": "0.21.0", + "release": "7.el8", + "installdate": "1654278229", + "arch": "noarch" + }, + "chkconfig": { + "epoch": "0", + "version": "1.19.1", + "release": "1.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "dwz": { + "epoch": "0", + "version": "0.12", + "release": "10.el8", + "installdate": "1654278576", + "arch": "x86_64" + }, + "libverto-libevent": { + "epoch": "0", + "version": "0.3.0", + "release": "5.el8", + "installdate": "1654278230", + "arch": "x86_64" + }, + "readline": { + "epoch": "0", + "version": "7.0", + "release": "10.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "perl-ExtUtils-MakeMaker": { + "epoch": "1", + "version": "7.34", + "release": "1.el8", + "installdate": "1654278576", + "arch": "noarch" + }, + "postfix": { + "epoch": "2", + "version": "3.5.8", + "release": "4.el8", + "installdate": "1654278230", + "arch": "x86_64" + }, + "libunistring": { + "epoch": "0", + "version": "0.9.9", + "release": "3.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "perl-libnetcfg": { + "epoch": "4", + "version": "5.26.3", + "release": "421.el8", + "installdate": "1654278576", + "arch": "noarch" + }, + "iputils": { + "epoch": "0", + "version": "20180629", + "release": "10.el8", + "installdate": "1654278231", + "arch": "x86_64" + }, + "libmnl": { + "epoch": "0", + "version": "1.0.4", + "release": "6.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "perl-CPAN": { + "epoch": "0", + "version": "2.18", + "release": "397.el8", + "installdate": "1654278576", + "arch": "noarch" + }, + "python3-slip-dbus": { + "epoch": "0", + "version": "0.6.4", + "release": "13.el8", + "installdate": "1654278231", + "arch": "noarch" + }, + "libcap-ng": { + "epoch": "0", + "version": "0.7.11", + "release": "1.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "pinentry": { + "epoch": "0", + "version": "1.1.0", + "release": "2.el8", + "installdate": "1654278231", + "arch": "x86_64" + }, + "libgcrypt": { + "epoch": "0", + "version": "1.8.5", + "release": "6.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "sssd-client": { + "epoch": "0", + "version": "2.6.2", + "release": "3.el8", + "installdate": "1654278232", + "arch": "x86_64" + }, + "libnl3": { + "epoch": "0", + "version": "3.5.0", + "release": "1.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "mailx": { + "epoch": "0", + "version": "12.5", + "release": "29.el8", + "installdate": "1654278232", + "arch": "x86_64" + }, + "libassuan": { + "epoch": "0", + "version": "2.5.1", + "release": "3.el8", + "installdate": "1654278199", + "arch": "x86_64" + }, + "gnupg2-smime": { + "epoch": "0", + "version": "2.2.20", + "release": "2.el8", + "installdate": "1654278232", + "arch": "x86_64" + }, + "json-c": { + "epoch": "0", + "version": "0.13.1", + "release": "3.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "libdnf": { + "epoch": "0", + "version": "0.63.0", + "release": "9.el8", + "installdate": "1654278233", + "arch": "x86_64" + }, + "libsmartcols": { + "epoch": "0", + "version": "2.32.1", + "release": "35.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "rpm-build-libs": { + "epoch": "0", + "version": "4.14.3", + "release": "23.el8", + "installdate": "1654278233", + "arch": "x86_64" + }, + "make": { + "epoch": "1", + "version": "4.2.1", + "release": "11.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "plymouth": { + "epoch": "0", + "version": "0.9.4", + "release": "11.20200615git1e36e30.el8", + "installdate": "1654278233", + "arch": "x86_64" + }, + "jansson": { + "epoch": "0", + "version": "2.14", + "release": "1.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "nss": { + "epoch": "0", + "version": "3.67.0", + "release": "7.el8_5", + "installdate": "1654278234", + "arch": "x86_64" + }, + "libpsl": { + "epoch": "0", + "version": "0.20.2", + "release": "6.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "python3-audit": { + "epoch": "0", + "version": "3.0.7", + "release": "4.el8", + "installdate": "1654278234", + "arch": "x86_64" + }, + "libksba": { + "epoch": "0", + "version": "1.3.5", + "release": "7.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "python3-dnf": { + "epoch": "0", + "version": "4.7.0", + "release": "9.el8", + "installdate": "1654278235", + "arch": "noarch" + }, + "checkpolicy": { + "epoch": "0", + "version": "2.9", + "release": "1.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "python3-dnf-plugins-core": { + "epoch": "0", + "version": "4.0.21", + "release": "11.el8", + "installdate": "1654278243", + "arch": "noarch" + }, + "libnfnetlink": { + "epoch": "0", + "version": "1.0.1", + "release": "13.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "python3-perf": { + "epoch": "0", + "version": "4.18.0", + "release": "383.el8", + "installdate": "1654278243", + "arch": "x86_64" + }, + "p11-kit-trust": { + "epoch": "0", + "version": "0.23.22", + "release": "1.el8", + "installdate": "1654278200", + "arch": "x86_64" + }, + "nfs-utils": { + "epoch": "1", + "version": "2.3.3", + "release": "51.el8", + "installdate": "1654278243", + "arch": "x86_64" + }, + "pciutils-libs": { + "epoch": "0", + "version": "3.7.0", + "release": "1.el8", + "installdate": "1654278201", + "arch": "x86_64" + }, + "redhat-lsb-core": { + "epoch": "0", + "version": "4.1", + "release": "47.el8", + "installdate": "1654278244", + "arch": "x86_64" + }, + "xz": { + "epoch": "0", + "version": "5.2.4", + "release": "3.el8", + "installdate": "1654278201", + "arch": "x86_64" + }, + "grub2-pc": { + "epoch": "1", + "version": "2.02", + "release": "123.el8", + "installdate": "1654278244", + "arch": "x86_64" + }, + "gdbm": { + "epoch": "1", + "version": "1.18", + "release": "1.el8", + "installdate": "1654278201", + "arch": "x86_64" + }, + "chrony": { + "epoch": "0", + "version": "4.1", + "release": "1.el8", + "installdate": "1654278244", + "arch": "x86_64" + }, + "libpcap": { + "epoch": "14", + "version": "1.9.1", + "release": "5.el8", + "installdate": "1654278201", + "arch": "x86_64" + }, + "NetworkManager-tui": { + "epoch": "1", + "version": "1.39.5", + "release": "1.el8", + "installdate": "1654278245", + "arch": "x86_64" + }, + "nftables": { + "epoch": "1", + "version": "0.9.3", + "release": "26.el8", + "installdate": "1654278201", + "arch": "x86_64" + }, + "dracut-config-rescue": { + "epoch": "0", + "version": "049", + "release": "202.git20220511.el8", + "installdate": "1654278245", + "arch": "x86_64" + }, + "ipset-libs": { + "epoch": "0", + "version": "7.1", + "release": "1.el8", + "installdate": "1654278202", + "arch": "x86_64" + }, + "e2fsprogs": { + "epoch": "0", + "version": "1.45.6", + "release": "5.el8", + "installdate": "1654278245", + "arch": "x86_64" + }, + "spax": { + "epoch": "0", + "version": "1.5.3", + "release": "13.el8", + "installdate": "1654278202", + "arch": "x86_64" + }, + "biosdevname": { + "epoch": "0", + "version": "0.7.3", + "release": "2.el8", + "installdate": "1654278245", + "arch": "x86_64" + }, + "libcomps": { + "epoch": "0", + "version": "0.1.18", + "release": "1.el8", + "installdate": "1654278202", + "arch": "x86_64" + }, + "iprutils": { + "epoch": "0", + "version": "2.4.19", + "release": "1.el8", + "installdate": "1654278246", + "arch": "x86_64" + }, + "ncurses-compat-libs": { + "epoch": "0", + "version": "6.1", + "release": "9.20180224.el8", + "installdate": "1654278204", + "arch": "x86_64" + }, + "rootfiles": { + "epoch": "0", + "version": "8.1", + "release": "22.el8", + "installdate": "1654278246", + "arch": "noarch" + }, + "coreutils-common": { + "epoch": "0", + "version": "8.30", + "release": "12.el8", + "installdate": "1654278204", + "arch": "x86_64" + }, + "perl-Data-Dumper": { + "epoch": "0", + "version": "2.167", + "release": "399.el8", + "installdate": "1654278567", + "arch": "x86_64" + }, + "freetype": { + "epoch": "0", + "version": "2.9.1", + "release": "4.el8_3.1", + "installdate": "1654278204", + "arch": "x86_64" + }, + "perl-Pod-Escapes": { + "epoch": "1", + "version": "1.07", + "release": "395.el8", + "installdate": "1654278568", + "arch": "noarch" + }, + "less": { + "epoch": "0", + "version": "530", + "release": "1.el8", + "installdate": "1654278204", + "arch": "x86_64" + }, + "perl-IO-Socket-SSL": { + "epoch": "0", + "version": "2.066", + "release": "4.module_el8.4.0+517+be1595ff", + "installdate": "1654278568", + "arch": "noarch" + }, + "hardlink": { + "epoch": "1", + "version": "1.3", + "release": "6.el8", + "installdate": "1654278204", + "arch": "x86_64" + }, + "perl-Pod-Simple": { + "epoch": "1", + "version": "3.35", + "release": "395.el8", + "installdate": "1654278568", + "arch": "noarch" + }, + "libnghttp2": { + "epoch": "0", + "version": "1.33.0", + "release": "3.el8_2.1", + "installdate": "1654278205", + "arch": "x86_64" + }, + "perl-Text-ParseWords": { + "epoch": "0", + "version": "3.30", + "release": "395.el8", + "installdate": "1654278568", + "arch": "noarch" + }, + "perl-Getopt-Long": { + "epoch": "1", + "version": "2.50", + "release": "4.el8", + "installdate": "1654278568", + "arch": "noarch" + }, + "libsigsegv": { + "epoch": "0", + "version": "2.11", + "release": "5.el8", + "installdate": "1654278205", + "arch": "x86_64" + }, + "perl-Carp": { + "epoch": "0", + "version": "1.42", + "release": "396.el8", + "installdate": "1654278568", + "arch": "noarch" + }, + "libsss_sudo": { + "epoch": "0", + "version": "2.6.2", + "release": "3.el8", + "installdate": "1654278205", + "arch": "x86_64" + }, + "perl-parent": { + "epoch": "1", + "version": "0.237", + "release": "1.el8", + "installdate": "1654278569", + "arch": "noarch" + }, + "npth": { + "epoch": "0", + "version": "1.5", + "release": "4.el8", + "installdate": "1654278205", + "arch": "x86_64" + }, + "perl-File-Path": { + "epoch": "0", + "version": "2.15", + "release": "2.el8", + "installdate": "1654278569", + "arch": "noarch" + }, + "libestr": { + "epoch": "0", + "version": "0.1.10", + "release": "3.el8", + "installdate": "1654278205", + "arch": "x86_64" + }, + "perl-threads": { + "epoch": "1", + "version": "2.21", + "release": "2.el8", + "installdate": "1654278569", + "arch": "x86_64" + }, + "libxkbcommon": { + "epoch": "0", + "version": "0.9.1", + "release": "1.el8", + "installdate": "1654278205", + "arch": "x86_64" + }, + "perl-Time-HiRes": { + "epoch": "4", + "version": "1.9758", + "release": "2.el8", + "installdate": "1654278570", + "arch": "x86_64" + }, + "python3-libs": { + "epoch": "0", + "version": "3.6.8", + "release": "46.el8", + "installdate": "1654278208", + "arch": "x86_64" + }, + "perl-Test-Harness": { + "epoch": "1", + "version": "3.42", + "release": "1.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "platform-python": { + "epoch": "0", + "version": "3.6.8", + "release": "46.el8", + "installdate": "1654278208", + "arch": "x86_64" + }, + "perl-SelfLoader": { + "epoch": "0", + "version": "1.23", + "release": "421.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "libarchive": { + "epoch": "0", + "version": "3.3.3", + "release": "3.el8_5", + "installdate": "1654278208", + "arch": "x86_64" + }, + "perl-Text-Balanced": { + "epoch": "0", + "version": "2.03", + "release": "395.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "openssl": { + "epoch": "1", + "version": "1.1.1k", + "release": "6.el8", + "installdate": "1654278208", + "arch": "x86_64" + }, + "perl-Digest-SHA": { + "epoch": "1", + "version": "6.02", + "release": "1.el8", + "installdate": "1654278570", + "arch": "x86_64" + }, + "gzip": { + "epoch": "0", + "version": "1.9", + "release": "13.el8", + "installdate": "1654278208", + "arch": "x86_64" + }, + "perl-Params-Check": { + "epoch": "1", + "version": "0.38", + "release": "395.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "krb5-libs": { + "epoch": "0", + "version": "1.18.2", + "release": "20.el8", + "installdate": "1654278209", + "arch": "x86_64" + }, + "perl-Sub-Install": { + "epoch": "0", + "version": "0.928", + "release": "14.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "device-mapper": { + "epoch": "8", + "version": "1.02.181", + "release": "3.el8", + "installdate": "1654278209", + "arch": "x86_64" + }, + "perl-Math-Complex": { + "epoch": "0", + "version": "1.59", + "release": "421.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "rpm": { + "epoch": "0", + "version": "4.14.3", + "release": "23.el8", + "installdate": "1654278209", + "arch": "x86_64" + }, + "perl-Math-BigRat": { + "epoch": "0", + "version": "0.2614", + "release": "1.el8", + "installdate": "1654278570", + "arch": "noarch" + }, + "libfdisk": { + "epoch": "0", + "version": "2.32.1", + "release": "35.el8", + "installdate": "1654278209", + "arch": "x86_64" + }, + "python-rpm-macros": { + "epoch": "0", + "version": "3", + "release": "41.el8", + "installdate": "1654278571", + "arch": "noarch" + }, + "which": { + "epoch": "0", + "version": "2.21", + "release": "18.el8", + "installdate": "1654278210", + "arch": "x86_64" + }, + "perl-Data-OptList": { + "epoch": "0", + "version": "0.110", + "release": "6.el8", + "installdate": "1654278571", + "arch": "noarch" + }, + "libblkid": { + "epoch": "0", + "version": "2.32.1", + "release": "35.el8", + "installdate": "1654278210", + "arch": "x86_64" + }, + "perl-Devel-SelfStubber": { + "epoch": "0", + "version": "1.06", + "release": "421.el8", + "installdate": "1654278571", + "arch": "noarch" + }, + "libdb": { + "epoch": "0", + "version": "5.3.28", + "release": "42.el8_4", + "installdate": "1654278211", + "arch": "x86_64" + }, + "perl-B-Debug": { + "epoch": "0", + "version": "1.26", + "release": "2.el8", + "installdate": "1654278572", + "arch": "noarch" + }, + "cryptsetup-libs": { + "epoch": "0", + "version": "2.3.7", + "release": "2.el8", + "installdate": "1654278211", + "arch": "x86_64" + }, + "perl-Devel-PPPort": { + "epoch": "0", + "version": "3.36", + "release": "5.el8", + "installdate": "1654278572", + "arch": "x86_64" + }, + "kbd": { + "epoch": "0", + "version": "2.0.4", + "release": "10.el8", + "installdate": "1654278211", + "arch": "x86_64" + }, + "perl-ExtUtils-MM-Utils": { + "epoch": "1", + "version": "7.34", + "release": "1.el8", + "installdate": "1654278572", + "arch": "noarch" + }, + "systemd-pam": { + "epoch": "0", + "version": "239", + "release": "58.el8", + "installdate": "1654278212", + "arch": "x86_64" + }, + "perl-IPC-System-Simple": { + "epoch": "0", + "version": "1.25", + "release": "17.el8", + "installdate": "1654278572", + "arch": "noarch" + }, + "grub2-tools": { + "epoch": "1", + "version": "2.02", + "release": "123.el8", + "installdate": "1654278213", + "arch": "x86_64" + } + }, + "platform": "centos", + "platform_family": "rhel", + "platform_version": "8", + "root_group": "root", + "shard_seed": 118903342, + "shells": [ + "/bin/sh", + "/bin/bash", + "/usr/bin/sh", + "/usr/bin/bash" + ], + "time": { + "timezone": "GMT" + }, + "uptime": "30 days 15 hours 07 minutes 30 seconds", + "uptime_seconds": 2646450, + "virtualization": { + "systems": { + } + } +} diff --git a/lib/fauxhai/platforms/centos-stream/9.json b/lib/fauxhai/platforms/centos-stream/9.json new file mode 100644 index 00000000..39f6121b --- /dev/null +++ b/lib/fauxhai/platforms/centos-stream/9.json @@ -0,0 +1,4001 @@ +{ + "block_device": { + "sda": { + "size": "134217728", + "removable": "0", + "model": "VBOX HARDDISK", + "rev": "1.0", + "state": "running", + "timeout": "30", + "vendor": "ATA", + "queue_depth": "32", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + } + }, + "chef_packages": { + "chef": { + "version": "18.1.0", + "chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.1.0/lib", + "chef_effortless": null + }, + "ohai": { + "version": "18.0.26", + "ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.0.26/lib/ohai" + } + }, + "command": { + "ps": "ps -ef" + }, + "counters": { + "network": { + "interfaces": { + "lo": { + "tx": { + "queuelen": "1", + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "carrier": 0, + "collisions": 0 + }, + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0 + } + }, + "eth0": { + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "frame": 0, + "compressed": 0, + "multicast": 0 + }, + "tx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "collisions": 0, + "carrier": 0, + "compressed": 0 + } + } + } + } + }, + "cpu": { + "real": 1, + "total": 1, + "cores": 1 + }, + "current_user": "fauxhai", + "dmi": { + }, + "domain": "local", + "filesystem": { + "by_device": { + "devtmpfs": { + "kb_size": "4096", + "kb_used": "0", + "kb_available": "4096", + "percent_used": "0%", + "total_inodes": "464128", + "inodes_used": "355", + "inodes_available": "463773", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=4096k", + "nr_inodes=464128", + "mode=755", + "inode64" + ], + "mounts": [ + "/dev" + ] + }, + "tmpfs": { + "kb_size": "375012", + "kb_used": "0", + "kb_available": "375012", + "percent_used": "0%", + "total_inodes": "93753", + "inodes_used": "14", + "inodes_available": "93739", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=375012k", + "nr_inodes=93753", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ], + "mounts": [ + "/dev/shm", + "/run", + "/run/user/1000" + ] + }, + "/dev/sda2": { + "kb_size": "64926748", + "kb_used": "1516856", + "kb_available": "63409892", + "percent_used": "3%", + "total_inodes": "32479232", + "inodes_used": "38483", + "inodes_available": "32440749", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "47919001-bd02-4834-b40c-25052d8c886c", + "mounts": [ + "/" + ] + }, + "vagrant": { + "kb_size": "492054648", + "kb_used": "396776216", + "kb_available": "95278432", + "percent_used": "81%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "mounts": [ + "/vagrant" + ] + }, + "proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/proc" + ] + }, + "sysfs": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys" + ] + }, + "securityfs": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/security" + ] + }, + "devpts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "mounts": [ + "/dev/pts" + ] + }, + "cgroup2": { + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "nsdelegate", + "memory_recursiveprot" + ], + "mounts": [ + "/sys/fs/cgroup" + ] + }, + "pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/fs/pstore" + ] + }, + "bpf": { + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "mounts": [ + "/sys/fs/bpf" + ] + }, + "selinuxfs": { + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/fs/selinux" + ] + }, + "systemd-1": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=29", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=18057" + ], + "mounts": [ + "/proc/sys/fs/binfmt_misc" + ] + }, + "mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/dev/mqueue" + ] + }, + "hugetlbfs": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ], + "mounts": [ + "/dev/hugepages" + ] + }, + "debugfs": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/kernel/debug" + ] + }, + "tracefs": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/kernel/tracing" + ] + }, + "none": { + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "mode=700" + ], + "mounts": [ + "/run/credentials/systemd-sysctl.service", + "/run/credentials/systemd-tmpfiles-setup-dev.service", + "/run/credentials/systemd-tmpfiles-setup.service" + ] + }, + "configfs": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/config" + ] + }, + "fusectl": { + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/fs/fuse/connections" + ] + }, + "sunrpc": { + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ], + "mounts": [ + "/var/lib/nfs/rpc_pipefs" + ] + }, + "/dev/sda": { + "mounts": [ + + ] + }, + "/dev/sda1": { + "fs_type": "swap", + "uuid": "69a4d716-0761-40cc-ad0f-e33d91a53b93", + "mounts": [ + + ] + } + }, + "by_mountpoint": { + "/dev": { + "kb_size": "4096", + "kb_used": "0", + "kb_available": "4096", + "percent_used": "0%", + "total_inodes": "464128", + "inodes_used": "355", + "inodes_available": "463773", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=4096k", + "nr_inodes=464128", + "mode=755", + "inode64" + ], + "devices": [ + "devtmpfs" + ] + }, + "/dev/shm": { + "kb_size": "1875072", + "kb_used": "0", + "kb_available": "1875072", + "percent_used": "0%", + "total_inodes": "468768", + "inodes_used": "1", + "inodes_available": "468767", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/run": { + "kb_size": "750032", + "kb_used": "16868", + "kb_available": "733164", + "percent_used": "3%", + "total_inodes": "819200", + "inodes_used": "533", + "inodes_available": "818667", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "size=750032k", + "nr_inodes=819200", + "mode=755", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/": { + "kb_size": "64926748", + "kb_used": "1516856", + "kb_available": "63409892", + "percent_used": "3%", + "total_inodes": "32479232", + "inodes_used": "38483", + "inodes_available": "32440749", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "47919001-bd02-4834-b40c-25052d8c886c", + "devices": [ + "/dev/sda2" + ] + }, + "/vagrant": { + "kb_size": "492054648", + "kb_used": "396776216", + "kb_available": "95278432", + "percent_used": "81%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "devices": [ + "vagrant" + ] + }, + "/run/user/1000": { + "kb_size": "375012", + "kb_used": "0", + "kb_available": "375012", + "percent_used": "0%", + "total_inodes": "93753", + "inodes_used": "14", + "inodes_available": "93739", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=375012k", + "nr_inodes=93753", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "proc" + ] + }, + "/sys": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "sysfs" + ] + }, + "/sys/kernel/security": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "securityfs" + ] + }, + "/dev/pts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "devices": [ + "devpts" + ] + }, + "/sys/fs/cgroup": { + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "nsdelegate", + "memory_recursiveprot" + ], + "devices": [ + "cgroup2" + ] + }, + "/sys/fs/pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "pstore" + ] + }, + "/sys/fs/bpf": { + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "devices": [ + "bpf" + ] + }, + "/sys/fs/selinux": { + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime" + ], + "devices": [ + "selinuxfs" + ] + }, + "/proc/sys/fs/binfmt_misc": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=29", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=18057" + ], + "devices": [ + "systemd-1" + ] + }, + "/dev/mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "mqueue" + ] + }, + "/dev/hugepages": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ], + "devices": [ + "hugetlbfs" + ] + }, + "/sys/kernel/debug": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "debugfs" + ] + }, + "/sys/kernel/tracing": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "tracefs" + ] + }, + "/run/credentials/systemd-sysctl.service": { + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "mode=700" + ], + "devices": [ + "none" + ] + }, + "/sys/kernel/config": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "configfs" + ] + }, + "/run/credentials/systemd-tmpfiles-setup-dev.service": { + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "mode=700" + ], + "devices": [ + "none" + ] + }, + "/sys/fs/fuse/connections": { + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "fusectl" + ] + }, + "/run/credentials/systemd-tmpfiles-setup.service": { + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "mode=700" + ], + "devices": [ + "none" + ] + }, + "/var/lib/nfs/rpc_pipefs": { + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ], + "devices": [ + "sunrpc" + ] + } + }, + "by_pair": { + "devtmpfs,/dev": { + "device": "devtmpfs", + "kb_size": "4096", + "kb_used": "0", + "kb_available": "4096", + "percent_used": "0%", + "mount": "/dev", + "total_inodes": "464128", + "inodes_used": "355", + "inodes_available": "463773", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=4096k", + "nr_inodes=464128", + "mode=755", + "inode64" + ] + }, + "tmpfs,/dev/shm": { + "device": "tmpfs", + "kb_size": "1875072", + "kb_used": "0", + "kb_available": "1875072", + "percent_used": "0%", + "mount": "/dev/shm", + "total_inodes": "468768", + "inodes_used": "1", + "inodes_available": "468767", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "inode64" + ] + }, + "tmpfs,/run": { + "device": "tmpfs", + "kb_size": "750032", + "kb_used": "16868", + "kb_available": "733164", + "percent_used": "3%", + "mount": "/run", + "total_inodes": "819200", + "inodes_used": "533", + "inodes_available": "818667", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "size=750032k", + "nr_inodes=819200", + "mode=755", + "inode64" + ] + }, + "/dev/sda2,/": { + "device": "/dev/sda2", + "kb_size": "64926748", + "kb_used": "1516856", + "kb_available": "63409892", + "percent_used": "3%", + "mount": "/", + "total_inodes": "32479232", + "inodes_used": "38483", + "inodes_available": "32440749", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "47919001-bd02-4834-b40c-25052d8c886c" + }, + "vagrant,/vagrant": { + "device": "vagrant", + "kb_size": "492054648", + "kb_used": "396776216", + "kb_available": "95278432", + "percent_used": "81%", + "mount": "/vagrant", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ] + }, + "tmpfs,/run/user/1000": { + "device": "tmpfs", + "kb_size": "375012", + "kb_used": "0", + "kb_available": "375012", + "percent_used": "0%", + "mount": "/run/user/1000", + "total_inodes": "93753", + "inodes_used": "14", + "inodes_available": "93739", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=375012k", + "nr_inodes=93753", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ] + }, + "proc,/proc": { + "device": "proc", + "mount": "/proc", + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "sysfs,/sys": { + "device": "sysfs", + "mount": "/sys", + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "securityfs,/sys/kernel/security": { + "device": "securityfs", + "mount": "/sys/kernel/security", + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "devpts,/dev/pts": { + "device": "devpts", + "mount": "/dev/pts", + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ] + }, + "cgroup2,/sys/fs/cgroup": { + "device": "cgroup2", + "mount": "/sys/fs/cgroup", + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "nsdelegate", + "memory_recursiveprot" + ] + }, + "pstore,/sys/fs/pstore": { + "device": "pstore", + "mount": "/sys/fs/pstore", + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "bpf,/sys/fs/bpf": { + "device": "bpf", + "mount": "/sys/fs/bpf", + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ] + }, + "selinuxfs,/sys/fs/selinux": { + "device": "selinuxfs", + "mount": "/sys/fs/selinux", + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime" + ] + }, + "systemd-1,/proc/sys/fs/binfmt_misc": { + "device": "systemd-1", + "mount": "/proc/sys/fs/binfmt_misc", + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=29", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=18057" + ] + }, + "mqueue,/dev/mqueue": { + "device": "mqueue", + "mount": "/dev/mqueue", + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "hugetlbfs,/dev/hugepages": { + "device": "hugetlbfs", + "mount": "/dev/hugepages", + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ] + }, + "debugfs,/sys/kernel/debug": { + "device": "debugfs", + "mount": "/sys/kernel/debug", + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "tracefs,/sys/kernel/tracing": { + "device": "tracefs", + "mount": "/sys/kernel/tracing", + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "none,/run/credentials/systemd-sysctl.service": { + "device": "none", + "mount": "/run/credentials/systemd-sysctl.service", + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "mode=700" + ] + }, + "configfs,/sys/kernel/config": { + "device": "configfs", + "mount": "/sys/kernel/config", + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "none,/run/credentials/systemd-tmpfiles-setup-dev.service": { + "device": "none", + "mount": "/run/credentials/systemd-tmpfiles-setup-dev.service", + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "mode=700" + ] + }, + "fusectl,/sys/fs/fuse/connections": { + "device": "fusectl", + "mount": "/sys/fs/fuse/connections", + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "none,/run/credentials/systemd-tmpfiles-setup.service": { + "device": "none", + "mount": "/run/credentials/systemd-tmpfiles-setup.service", + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "mode=700" + ] + }, + "sunrpc,/var/lib/nfs/rpc_pipefs": { + "device": "sunrpc", + "mount": "/var/lib/nfs/rpc_pipefs", + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ] + }, + "/dev/sda,": { + "device": "/dev/sda" + }, + "/dev/sda1,": { + "device": "/dev/sda1", + "fs_type": "swap", + "uuid": "69a4d716-0761-40cc-ad0f-e33d91a53b93" + } + } + }, + "fips": { + "kernel": { + "enabled": false + } + }, + "fqdn": "fauxhai.local", + "hostname": "Fauxhai", + "idle": "30 days 15 hours 07 minutes 30 seconds", + "idletime_seconds": 2646450, + "init_package": "systemd", + "ipaddress": "10.0.0.2", + "kernel": { + "name": "Linux", + "release": "5.14.0-234.el9.x86_64", + "version": "#1 SMP PREEMPT_DYNAMIC Thu Jan 12 18:16:31 UTC 2023", + "machine": "x86_64", + "processor": "x86_64", + "os": "GNU/Linux", + "modules": { + "tls": { + "size": "131072", + "refcount": "0" + }, + "vboxsf": { + "size": "98304", + "refcount": "1", + "version": "7.0.6 r155176" + }, + "rfkill": { + "size": "36864", + "refcount": "1" + }, + "vmwgfx": { + "size": "393216", + "refcount": "2", + "version": "2.20.0.0" + }, + "drm_ttm_helper": { + "size": "16384", + "refcount": "1" + }, + "ttm": { + "size": "90112", + "refcount": "2" + }, + "intel_rapl_msr": { + "size": "20480", + "refcount": "0" + }, + "drm_kms_helper": { + "size": "192512", + "refcount": "1" + }, + "intel_rapl_common": { + "size": "32768", + "refcount": "1" + }, + "intel_pmc_core_pltdrv": { + "size": "16384", + "refcount": "0" + }, + "intel_pmc_core": { + "size": "53248", + "refcount": "0" + }, + "syscopyarea": { + "size": "16384", + "refcount": "1" + }, + "sysfillrect": { + "size": "16384", + "refcount": "1" + }, + "sysimgblt": { + "size": "16384", + "refcount": "1" + }, + "fb_sys_fops": { + "size": "16384", + "refcount": "1" + }, + "i2c_piix4": { + "size": "28672", + "refcount": "0" + }, + "pcspkr": { + "size": "16384", + "refcount": "0" + }, + "joydev": { + "size": "28672", + "refcount": "0" + }, + "rapl": { + "size": "24576", + "refcount": "0" + }, + "sunrpc": { + "size": "696320", + "refcount": "1" + }, + "drm": { + "size": "581632", + "refcount": "6" + }, + "fuse": { + "size": "176128", + "refcount": "1" + }, + "xfs": { + "size": "2043904", + "refcount": "1" + }, + "libcrc32c": { + "size": "16384", + "refcount": "1" + }, + "sd_mod": { + "size": "69632", + "refcount": "3" + }, + "t10_pi": { + "size": "16384", + "refcount": "1" + }, + "sg": { + "size": "49152", + "refcount": "0", + "version": "3.5.36" + }, + "ata_generic": { + "size": "16384", + "refcount": "0", + "version": "0.2.15" + }, + "ahci": { + "size": "49152", + "refcount": "2", + "version": "3.0" + }, + "libahci": { + "size": "53248", + "refcount": "1" + }, + "e1000": { + "size": "176128", + "refcount": "0" + }, + "crct10dif_pclmul": { + "size": "16384", + "refcount": "1" + }, + "crc32_pclmul": { + "size": "16384", + "refcount": "0" + }, + "crc32c_intel": { + "size": "24576", + "refcount": "1" + }, + "ghash_clmulni_intel": { + "size": "16384", + "refcount": "0" + }, + "video": { + "size": "61440", + "refcount": "0" + }, + "ata_piix": { + "size": "45056", + "refcount": "0", + "version": "2.13" + }, + "libata": { + "size": "425984", + "refcount": "4", + "version": "3.00" + }, + "vboxguest": { + "size": "421888", + "refcount": "3", + "version": "7.0.6 r155176" + }, + "serio_raw": { + "size": "20480", + "refcount": "0" + } + } + }, + "keys": { + "ssh": { + "host_dsa_public": "ssh-dss AAAAB3NzaC1kc3MAAACBAJFo9BLAw4WKEs5hgipk5m423FzBsDXCZSMcC9ca/om/1VYzMqImixGe3uICDzNFUWxFoLJTQAOccyzo6MXZiQqwWJDLFi5qOSr6w2XcMyE+zd4wOyMoDiVM5fizmG8K3FzrqvGjwBcHcBdOQnavSijoj38DN25J9zhrid5BY4WlAAAAFQDxXrCyG52XCzn3FV4ej38wJBkomQAAAIBovGPJ4mP2P6BK8lHl0PPbktwQbWlpJ13oz6REJFDVcUi7vV26bX/BjQX+ohzZQzljdz1SpUbPc/8nuA4darYkVh91eBi307EN8IdxRHj2eBgp/ZG4yshIebG3WHrwJD/xUjjZ1MRfyDT1ermVi4LvjjPgWDxLZnPpMaR6S1nzgQAAAIEAj0Vd6DCWslvlsZ8+N53HWsqPi3gnx35JoLPz9Z2epkKIKqmEHav+93G3hdfztVa4I4t3phoPniQchYryF5+RNg8hqxKzjNtrIqUYCeuf2NJrksNsH7OZygPHZpqt4kTuwAGZxjxEGfAI0y8DhkU2ntp2LnzRnWH106BQBCmcXwo= fauxhai.local", + "host_rsa_public": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCtLCeqtqr/HbnORckw1ukdLhpfGoOPFi5/esKEokzTqq1gsgQ2V8emmyjfq1i6XXfRtSBxkdlHv/GWdP5wBTuE2G85MzBkVSQPvmwQN8lX/JMPEEtKXkeOo0o92/PiSmvY4eRsdF0mw40Uvg7jtE3f3fxj497kzh5fKtkrHnF4x9gXCbVdr3FqXJfggR5IJwAxToerbK7x/uRS+7YuZI9Pip3tt14nv9ezwXcuGb/tvjWOZINiFl8izVIFKi7sxfTX09p4NgamxRS7TD2Yd0jT8nEoF9UZTsgXcJ1kDSx7N7NxFfNfP6rCdOGRRz4gUhXtsUjG/XkxPeCwZ7A9VnOD fauxhai.local" + } + }, + "languages": { + "ruby": { + "platform": "x86_64-linux", + "version": "3.1.2", + "release_date": "2022-04-12", + "target": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_vendor": "pc", + "target_os": "linux", + "host": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux", + "host_vendor": "pc", + "bin_dir": "/usr/local/bin", + "ruby_bin": "/usr/local/bin/ruby", + "gem_bin": "/usr/local/bin/gem", + "gems_dir": "/usr/local/gems" + }, + "powershell": null + }, + "lsb": { + }, + "macaddress": "11:11:11:11:11:11", + "machinename": "Fauxhai", + "memory": { + "total": "1048576kB" + }, + "network": { + "interfaces": { + "lo": { + "mtu": "65536", + "flags": [ + "LOOPBACK", + "UP", + "LOWER_UP" + ], + "encapsulation": "Loopback", + "addresses": { + "127.0.0.1": { + "family": "inet", + "prefixlen": "8", + "netmask": "255.0.0.0", + "scope": "Node", + "ip_scope": "LOOPBACK" + }, + "::1": { + "family": "inet6", + "prefixlen": "128", + "scope": "Node", + "tags": [ + + ], + "ip_scope": "LINK LOCAL LOOPBACK" + } + }, + "state": "unknown" + }, + "eth0": { + "type": "eth", + "number": "0", + "mtu": "1500", + "flags": [ + "BROADCAST", + "MULTICAST", + "UP", + "LOWER_UP" + ], + "encapsulation": "Ethernet", + "addresses": { + "11:11:11:11:11:11": { + "family": "lladdr" + }, + "10.0.0.2": { + "family": "inet", + "prefixlen": "24", + "netmask": "255.255.255.0", + "broadcast": "10.0.0.255", + "scope": "Global", + "ip_scope": "RFC1918 PRIVATE" + }, + "fe80::11:1111:1111:1111": { + "family": "inet6", + "prefixlen": "64", + "scope": "Link", + "tags": [ + + ], + "ip_scope": "LINK LOCAL UNICAST" + } + }, + "state": "up", + "arp": { + "10.0.0.1": "fe:ff:ff:ff:ff:ff" + }, + "routes": [ + { + "destination": "default", + "family": "inet", + "via": "10.0.0.1" + }, + { + "destination": "10.0.0.0/24", + "family": "inet", + "scope": "link", + "proto": "kernel", + "src": "10.0.0.2" + }, + { + "destination": "fe80::/64", + "family": "inet6", + "metric": "256", + "proto": "kernel" + } + ], + "ring_params": { + } + } + }, + "default_interface": "eth0", + "default_gateway": "10.0.0.1" + }, + "ohai_time": 1675119889.7828636, + "os": "linux", + "os_release": { + "name": "CentOS Stream", + "version": "9", + "id": "centos", + "id_like": [ + "rhel", + "fedora" + ], + "version_id": "9", + "platform_id": "platform:el9", + "pretty_name": "CentOS Stream 9", + "ansi_color": "0;31", + "logo": "fedora-logo-icon", + "cpe_name": "cpe:/o:centos:centos:9", + "home_url": "https://centos.org/", + "bug_report_url": "https://bugzilla.redhat.com/", + "redhat_support_product": "Red Hat Enterprise Linux 9", + "redhat_support_product_version": "CentOS Stream" + }, + "os_version": "5.14.0-234.el9.x86_64", + "packages": { + "libgcc": { + "epoch": "0", + "version": "11.3.1", + "release": "4.3.el9", + "installdate": "1674235547", + "arch": "x86_64" + }, + "crypto-policies": { + "epoch": "0", + "version": "20221215", + "release": "1.git9a18988.el9", + "installdate": "1674235547", + "arch": "noarch" + }, + "tzdata": { + "epoch": "0", + "version": "2022g", + "release": "1.el9", + "installdate": "1674235548", + "arch": "noarch" + }, + "gawk-all-langpacks": { + "epoch": "0", + "version": "5.1.0", + "release": "6.el9", + "installdate": "1674235548", + "arch": "x86_64" + }, + "quota-nls": { + "epoch": "1", + "version": "4.06", + "release": "6.el9", + "installdate": "1674235548", + "arch": "noarch" + }, + "python3-setuptools-wheel": { + "epoch": "0", + "version": "53.0.0", + "release": "12.el9", + "installdate": "1674235548", + "arch": "noarch" + }, + "publicsuffix-list-dafsa": { + "epoch": "0", + "version": "20210518", + "release": "3.el9", + "installdate": "1674235548", + "arch": "noarch" + }, + "pcre2-syntax": { + "epoch": "0", + "version": "10.40", + "release": "2.el9", + "installdate": "1674235548", + "arch": "noarch" + }, + "ncurses-base": { + "epoch": "0", + "version": "6.2", + "release": "8.20210508.el9", + "installdate": "1674235548", + "arch": "noarch" + }, + "libssh-config": { + "epoch": "0", + "version": "0.10.4", + "release": "7.el9", + "installdate": "1674235551", + "arch": "noarch" + }, + "libreport-filesystem": { + "epoch": "0", + "version": "2.15.2", + "release": "6.el9", + "installdate": "1674235551", + "arch": "noarch" + }, + "dnf-data": { + "epoch": "0", + "version": "4.14.0", + "release": "4.el9", + "installdate": "1674235551", + "arch": "noarch" + }, + "kbd-misc": { + "epoch": "0", + "version": "2.4.0", + "release": "8.el9", + "installdate": "1674235551", + "arch": "noarch" + }, + "hwdata": { + "epoch": "0", + "version": "0.348", + "release": "9.6.el9", + "installdate": "1674235551", + "arch": "noarch" + }, + "fonts-filesystem": { + "epoch": "1", + "version": "2.0.5", + "release": "7.el9.1", + "installdate": "1674235551", + "arch": "noarch" + }, + "dejavu-sans-fonts": { + "epoch": "0", + "version": "2.37", + "release": "18.el9", + "installdate": "1674235551", + "arch": "noarch" + }, + "langpacks-core-font-en": { + "epoch": "0", + "version": "3.0", + "release": "16.el9", + "installdate": "1674235551", + "arch": "noarch" + }, + "firewalld-filesystem": { + "epoch": "0", + "version": "1.2.1", + "release": "1.el9", + "installdate": "1674235551", + "arch": "noarch" + }, + "coreutils-common": { + "epoch": "0", + "version": "8.32", + "release": "33.el9", + "installdate": "1674235551", + "arch": "x86_64" + }, + "centos-gpg-keys": { + "epoch": "0", + "version": "9.0", + "release": "18.el9", + "installdate": "1674235551", + "arch": "noarch" + }, + "centos-stream-repos": { + "epoch": "0", + "version": "9.0", + "release": "18.el9", + "installdate": "1674235551", + "arch": "noarch" + }, + "centos-stream-release": { + "epoch": "0", + "version": "9.0", + "release": "18.el9", + "installdate": "1674235551", + "arch": "noarch" + }, + "setup": { + "epoch": "0", + "version": "2.13.7", + "release": "8.el9", + "installdate": "1674235551", + "arch": "noarch" + }, + "filesystem": { + "epoch": "0", + "version": "3.16", + "release": "2.el9", + "installdate": "1674235552", + "arch": "x86_64" + }, + "basesystem": { + "epoch": "0", + "version": "11", + "release": "13.el9", + "installdate": "1674235552", + "arch": "noarch" + }, + "glibc-gconv-extra": { + "epoch": "0", + "version": "2.34", + "release": "54.el9", + "installdate": "1674235552", + "arch": "x86_64" + }, + "glibc-langpack-en": { + "epoch": "0", + "version": "2.34", + "release": "54.el9", + "installdate": "1674235552", + "arch": "x86_64" + }, + "glibc-common": { + "epoch": "0", + "version": "2.34", + "release": "54.el9", + "installdate": "1674235552", + "arch": "x86_64" + }, + "glibc": { + "epoch": "0", + "version": "2.34", + "release": "54.el9", + "installdate": "1674235552", + "arch": "x86_64" + }, + "ncurses-libs": { + "epoch": "0", + "version": "6.2", + "release": "8.20210508.el9", + "installdate": "1674235552", + "arch": "x86_64" + }, + "bash": { + "epoch": "0", + "version": "5.1.8", + "release": "6.el9", + "installdate": "1674235552", + "arch": "x86_64" + }, + "zlib": { + "epoch": "0", + "version": "1.2.11", + "release": "36.el9", + "installdate": "1674235552", + "arch": "x86_64" + }, + "xz-libs": { + "epoch": "0", + "version": "5.2.5", + "release": "8.el9", + "installdate": "1674235552", + "arch": "x86_64" + }, + "libcap": { + "epoch": "0", + "version": "2.48", + "release": "8.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libzstd": { + "epoch": "0", + "version": "1.5.1", + "release": "2.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "popt": { + "epoch": "0", + "version": "1.18", + "release": "8.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "bzip2-libs": { + "epoch": "0", + "version": "1.0.8", + "release": "8.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libuuid": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libxcrypt": { + "epoch": "0", + "version": "4.4.18", + "release": "3.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "sqlite-libs": { + "epoch": "0", + "version": "3.34.1", + "release": "6.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libcom_err": { + "epoch": "0", + "version": "1.46.5", + "release": "3.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libmnl": { + "epoch": "0", + "version": "1.0.4", + "release": "15.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libxml2": { + "epoch": "0", + "version": "2.9.13", + "release": "3.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "elfutils-libelf": { + "epoch": "0", + "version": "0.188", + "release": "3.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "readline": { + "epoch": "0", + "version": "8.1", + "release": "4.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libcap-ng": { + "epoch": "0", + "version": "0.8.2", + "release": "7.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "audit-libs": { + "epoch": "0", + "version": "3.0.7", + "release": "103.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libstdc++": { + "epoch": "0", + "version": "11.3.1", + "release": "4.3.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "keyutils-libs": { + "epoch": "0", + "version": "1.6.3", + "release": "1.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libunistring": { + "epoch": "0", + "version": "0.9.10", + "release": "15.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "lua-libs": { + "epoch": "0", + "version": "5.4.2", + "release": "7.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libidn2": { + "epoch": "0", + "version": "2.3.0", + "release": "7.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "alternatives": { + "epoch": "0", + "version": "1.20", + "release": "2.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libffi": { + "epoch": "0", + "version": "3.4.2", + "release": "7.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "p11-kit": { + "epoch": "0", + "version": "0.24.1", + "release": "2.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libgpg-error": { + "epoch": "0", + "version": "1.42", + "release": "5.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libnl3": { + "epoch": "0", + "version": "3.7.0", + "release": "1.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libsepol": { + "epoch": "0", + "version": "3.5", + "release": "0.rc1.2.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libtalloc": { + "epoch": "0", + "version": "2.3.4", + "release": "1.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "lz4-libs": { + "epoch": "0", + "version": "1.9.3", + "release": "5.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "pcre2": { + "epoch": "0", + "version": "10.40", + "release": "2.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libselinux": { + "epoch": "0", + "version": "3.5", + "release": "0.rc1.1.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libsemanage": { + "epoch": "0", + "version": "3.5", + "release": "0.rc1.1.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "gmp": { + "epoch": "1", + "version": "6.2.0", + "release": "10.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libsmartcols": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "findutils": { + "epoch": "1", + "version": "4.8.0", + "release": "5.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libtevent": { + "epoch": "0", + "version": "0.13.0", + "release": "1.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libgcrypt": { + "epoch": "0", + "version": "1.10.0", + "release": "8.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "file-libs": { + "epoch": "0", + "version": "5.39", + "release": "10.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libedit": { + "epoch": "0", + "version": "3.1", + "release": "37.20210216cvs.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "expat": { + "epoch": "0", + "version": "2.5.0", + "release": "1.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "gdbm-libs": { + "epoch": "1", + "version": "1.19", + "release": "4.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "jansson": { + "epoch": "0", + "version": "2.14", + "release": "1.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "json-c": { + "epoch": "0", + "version": "0.14", + "release": "11.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libattr": { + "epoch": "0", + "version": "2.5.1", + "release": "3.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libacl": { + "epoch": "0", + "version": "2.3.1", + "release": "3.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "sed": { + "epoch": "0", + "version": "4.8", + "release": "9.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "shadow-utils": { + "epoch": "2", + "version": "4.9", + "release": "6.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libref_array": { + "epoch": "0", + "version": "0.1.5", + "release": "53.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libtdb": { + "epoch": "0", + "version": "1.4.7", + "release": "1.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libverto": { + "epoch": "0", + "version": "0.3.2", + "release": "3.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "file": { + "epoch": "0", + "version": "5.39", + "release": "10.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libassuan": { + "epoch": "0", + "version": "2.5.5", + "release": "3.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libpsl": { + "epoch": "0", + "version": "0.21.1", + "release": "5.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libbpf": { + "epoch": "2", + "version": "1.0.0", + "release": "1.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libnftnl": { + "epoch": "0", + "version": "1.2.2", + "release": "1.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "e2fsprogs-libs": { + "epoch": "0", + "version": "1.46.5", + "release": "3.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "fuse-libs": { + "epoch": "0", + "version": "2.9.9", + "release": "15.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libbasicobjects": { + "epoch": "0", + "version": "0.1.1", + "release": "53.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libcollection": { + "epoch": "0", + "version": "0.7.0", + "release": "53.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libdb": { + "epoch": "0", + "version": "5.3.28", + "release": "53.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libdhash": { + "epoch": "0", + "version": "0.5.0", + "release": "53.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libgomp": { + "epoch": "0", + "version": "11.3.1", + "release": "4.3.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libseccomp": { + "epoch": "0", + "version": "2.5.2", + "release": "2.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libsigsegv": { + "epoch": "0", + "version": "2.13", + "release": "4.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libsss_idmap": { + "epoch": "0", + "version": "2.8.2", + "release": "1.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libtasn1": { + "epoch": "0", + "version": "4.16.0", + "release": "8.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "p11-kit-trust": { + "epoch": "0", + "version": "0.24.1", + "release": "2.el9", + "installdate": "1674235553", + "arch": "x86_64" + }, + "libyaml": { + "epoch": "0", + "version": "0.2.5", + "release": "7.el9", + "installdate": "1674235554", + "arch": "x86_64" + }, + "lzo": { + "epoch": "0", + "version": "2.10", + "release": "7.el9", + "installdate": "1674235554", + "arch": "x86_64" + }, + "make": { + "epoch": "1", + "version": "4.3", + "release": "7.el9", + "installdate": "1674235554", + "arch": "x86_64" + }, + "nettle": { + "epoch": "0", + "version": "3.8", + "release": "3.el9", + "installdate": "1674235554", + "arch": "x86_64" + }, + "gnutls": { + "epoch": "0", + "version": "3.7.6", + "release": "15.el9", + "installdate": "1674235554", + "arch": "x86_64" + }, + "pcre": { + "epoch": "0", + "version": "8.44", + "release": "3.el9.3", + "installdate": "1674235554", + "arch": "x86_64" + }, + "grep": { + "epoch": "0", + "version": "3.6", + "release": "5.el9", + "installdate": "1674235554", + "arch": "x86_64" + }, + "openssl-libs": { + "epoch": "1", + "version": "3.0.7", + "release": "2.el9", + "installdate": "1674235554", + "arch": "x86_64" + }, + "coreutils": { + "epoch": "0", + "version": "8.32", + "release": "33.el9", + "installdate": "1674235554", + "arch": "x86_64" + }, + "ca-certificates": { + "epoch": "0", + "version": "2022.2.54", + "release": "90.2.el9", + "installdate": "1674235554", + "arch": "noarch" + }, + "systemd-libs": { + "epoch": "0", + "version": "252", + "release": "2.el9", + "installdate": "1674235555", + "arch": "x86_64" + }, + "libblkid": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1674235555", + "arch": "x86_64" + }, + "libmount": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1674235555", + "arch": "x86_64" + }, + "glib2": { + "epoch": "0", + "version": "2.68.4", + "release": "6.el9", + "installdate": "1674235555", + "arch": "x86_64" + }, + "dbus-libs": { + "epoch": "1", + "version": "1.12.20", + "release": "7.el9", + "installdate": "1674235555", + "arch": "x86_64" + }, + "kmod": { + "epoch": "0", + "version": "28", + "release": "7.el9", + "installdate": "1674235555", + "arch": "x86_64" + }, + "libfdisk": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1674235555", + "arch": "x86_64" + }, + "gzip": { + "epoch": "0", + "version": "1.12", + "release": "1.el9", + "installdate": "1674235555", + "arch": "x86_64" + }, + "kmod-libs": { + "epoch": "0", + "version": "28", + "release": "7.el9", + "installdate": "1674235555", + "arch": "x86_64" + }, + "cracklib": { + "epoch": "0", + "version": "2.9.6", + "release": "27.el9", + "installdate": "1674235555", + "arch": "x86_64" + }, + "NetworkManager-libnm": { + "epoch": "1", + "version": "1.41.8", + "release": "1.el9", + "installdate": "1674235555", + "arch": "x86_64" + }, + "util-linux-core": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1674235555", + "arch": "x86_64" + }, + "libevent": { + "epoch": "0", + "version": "2.1.12", + "release": "6.el9", + "installdate": "1674235555", + "arch": "x86_64" + }, + "which": { + "epoch": "0", + "version": "2.21", + "release": "28.el9", + "installdate": "1674235555", + "arch": "x86_64" + }, + "checkpolicy": { + "epoch": "0", + "version": "3.5", + "release": "0.rc1.1.el9", + "installdate": "1674235555", + "arch": "x86_64" + }, + "cracklib-dicts": { + "epoch": "0", + "version": "2.9.6", + "release": "27.el9", + "installdate": "1674235555", + "arch": "x86_64" + }, + "gobject-introspection": { + "epoch": "0", + "version": "1.68.0", + "release": "11.el9", + "installdate": "1674235555", + "arch": "x86_64" + }, + "procps-ng": { + "epoch": "0", + "version": "3.3.17", + "release": "9.el9", + "installdate": "1674235555", + "arch": "x86_64" + }, + "openssl": { + "epoch": "1", + "version": "3.0.7", + "release": "2.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "libarchive": { + "epoch": "0", + "version": "3.5.3", + "release": "4.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "libsss_certmap": { + "epoch": "0", + "version": "2.8.2", + "release": "1.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "xz": { + "epoch": "0", + "version": "5.2.5", + "release": "8.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "squashfs-tools": { + "epoch": "0", + "version": "4.4", + "release": "8.git1.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "libutempter": { + "epoch": "0", + "version": "1.2.1", + "release": "6.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "acl": { + "epoch": "0", + "version": "2.3.1", + "release": "3.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "gettext-libs": { + "epoch": "0", + "version": "0.21", + "release": "7.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "gettext": { + "epoch": "0", + "version": "0.21", + "release": "7.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "libcomps": { + "epoch": "0", + "version": "0.1.18", + "release": "1.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "mpfr": { + "epoch": "0", + "version": "4.1.0", + "release": "7.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "gawk": { + "epoch": "0", + "version": "5.1.0", + "release": "6.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "krb5-libs": { + "epoch": "0", + "version": "1.19.1", + "release": "22.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "libtirpc": { + "epoch": "0", + "version": "1.3.3", + "release": "1.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "quota": { + "epoch": "1", + "version": "4.06", + "release": "6.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "cyrus-sasl-lib": { + "epoch": "0", + "version": "2.1.27", + "release": "21.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "openldap": { + "epoch": "0", + "version": "2.6.2", + "release": "3.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "libnfsidmap": { + "epoch": "1", + "version": "2.5.4", + "release": "17.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "sssd-nfs-idmap": { + "epoch": "0", + "version": "2.8.2", + "release": "1.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "libssh": { + "epoch": "0", + "version": "0.10.4", + "release": "7.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "libselinux-utils": { + "epoch": "0", + "version": "3.5", + "release": "0.rc1.1.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "libibverbs": { + "epoch": "0", + "version": "41.0", + "release": "3.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "libpcap": { + "epoch": "14", + "version": "1.10.0", + "release": "4.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "libnl3-cli": { + "epoch": "0", + "version": "3.7.0", + "release": "1.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "libteam": { + "epoch": "0", + "version": "1.31", + "release": "16.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "libksba": { + "epoch": "0", + "version": "1.5.1", + "release": "5.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "keyutils": { + "epoch": "0", + "version": "1.6.3", + "release": "1.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "groff-base": { + "epoch": "0", + "version": "1.22.4", + "release": "10.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "snappy": { + "epoch": "0", + "version": "1.1.8", + "release": "8.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "ethtool": { + "epoch": "2", + "version": "5.10", + "release": "4.el9", + "installdate": "1674235556", + "arch": "x86_64" + }, + "ipset-libs": { + "epoch": "0", + "version": "7.11", + "release": "7.el9", + "installdate": "1674235557", + "arch": "x86_64" + }, + "ipset": { + "epoch": "0", + "version": "7.11", + "release": "7.el9", + "installdate": "1674235557", + "arch": "x86_64" + }, + "libss": { + "epoch": "0", + "version": "1.46.5", + "release": "3.el9", + "installdate": "1674235557", + "arch": "x86_64" + }, + "libxcrypt-compat": { + "epoch": "0", + "version": "4.4.18", + "release": "3.el9", + "installdate": "1674235557", + "arch": "x86_64" + }, + "python3-pip-wheel": { + "epoch": "0", + "version": "21.2.3", + "release": "6.el9", + "installdate": "1674235557", + "arch": "noarch" + }, + "python-unversioned-command": { + "epoch": "0", + "version": "3.9.16", + "release": "1.el9", + "installdate": "1674235557", + "arch": "noarch" + }, + "python3": { + "epoch": "0", + "version": "3.9.16", + "release": "1.el9", + "installdate": "1674235557", + "arch": "x86_64" + }, + "python3-libs": { + "epoch": "0", + "version": "3.9.16", + "release": "1.el9", + "installdate": "1674235558", + "arch": "x86_64" + }, + "python3-dbus": { + "epoch": "0", + "version": "1.2.18", + "release": "2.el9", + "installdate": "1674235558", + "arch": "x86_64" + }, + "python3-gobject-base-noarch": { + "epoch": "0", + "version": "3.40.1", + "release": "6.el9", + "installdate": "1674235558", + "arch": "noarch" + }, + "python3-gobject-base": { + "epoch": "0", + "version": "3.40.1", + "release": "6.el9", + "installdate": "1674235558", + "arch": "x86_64" + }, + "python3-setuptools": { + "epoch": "0", + "version": "53.0.0", + "release": "12.el9", + "installdate": "1674235558", + "arch": "noarch" + }, + "python3-libselinux": { + "epoch": "0", + "version": "3.5", + "release": "0.rc1.1.el9", + "installdate": "1674235558", + "arch": "x86_64" + }, + "python3-libsemanage": { + "epoch": "0", + "version": "3.5", + "release": "0.rc1.1.el9", + "installdate": "1674235558", + "arch": "x86_64" + }, + "python3-setools": { + "epoch": "0", + "version": "4.4.0", + "release": "5.el9", + "installdate": "1674235558", + "arch": "x86_64" + }, + "python3-distro": { + "epoch": "0", + "version": "1.5.0", + "release": "7.el9", + "installdate": "1674235558", + "arch": "noarch" + }, + "python3-libcomps": { + "epoch": "0", + "version": "0.1.18", + "release": "1.el9", + "installdate": "1674235558", + "arch": "x86_64" + }, + "python3-pyyaml": { + "epoch": "0", + "version": "5.4.1", + "release": "6.el9", + "installdate": "1674235558", + "arch": "x86_64" + }, + "python3-six": { + "epoch": "0", + "version": "1.15.0", + "release": "9.el9", + "installdate": "1674235558", + "arch": "noarch" + }, + "python3-dateutil": { + "epoch": "1", + "version": "2.8.1", + "release": "6.el9", + "installdate": "1674235558", + "arch": "noarch" + }, + "python3-systemd": { + "epoch": "0", + "version": "234", + "release": "18.el9", + "installdate": "1674235558", + "arch": "x86_64" + }, + "libcap-ng-python3": { + "epoch": "0", + "version": "0.8.2", + "release": "7.el9", + "installdate": "1674235558", + "arch": "x86_64" + }, + "python3-audit": { + "epoch": "0", + "version": "3.0.7", + "release": "103.el9", + "installdate": "1674235558", + "arch": "x86_64" + }, + "pigz": { + "epoch": "0", + "version": "2.5", + "release": "4.el9", + "installdate": "1674235558", + "arch": "x86_64" + }, + "hostname": { + "epoch": "0", + "version": "3.23", + "release": "6.el9", + "installdate": "1674235558", + "arch": "x86_64" + }, + "kernel-tools-libs": { + "epoch": "0", + "version": "5.14.0", + "release": "234.el9", + "installdate": "1674235558", + "arch": "x86_64" + }, + "less": { + "epoch": "0", + "version": "590", + "release": "1.el9", + "installdate": "1674235559", + "arch": "x86_64" + }, + "systemd-rpm-macros": { + "epoch": "0", + "version": "252", + "release": "2.el9", + "installdate": "1674235559", + "arch": "noarch" + }, + "psmisc": { + "epoch": "0", + "version": "23.4", + "release": "3.el9", + "installdate": "1674235559", + "arch": "x86_64" + }, + "iproute": { + "epoch": "0", + "version": "6.0.0", + "release": "2.el9", + "installdate": "1674235559", + "arch": "x86_64" + }, + "c-ares": { + "epoch": "0", + "version": "1.17.1", + "release": "5.el9", + "installdate": "1674235559", + "arch": "x86_64" + }, + "cpio": { + "epoch": "0", + "version": "2.13", + "release": "16.el9", + "installdate": "1674235559", + "arch": "x86_64" + }, + "diffutils": { + "epoch": "0", + "version": "3.7", + "release": "12.el9", + "installdate": "1674235559", + "arch": "x86_64" + }, + "inih": { + "epoch": "0", + "version": "49", + "release": "6.el9", + "installdate": "1674235559", + "arch": "x86_64" + }, + "libbrotli": { + "epoch": "0", + "version": "1.0.9", + "release": "6.el9", + "installdate": "1674235559", + "arch": "x86_64" + }, + "libcbor": { + "epoch": "0", + "version": "0.7.0", + "release": "5.el9", + "installdate": "1674235559", + "arch": "x86_64" + }, + "libdaemon": { + "epoch": "0", + "version": "0.14", + "release": "23.el9", + "installdate": "1674235559", + "arch": "x86_64" + }, + "teamd": { + "epoch": "0", + "version": "1.31", + "release": "16.el9", + "installdate": "1674235559", + "arch": "x86_64" + }, + "libeconf": { + "epoch": "0", + "version": "0.4.1", + "release": "2.el9", + "installdate": "1674235559", + "arch": "x86_64" + }, + "libpwquality": { + "epoch": "0", + "version": "1.4.4", + "release": "8.el9", + "installdate": "1674235559", + "arch": "x86_64" + }, + "pam": { + "epoch": "0", + "version": "1.5.1", + "release": "14.el9", + "installdate": "1674235559", + "arch": "x86_64" + }, + "util-linux": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1674235559", + "arch": "x86_64" + }, + "dbus": { + "epoch": "1", + "version": "1.12.20", + "release": "7.el9", + "installdate": "1674235559", + "arch": "x86_64" + }, + "systemd-pam": { + "epoch": "0", + "version": "252", + "release": "2.el9", + "installdate": "1674235559", + "arch": "x86_64" + }, + "systemd": { + "epoch": "0", + "version": "252", + "release": "2.el9", + "installdate": "1674235560", + "arch": "x86_64" + }, + "dbus-common": { + "epoch": "1", + "version": "1.12.20", + "release": "7.el9", + "installdate": "1674235560", + "arch": "noarch" + }, + "dbus-broker": { + "epoch": "0", + "version": "28", + "release": "7.el9", + "installdate": "1674235560", + "arch": "x86_64" + }, + "grub2-common": { + "epoch": "1", + "version": "2.06", + "release": "46.el9", + "installdate": "1674235560", + "arch": "noarch" + }, + "cronie-anacron": { + "epoch": "0", + "version": "1.5.7", + "release": "8.el9", + "installdate": "1674235560", + "arch": "x86_64" + }, + "cronie": { + "epoch": "0", + "version": "1.5.7", + "release": "8.el9", + "installdate": "1674235560", + "arch": "x86_64" + }, + "crontabs": { + "epoch": "0", + "version": "1.11", + "release": "26.20190603git.el9", + "installdate": "1674235560", + "arch": "noarch" + }, + "openssh": { + "epoch": "0", + "version": "8.7p1", + "release": "25.el9", + "installdate": "1674235560", + "arch": "x86_64" + }, + "grub2-pc-modules": { + "epoch": "1", + "version": "2.06", + "release": "46.el9", + "installdate": "1674235560", + "arch": "noarch" + }, + "authselect-libs": { + "epoch": "0", + "version": "1.2.6", + "release": "1.el9", + "installdate": "1674235560", + "arch": "x86_64" + }, + "device-mapper-libs": { + "epoch": "9", + "version": "1.02.187", + "release": "4.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "device-mapper": { + "epoch": "9", + "version": "1.02.187", + "release": "4.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "grub2-tools-minimal": { + "epoch": "1", + "version": "2.06", + "release": "46.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "cryptsetup-libs": { + "epoch": "0", + "version": "2.6.0", + "release": "2.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "kpartx": { + "epoch": "0", + "version": "0.8.7", + "release": "16.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "elfutils-default-yama-scope": { + "epoch": "0", + "version": "0.188", + "release": "3.el9", + "installdate": "1674235561", + "arch": "noarch" + }, + "elfutils-libs": { + "epoch": "0", + "version": "0.188", + "release": "3.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "initscripts-service": { + "epoch": "0", + "version": "10.11.5", + "release": "1.el9", + "installdate": "1674235561", + "arch": "noarch" + }, + "iputils": { + "epoch": "0", + "version": "20210202", + "release": "8.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "libkcapi": { + "epoch": "0", + "version": "1.3.1", + "release": "3.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "libkcapi-hmaccalc": { + "epoch": "0", + "version": "1.3.1", + "release": "3.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "logrotate": { + "epoch": "0", + "version": "3.18.0", + "release": "7.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "kbd": { + "epoch": "0", + "version": "2.4.0", + "release": "8.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "libuser": { + "epoch": "0", + "version": "0.63", + "release": "12.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "libev": { + "epoch": "0", + "version": "4.33", + "release": "5.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "libverto-libev": { + "epoch": "0", + "version": "0.3.2", + "release": "3.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "libndp": { + "epoch": "0", + "version": "1.8", + "release": "4.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "libnfnetlink": { + "epoch": "0", + "version": "1.0.1", + "release": "21.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "libnetfilter_conntrack": { + "epoch": "0", + "version": "1.0.9", + "release": "1.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "iptables-libs": { + "epoch": "0", + "version": "1.8.8", + "release": "6.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "iptables-nft": { + "epoch": "0", + "version": "1.8.8", + "release": "6.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "nftables": { + "epoch": "1", + "version": "1.0.4", + "release": "3.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "python3-nftables": { + "epoch": "1", + "version": "1.0.4", + "release": "3.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "python3-firewall": { + "epoch": "0", + "version": "1.2.1", + "release": "1.el9", + "installdate": "1674235561", + "arch": "noarch" + }, + "libnghttp2": { + "epoch": "0", + "version": "1.43.0", + "release": "5.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "libcurl": { + "epoch": "0", + "version": "7.76.1", + "release": "22.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "tpm2-tss": { + "epoch": "0", + "version": "3.0.3", + "release": "8.el9", + "installdate": "1674235561", + "arch": "x86_64" + }, + "systemd-udev": { + "epoch": "0", + "version": "252", + "release": "2.el9", + "installdate": "1674235562", + "arch": "x86_64" + }, + "dracut": { + "epoch": "0", + "version": "057", + "release": "20.git20221213.el9", + "installdate": "1674235562", + "arch": "x86_64" + }, + "NetworkManager": { + "epoch": "1", + "version": "1.41.8", + "release": "1.el9", + "installdate": "1674235562", + "arch": "x86_64" + }, + "kernel-core": { + "epoch": "0", + "version": "5.14.0", + "release": "234.el9", + "installdate": "1674235564", + "arch": "x86_64" + }, + "kernel-modules": { + "epoch": "0", + "version": "5.14.0", + "release": "234.el9", + "installdate": "1674235565", + "arch": "x86_64" + }, + "dracut-network": { + "epoch": "0", + "version": "057", + "release": "20.git20221213.el9", + "installdate": "1674235573", + "arch": "x86_64" + }, + "dracut-squash": { + "epoch": "0", + "version": "057", + "release": "20.git20221213.el9", + "installdate": "1674235573", + "arch": "x86_64" + }, + "libfido2": { + "epoch": "0", + "version": "1.6.0", + "release": "7.el9", + "installdate": "1674235573", + "arch": "x86_64" + }, + "os-prober": { + "epoch": "0", + "version": "1.77", + "release": "9.el9", + "installdate": "1674235573", + "arch": "x86_64" + }, + "ima-evm-utils": { + "epoch": "0", + "version": "1.4", + "release": "4.el9", + "installdate": "1674235573", + "arch": "x86_64" + }, + "curl": { + "epoch": "0", + "version": "7.76.1", + "release": "22.el9", + "installdate": "1674235573", + "arch": "x86_64" + }, + "rpm": { + "epoch": "0", + "version": "4.16.1.3", + "release": "22.el9", + "installdate": "1674235573", + "arch": "x86_64" + }, + "rpm-libs": { + "epoch": "0", + "version": "4.16.1.3", + "release": "22.el9", + "installdate": "1674235573", + "arch": "x86_64" + }, + "policycoreutils": { + "epoch": "0", + "version": "3.5", + "release": "0.rc1.2.el9", + "installdate": "1674235573", + "arch": "x86_64" + }, + "selinux-policy": { + "epoch": "0", + "version": "38.1.4", + "release": "1.el9", + "installdate": "1674235573", + "arch": "noarch" + }, + "selinux-policy-targeted": { + "epoch": "0", + "version": "38.1.4", + "release": "1.el9", + "installdate": "1674235574", + "arch": "noarch" + }, + "grub2-tools": { + "epoch": "1", + "version": "2.06", + "release": "46.el9", + "installdate": "1674235582", + "arch": "x86_64" + }, + "grubby": { + "epoch": "0", + "version": "8.40", + "release": "61.el9", + "installdate": "1674235582", + "arch": "x86_64" + }, + "libmodulemd": { + "epoch": "0", + "version": "2.13.0", + "release": "2.el9", + "installdate": "1674235582", + "arch": "x86_64" + }, + "libsolv": { + "epoch": "0", + "version": "0.7.22", + "release": "4.el9", + "installdate": "1674235582", + "arch": "x86_64" + }, + "rpcbind": { + "epoch": "0", + "version": "1.2.6", + "release": "5.el9", + "installdate": "1674235582", + "arch": "x86_64" + }, + "python3-policycoreutils": { + "epoch": "0", + "version": "3.5", + "release": "0.rc1.2.el9", + "installdate": "1674235583", + "arch": "noarch" + }, + "policycoreutils-python-utils": { + "epoch": "0", + "version": "3.5", + "release": "0.rc1.2.el9", + "installdate": "1674235583", + "arch": "noarch" + }, + "rpm-build-libs": { + "epoch": "0", + "version": "4.16.1.3", + "release": "22.el9", + "installdate": "1674235583", + "arch": "x86_64" + }, + "rpm-plugin-systemd-inhibit": { + "epoch": "0", + "version": "4.16.1.3", + "release": "22.el9", + "installdate": "1674235583", + "arch": "x86_64" + }, + "libpath_utils": { + "epoch": "0", + "version": "0.2.1", + "release": "53.el9", + "installdate": "1674235583", + "arch": "x86_64" + }, + "libini_config": { + "epoch": "0", + "version": "1.3.1", + "release": "53.el9", + "installdate": "1674235583", + "arch": "x86_64" + }, + "gssproxy": { + "epoch": "0", + "version": "0.8.4", + "release": "4.el9", + "installdate": "1674235583", + "arch": "x86_64" + }, + "libpipeline": { + "epoch": "0", + "version": "1.5.3", + "release": "4.el9", + "installdate": "1674235583", + "arch": "x86_64" + }, + "libsss_nss_idmap": { + "epoch": "0", + "version": "2.8.2", + "release": "1.el9", + "installdate": "1674235583", + "arch": "x86_64" + }, + "sssd-client": { + "epoch": "0", + "version": "2.8.2", + "release": "1.el9", + "installdate": "1674235583", + "arch": "x86_64" + }, + "libsss_sudo": { + "epoch": "0", + "version": "2.8.2", + "release": "1.el9", + "installdate": "1674235583", + "arch": "x86_64" + }, + "lmdb-libs": { + "epoch": "0", + "version": "0.9.29", + "release": "3.el9", + "installdate": "1674235583", + "arch": "x86_64" + }, + "libldb": { + "epoch": "0", + "version": "2.6.1", + "release": "1.el9", + "installdate": "1674235583", + "arch": "x86_64" + }, + "sssd-common": { + "epoch": "0", + "version": "2.8.2", + "release": "1.el9", + "installdate": "1674235583", + "arch": "x86_64" + }, + "npth": { + "epoch": "0", + "version": "1.6", + "release": "8.el9", + "installdate": "1674235583", + "arch": "x86_64" + }, + "gnupg2": { + "epoch": "0", + "version": "2.3.3", + "release": "2.el9", + "installdate": "1674235583", + "arch": "x86_64" + }, + "gpgme": { + "epoch": "0", + "version": "1.15.1", + "release": "6.el9", + "installdate": "1674235583", + "arch": "x86_64" + }, + "librepo": { + "epoch": "0", + "version": "1.14.5", + "release": "1.el9", + "installdate": "1674235583", + "arch": "x86_64" + }, + "libdnf": { + "epoch": "0", + "version": "0.69.0", + "release": "2.el9", + "installdate": "1674235583", + "arch": "x86_64" + }, + "python3-libdnf": { + "epoch": "0", + "version": "0.69.0", + "release": "2.el9", + "installdate": "1674235583", + "arch": "x86_64" + }, + "python3-hawkey": { + "epoch": "0", + "version": "0.69.0", + "release": "2.el9", + "installdate": "1674235583", + "arch": "x86_64" + }, + "python3-gpg": { + "epoch": "0", + "version": "1.15.1", + "release": "6.el9", + "installdate": "1674235583", + "arch": "x86_64" + }, + "rpm-sign-libs": { + "epoch": "0", + "version": "4.16.1.3", + "release": "22.el9", + "installdate": "1674235583", + "arch": "x86_64" + }, + "python3-rpm": { + "epoch": "0", + "version": "4.16.1.3", + "release": "22.el9", + "installdate": "1674235583", + "arch": "x86_64" + }, + "python3-dnf": { + "epoch": "0", + "version": "4.14.0", + "release": "4.el9", + "installdate": "1674235583", + "arch": "noarch" + }, + "dnf": { + "epoch": "0", + "version": "4.14.0", + "release": "4.el9", + "installdate": "1674235584", + "arch": "noarch" + }, + "python3-dnf-plugins-core": { + "epoch": "0", + "version": "4.3.0", + "release": "4.el9", + "installdate": "1674235584", + "arch": "noarch" + }, + "dnf-plugins-core": { + "epoch": "0", + "version": "4.3.0", + "release": "4.el9", + "installdate": "1674235584", + "arch": "noarch" + }, + "numactl-libs": { + "epoch": "0", + "version": "2.0.14", + "release": "7.el9", + "installdate": "1674235584", + "arch": "x86_64" + }, + "pciutils-libs": { + "epoch": "0", + "version": "3.7.0", + "release": "5.el9", + "installdate": "1674235584", + "arch": "x86_64" + }, + "sg3_utils-libs": { + "epoch": "0", + "version": "1.47", + "release": "9.el9", + "installdate": "1674235584", + "arch": "x86_64" + }, + "slang": { + "epoch": "0", + "version": "2.3.2", + "release": "11.el9", + "installdate": "1674235584", + "arch": "x86_64" + }, + "newt": { + "epoch": "0", + "version": "0.52.21", + "release": "11.el9", + "installdate": "1674235584", + "arch": "x86_64" + }, + "userspace-rcu": { + "epoch": "0", + "version": "0.12.1", + "release": "6.el9", + "installdate": "1674235584", + "arch": "x86_64" + }, + "libestr": { + "epoch": "0", + "version": "0.1.11", + "release": "4.el9", + "installdate": "1674235584", + "arch": "x86_64" + }, + "libfastjson": { + "epoch": "0", + "version": "0.99.9", + "release": "3.el9", + "installdate": "1674235584", + "arch": "x86_64" + }, + "rsyslog-logrotate": { + "epoch": "0", + "version": "8.2102.0", + "release": "109.el9", + "installdate": "1674235584", + "arch": "x86_64" + }, + "rsyslog": { + "epoch": "0", + "version": "8.2102.0", + "release": "109.el9", + "installdate": "1674235584", + "arch": "x86_64" + }, + "m4": { + "epoch": "0", + "version": "1.4.19", + "release": "1.el9", + "installdate": "1674235584", + "arch": "x86_64" + }, + "policycoreutils-devel": { + "epoch": "0", + "version": "3.5", + "release": "0.rc1.2.el9", + "installdate": "1674235584", + "arch": "x86_64" + }, + "selinux-policy-devel": { + "epoch": "0", + "version": "38.1.4", + "release": "1.el9", + "installdate": "1674235585", + "arch": "noarch" + }, + "langpacks-core-en": { + "epoch": "0", + "version": "3.0", + "release": "16.el9", + "installdate": "1674235591", + "arch": "noarch" + }, + "langpacks-en": { + "epoch": "0", + "version": "3.0", + "release": "16.el9", + "installdate": "1674235591", + "arch": "noarch" + }, + "xfsprogs": { + "epoch": "0", + "version": "5.14.2", + "release": "1.el9", + "installdate": "1674235591", + "arch": "x86_64" + }, + "NetworkManager-tui": { + "epoch": "1", + "version": "1.41.8", + "release": "1.el9", + "installdate": "1674235591", + "arch": "x86_64" + }, + "sg3_utils": { + "epoch": "0", + "version": "1.47", + "release": "9.el9", + "installdate": "1674235591", + "arch": "x86_64" + }, + "kernel-tools": { + "epoch": "0", + "version": "5.14.0", + "release": "234.el9", + "installdate": "1674235591", + "arch": "x86_64" + }, + "irqbalance": { + "epoch": "2", + "version": "1.9.0", + "release": "3.el9", + "installdate": "1674235591", + "arch": "x86_64" + }, + "yum-utils": { + "epoch": "0", + "version": "4.3.0", + "release": "4.el9", + "installdate": "1674235591", + "arch": "noarch" + }, + "yum": { + "epoch": "0", + "version": "4.14.0", + "release": "4.el9", + "installdate": "1674235591", + "arch": "noarch" + }, + "sssd-kcm": { + "epoch": "0", + "version": "2.8.2", + "release": "1.el9", + "installdate": "1674235591", + "arch": "x86_64" + }, + "man-db": { + "epoch": "0", + "version": "2.9.3", + "release": "7.el9", + "installdate": "1674235591", + "arch": "x86_64" + }, + "nfs-utils": { + "epoch": "1", + "version": "2.5.4", + "release": "17.el9", + "installdate": "1674235592", + "arch": "x86_64" + }, + "crypto-policies-scripts": { + "epoch": "0", + "version": "20221215", + "release": "1.git9a18988.el9", + "installdate": "1674235592", + "arch": "noarch" + }, + "kexec-tools": { + "epoch": "0", + "version": "2.0.25", + "release": "11.el9", + "installdate": "1674235592", + "arch": "x86_64" + }, + "grub2-pc": { + "epoch": "1", + "version": "2.06", + "release": "46.el9", + "installdate": "1674235592", + "arch": "x86_64" + }, + "rpm-plugin-selinux": { + "epoch": "0", + "version": "4.16.1.3", + "release": "22.el9", + "installdate": "1674235592", + "arch": "x86_64" + }, + "rpm-plugin-audit": { + "epoch": "0", + "version": "4.16.1.3", + "release": "22.el9", + "installdate": "1674235592", + "arch": "x86_64" + }, + "openssh-clients": { + "epoch": "0", + "version": "8.7p1", + "release": "25.el9", + "installdate": "1674235592", + "arch": "x86_64" + }, + "kernel": { + "epoch": "0", + "version": "5.14.0", + "release": "234.el9", + "installdate": "1674235592", + "arch": "x86_64" + }, + "NetworkManager-team": { + "epoch": "1", + "version": "1.41.8", + "release": "1.el9", + "installdate": "1674235592", + "arch": "x86_64" + }, + "dracut-config-rescue": { + "epoch": "0", + "version": "057", + "release": "20.git20221213.el9", + "installdate": "1674235592", + "arch": "x86_64" + }, + "firewalld": { + "epoch": "0", + "version": "1.2.1", + "release": "1.el9", + "installdate": "1674235592", + "arch": "noarch" + }, + "iproute-tc": { + "epoch": "0", + "version": "6.0.0", + "release": "2.el9", + "installdate": "1674235592", + "arch": "x86_64" + }, + "passwd": { + "epoch": "0", + "version": "0.80", + "release": "12.el9", + "installdate": "1674235592", + "arch": "x86_64" + }, + "audit": { + "epoch": "0", + "version": "3.0.7", + "release": "103.el9", + "installdate": "1674235592", + "arch": "x86_64" + }, + "parted": { + "epoch": "0", + "version": "3.5", + "release": "2.el9", + "installdate": "1674235592", + "arch": "x86_64" + }, + "authselect": { + "epoch": "0", + "version": "1.2.6", + "release": "1.el9", + "installdate": "1674235592", + "arch": "x86_64" + }, + "openssh-server": { + "epoch": "0", + "version": "8.7p1", + "release": "25.el9", + "installdate": "1674235593", + "arch": "x86_64" + }, + "chrony": { + "epoch": "0", + "version": "4.3", + "release": "1.el9", + "installdate": "1674235593", + "arch": "x86_64" + }, + "net-tools": { + "epoch": "0", + "version": "2.0", + "release": "0.62.20160912git.el9", + "installdate": "1674235593", + "arch": "x86_64" + }, + "sudo": { + "epoch": "0", + "version": "1.9.5p2", + "release": "8.el9", + "installdate": "1674235593", + "arch": "x86_64" + }, + "e2fsprogs": { + "epoch": "0", + "version": "1.46.5", + "release": "3.el9", + "installdate": "1674235593", + "arch": "x86_64" + }, + "initscripts-rename-device": { + "epoch": "0", + "version": "10.11.5", + "release": "1.el9", + "installdate": "1674235593", + "arch": "x86_64" + }, + "prefixdevname": { + "epoch": "0", + "version": "0.1.0", + "release": "8.el9", + "installdate": "1674235593", + "arch": "x86_64" + }, + "rsync": { + "epoch": "0", + "version": "3.2.3", + "release": "19.el9", + "installdate": "1674235593", + "arch": "x86_64" + }, + "wget": { + "epoch": "0", + "version": "1.21.1", + "release": "7.el9", + "installdate": "1674235593", + "arch": "x86_64" + }, + "tar": { + "epoch": "2", + "version": "1.34", + "release": "5.el9", + "installdate": "1674235593", + "arch": "x86_64" + }, + "vim-minimal": { + "epoch": "2", + "version": "8.2.2637", + "release": "16.el9", + "installdate": "1674235593", + "arch": "x86_64" + }, + "lshw": { + "epoch": "0", + "version": "B.02.19.2", + "release": "9.el9", + "installdate": "1674235593", + "arch": "x86_64" + }, + "bzip2": { + "epoch": "0", + "version": "1.0.8", + "release": "8.el9", + "installdate": "1674235593", + "arch": "x86_64" + }, + "ncurses": { + "epoch": "0", + "version": "6.2", + "release": "8.20210508.el9", + "installdate": "1674235593", + "arch": "x86_64" + }, + "libsysfs": { + "epoch": "0", + "version": "2.1.1", + "release": "10.el9", + "installdate": "1674235593", + "arch": "x86_64" + }, + "lsscsi": { + "epoch": "0", + "version": "0.32", + "release": "6.el9", + "installdate": "1674235593", + "arch": "x86_64" + }, + "rootfiles": { + "epoch": "0", + "version": "8.1", + "release": "31.el9", + "installdate": "1674235593", + "arch": "noarch" + }, + "gpg-pubkey": { + "epoch": "0", + "version": "8483c65d", + "release": "5ccc5b19", + "installdate": "1674235842", + "arch": "(none)" + }, + "chef": { + "epoch": "0", + "version": "18.1.0", + "release": "1.el9", + "installdate": "1675119682", + "arch": "x86_64" + } + }, + "platform": "centos", + "platform_family": "rhel", + "platform_version": "9", + "root_group": "root", + "shells": [ + "/bin/sh", + "/bin/bash", + "/usr/bin/sh", + "/usr/bin/bash" + ], + "time": { + "timezone": "GMT" + }, + "uptime": "30 days 15 hours 07 minutes 30 seconds", + "uptime_seconds": 2646450, + "virtualization": { + "systems": { + } + } +} diff --git a/lib/fauxhai/platforms/debian/12.json b/lib/fauxhai/platforms/debian/12.json new file mode 100644 index 00000000..a111ccd1 --- /dev/null +++ b/lib/fauxhai/platforms/debian/12.json @@ -0,0 +1,3063 @@ +{ + "block_device": { + "loop0": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop1": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop2": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop3": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop4": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop5": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop6": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop7": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "sda": { + "size": "62914560", + "removable": "0", + "model": "QEMU HARDDISK", + "rev": "2.5+", + "state": "running", + "timeout": "30", + "vendor": "QEMU", + "queue_depth": "128", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + } + }, + "chef_packages": { + "chef": { + "version": "17.6.18", + "chef_root": "/opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/chef-17.6.18/lib", + "chef_effortless": null + }, + "ohai": { + "version": "17.6.0", + "ohai_root": "/opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/ohai-17.6.0/lib/ohai" + } + }, + "command": { + "ps": "ps -ef" + }, + "counters": { + "network": { + "interfaces": { + "lo": { + "tx": { + "queuelen": "1", + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "carrier": 0, + "collisions": 0 + }, + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0 + } + }, + "eth0": { + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "frame": 0, + "compressed": 0, + "multicast": 0 + }, + "tx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "collisions": 0, + "carrier": 0, + "compressed": 0 + } + } + } + } + }, + "cpu": { + "real": 1, + "total": 1, + "cores": 1 + }, + "current_user": "fauxhai", + "dmi": { + }, + "domain": "local", + "filesystem": { + "by_device": { + "udev": { + "kb_size": "1985232", + "kb_used": "0", + "kb_available": "1985232", + "percent_used": "0%", + "total_inodes": "496308", + "inodes_used": "363", + "inodes_available": "495945", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "relatime", + "size=1985232k", + "nr_inodes=496308", + "mode=755", + "inode64" + ], + "mounts": [ + "/dev" + ] + }, + "tmpfs": { + "kb_size": "400948", + "kb_used": "0", + "kb_available": "400948", + "percent_used": "0%", + "total_inodes": "100237", + "inodes_used": "11", + "inodes_available": "100226", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "size=400948k", + "nr_inodes=100237", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ], + "mounts": [ + "/run", + "/dev/shm", + "/run/lock", + "/run/user/1000" + ] + }, + "/dev/sda1": { + "kb_size": "30791432", + "kb_used": "2110456", + "kb_available": "27391968", + "percent_used": "8%", + "total_inodes": "1957888", + "inodes_used": "75531", + "inodes_available": "1882357", + "inodes_percent_used": "4%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime", + "discard", + "errors=remount-ro", + "mb_optimize_scan=0" + ], + "uuid": "b941eace-3a47-46d3-a499-2bc65aeb7f76", + "mounts": [ + "/" + ] + }, + "/dev/sda15": { + "kb_size": "126678", + "kb_used": "11816", + "kb_available": "114862", + "percent_used": "10%", + "fs_type": "vfat", + "mount_options": [ + "rw", + "relatime", + "fmask=0022", + "dmask=0022", + "codepage=437", + "iocharset=ascii", + "shortname=mixed", + "utf8", + "errors=remount-ro" + ], + "uuid": "9083-EEE7", + "mounts": [ + "/boot/efi" + ] + }, + "sysfs": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys" + ] + }, + "proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/proc" + ] + }, + "devpts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "mounts": [ + "/dev/pts" + ] + }, + "securityfs": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/security" + ] + }, + "cgroup2": { + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "nsdelegate", + "memory_recursiveprot" + ], + "mounts": [ + "/sys/fs/cgroup" + ] + }, + "pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/fs/pstore" + ] + }, + "bpf": { + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "mounts": [ + "/sys/fs/bpf" + ] + }, + "systemd-1": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=30", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=13273" + ], + "mounts": [ + "/proc/sys/fs/binfmt_misc" + ] + }, + "debugfs": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/debug" + ] + }, + "hugetlbfs": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "pagesize=2M" + ], + "mounts": [ + "/dev/hugepages" + ] + }, + "tracefs": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/tracing" + ] + }, + "mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/dev/mqueue" + ] + }, + "fusectl": { + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/fs/fuse/connections" + ] + }, + "configfs": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/config" + ] + }, + "ramfs": { + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "mounts": [ + "/run/credentials/systemd-sysctl.service", + "/run/credentials/systemd-sysusers.service", + "/run/credentials/systemd-tmpfiles-setup-dev.service", + "/run/credentials/systemd-tmpfiles-setup.service" + ] + }, + "binfmt_misc": { + "fs_type": "binfmt_misc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/proc/sys/fs/binfmt_misc" + ] + }, + "/dev/sda": { + "mounts": [ + + ] + }, + "/dev/sda14": { + "mounts": [ + + ] + } + }, + "by_mountpoint": { + "/dev": { + "kb_size": "1985232", + "kb_used": "0", + "kb_available": "1985232", + "percent_used": "0%", + "total_inodes": "496308", + "inodes_used": "363", + "inodes_available": "495945", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "relatime", + "size=1985232k", + "nr_inodes=496308", + "mode=755", + "inode64" + ], + "devices": [ + "udev" + ] + }, + "/run": { + "kb_size": "400952", + "kb_used": "556", + "kb_available": "400396", + "percent_used": "1%", + "total_inodes": "501185", + "inodes_used": "547", + "inodes_available": "500638", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "size=400952k", + "mode=755", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/": { + "kb_size": "30791432", + "kb_used": "2110456", + "kb_available": "27391968", + "percent_used": "8%", + "total_inodes": "1957888", + "inodes_used": "75531", + "inodes_available": "1882357", + "inodes_percent_used": "4%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime", + "discard", + "errors=remount-ro", + "mb_optimize_scan=0" + ], + "uuid": "b941eace-3a47-46d3-a499-2bc65aeb7f76", + "devices": [ + "/dev/sda1" + ] + }, + "/dev/shm": { + "kb_size": "2004740", + "kb_used": "0", + "kb_available": "2004740", + "percent_used": "0%", + "total_inodes": "501185", + "inodes_used": "1", + "inodes_available": "501184", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/run/lock": { + "kb_size": "5120", + "kb_used": "0", + "kb_available": "5120", + "percent_used": "0%", + "total_inodes": "501185", + "inodes_used": "2", + "inodes_available": "501183", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "size=5120k", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/boot/efi": { + "kb_size": "126678", + "kb_used": "11816", + "kb_available": "114862", + "percent_used": "10%", + "fs_type": "vfat", + "mount_options": [ + "rw", + "relatime", + "fmask=0022", + "dmask=0022", + "codepage=437", + "iocharset=ascii", + "shortname=mixed", + "utf8", + "errors=remount-ro" + ], + "uuid": "9083-EEE7", + "devices": [ + "/dev/sda15" + ] + }, + "/run/user/1000": { + "kb_size": "400948", + "kb_used": "0", + "kb_available": "400948", + "percent_used": "0%", + "total_inodes": "100237", + "inodes_used": "11", + "inodes_available": "100226", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "size=400948k", + "nr_inodes=100237", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/sys": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "sysfs" + ] + }, + "/proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "proc" + ] + }, + "/dev/pts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "devices": [ + "devpts" + ] + }, + "/sys/kernel/security": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "securityfs" + ] + }, + "/sys/fs/cgroup": { + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "nsdelegate", + "memory_recursiveprot" + ], + "devices": [ + "cgroup2" + ] + }, + "/sys/fs/pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "pstore" + ] + }, + "/sys/fs/bpf": { + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "devices": [ + "bpf" + ] + }, + "/proc/sys/fs/binfmt_misc": { + "fs_type": "binfmt_misc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "systemd-1", + "binfmt_misc" + ] + }, + "/sys/kernel/debug": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "debugfs" + ] + }, + "/dev/hugepages": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "pagesize=2M" + ], + "devices": [ + "hugetlbfs" + ] + }, + "/sys/kernel/tracing": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "tracefs" + ] + }, + "/dev/mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "mqueue" + ] + }, + "/sys/fs/fuse/connections": { + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "fusectl" + ] + }, + "/sys/kernel/config": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "configfs" + ] + }, + "/run/credentials/systemd-sysctl.service": { + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "devices": [ + "ramfs" + ] + }, + "/run/credentials/systemd-sysusers.service": { + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "devices": [ + "ramfs" + ] + }, + "/run/credentials/systemd-tmpfiles-setup-dev.service": { + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "devices": [ + "ramfs" + ] + }, + "/run/credentials/systemd-tmpfiles-setup.service": { + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "devices": [ + "ramfs" + ] + } + }, + "by_pair": { + "udev,/dev": { + "device": "udev", + "kb_size": "1985232", + "kb_used": "0", + "kb_available": "1985232", + "percent_used": "0%", + "mount": "/dev", + "total_inodes": "496308", + "inodes_used": "363", + "inodes_available": "495945", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "relatime", + "size=1985232k", + "nr_inodes=496308", + "mode=755", + "inode64" + ] + }, + "tmpfs,/run": { + "device": "tmpfs", + "kb_size": "400952", + "kb_used": "556", + "kb_available": "400396", + "percent_used": "1%", + "mount": "/run", + "total_inodes": "501185", + "inodes_used": "547", + "inodes_available": "500638", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "size=400952k", + "mode=755", + "inode64" + ] + }, + "/dev/sda1,/": { + "device": "/dev/sda1", + "kb_size": "30791432", + "kb_used": "2110456", + "kb_available": "27391968", + "percent_used": "8%", + "mount": "/", + "total_inodes": "1957888", + "inodes_used": "75531", + "inodes_available": "1882357", + "inodes_percent_used": "4%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime", + "discard", + "errors=remount-ro", + "mb_optimize_scan=0" + ], + "uuid": "b941eace-3a47-46d3-a499-2bc65aeb7f76" + }, + "tmpfs,/dev/shm": { + "device": "tmpfs", + "kb_size": "2004740", + "kb_used": "0", + "kb_available": "2004740", + "percent_used": "0%", + "mount": "/dev/shm", + "total_inodes": "501185", + "inodes_used": "1", + "inodes_available": "501184", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "inode64" + ] + }, + "tmpfs,/run/lock": { + "device": "tmpfs", + "kb_size": "5120", + "kb_used": "0", + "kb_available": "5120", + "percent_used": "0%", + "mount": "/run/lock", + "total_inodes": "501185", + "inodes_used": "2", + "inodes_available": "501183", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "size=5120k", + "inode64" + ] + }, + "/dev/sda15,/boot/efi": { + "device": "/dev/sda15", + "kb_size": "126678", + "kb_used": "11816", + "kb_available": "114862", + "percent_used": "10%", + "mount": "/boot/efi", + "fs_type": "vfat", + "mount_options": [ + "rw", + "relatime", + "fmask=0022", + "dmask=0022", + "codepage=437", + "iocharset=ascii", + "shortname=mixed", + "utf8", + "errors=remount-ro" + ], + "uuid": "9083-EEE7" + }, + "tmpfs,/run/user/1000": { + "device": "tmpfs", + "kb_size": "400948", + "kb_used": "0", + "kb_available": "400948", + "percent_used": "0%", + "mount": "/run/user/1000", + "total_inodes": "100237", + "inodes_used": "11", + "inodes_available": "100226", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "size=400948k", + "nr_inodes=100237", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ] + }, + "sysfs,/sys": { + "device": "sysfs", + "mount": "/sys", + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "proc,/proc": { + "device": "proc", + "mount": "/proc", + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "devpts,/dev/pts": { + "device": "devpts", + "mount": "/dev/pts", + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "gid=5", + "mode=620", + "ptmxmode=000" + ] + }, + "securityfs,/sys/kernel/security": { + "device": "securityfs", + "mount": "/sys/kernel/security", + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "cgroup2,/sys/fs/cgroup": { + "device": "cgroup2", + "mount": "/sys/fs/cgroup", + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "nsdelegate", + "memory_recursiveprot" + ] + }, + "pstore,/sys/fs/pstore": { + "device": "pstore", + "mount": "/sys/fs/pstore", + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "bpf,/sys/fs/bpf": { + "device": "bpf", + "mount": "/sys/fs/bpf", + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ] + }, + "systemd-1,/proc/sys/fs/binfmt_misc": { + "device": "systemd-1", + "mount": "/proc/sys/fs/binfmt_misc", + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=30", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=13273" + ] + }, + "debugfs,/sys/kernel/debug": { + "device": "debugfs", + "mount": "/sys/kernel/debug", + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "hugetlbfs,/dev/hugepages": { + "device": "hugetlbfs", + "mount": "/dev/hugepages", + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "pagesize=2M" + ] + }, + "tracefs,/sys/kernel/tracing": { + "device": "tracefs", + "mount": "/sys/kernel/tracing", + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "mqueue,/dev/mqueue": { + "device": "mqueue", + "mount": "/dev/mqueue", + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "fusectl,/sys/fs/fuse/connections": { + "device": "fusectl", + "mount": "/sys/fs/fuse/connections", + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "configfs,/sys/kernel/config": { + "device": "configfs", + "mount": "/sys/kernel/config", + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "ramfs,/run/credentials/systemd-sysctl.service": { + "device": "ramfs", + "mount": "/run/credentials/systemd-sysctl.service", + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ] + }, + "ramfs,/run/credentials/systemd-sysusers.service": { + "device": "ramfs", + "mount": "/run/credentials/systemd-sysusers.service", + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ] + }, + "ramfs,/run/credentials/systemd-tmpfiles-setup-dev.service": { + "device": "ramfs", + "mount": "/run/credentials/systemd-tmpfiles-setup-dev.service", + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ] + }, + "ramfs,/run/credentials/systemd-tmpfiles-setup.service": { + "device": "ramfs", + "mount": "/run/credentials/systemd-tmpfiles-setup.service", + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ] + }, + "binfmt_misc,/proc/sys/fs/binfmt_misc": { + "device": "binfmt_misc", + "mount": "/proc/sys/fs/binfmt_misc", + "fs_type": "binfmt_misc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "/dev/sda,": { + "device": "/dev/sda" + }, + "/dev/sda14,": { + "device": "/dev/sda14" + } + } + }, + "fips": { + "kernel": { + "enabled": true + } + }, + "fqdn": "fauxhai.local", + "hostname": "Fauxhai", + "idle": "30 days 15 hours 07 minutes 30 seconds", + "idletime_seconds": 2646450, + "init_package": "systemd", + "ipaddress": "10.0.0.2", + "kernel": { + "name": "Linux", + "release": "6.1.0-10-amd64", + "version": "#1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03)", + "machine": "x86_64", + "processor": "unknown", + "os": "GNU/Linux", + "modules": { + "cfg80211": { + "size": "1134592", + "refcount": "0" + }, + "rfkill": { + "size": "36864", + "refcount": "2" + }, + "binfmt_misc": { + "size": "24576", + "refcount": "1" + }, + "intel_rapl_msr": { + "size": "20480", + "refcount": "0" + }, + "intel_rapl_common": { + "size": "32768", + "refcount": "1" + }, + "kvm_intel": { + "size": "380928", + "refcount": "0" + }, + "kvm": { + "size": "1146880", + "refcount": "1" + }, + "nls_ascii": { + "size": "16384", + "refcount": "1" + }, + "nls_cp437": { + "size": "20480", + "refcount": "1" + }, + "vfat": { + "size": "24576", + "refcount": "1" + }, + "irqbypass": { + "size": "16384", + "refcount": "1" + }, + "fat": { + "size": "90112", + "refcount": "1" + }, + "cirrus": { + "size": "16384", + "refcount": "0" + }, + "ghash_clmulni_intel": { + "size": "16384", + "refcount": "0" + }, + "sha512_ssse3": { + "size": "49152", + "refcount": "0" + }, + "drm_shmem_helper": { + "size": "20480", + "refcount": "1" + }, + "sha512_generic": { + "size": "16384", + "refcount": "1" + }, + "drm_kms_helper": { + "size": "204800", + "refcount": "3" + }, + "aesni_intel": { + "size": "393216", + "refcount": "0" + }, + "sg": { + "size": "40960", + "refcount": "0", + "version": "3.5.36" + }, + "crypto_simd": { + "size": "16384", + "refcount": "1" + }, + "cryptd": { + "size": "28672", + "refcount": "2" + }, + "virtio_balloon": { + "size": "24576", + "refcount": "0" + }, + "evdev": { + "size": "28672", + "refcount": "2" + }, + "virtio_console": { + "size": "40960", + "refcount": "0" + }, + "joydev": { + "size": "28672", + "refcount": "0" + }, + "serio_raw": { + "size": "20480", + "refcount": "0" + }, + "button": { + "size": "24576", + "refcount": "0" + }, + "drm": { + "size": "614400", + "refcount": "4" + }, + "dm_mod": { + "size": "184320", + "refcount": "0" + }, + "fuse": { + "size": "176128", + "refcount": "1" + }, + "configfs": { + "size": "57344", + "refcount": "1", + "version": "0.0.2" + }, + "loop": { + "size": "32768", + "refcount": "0" + }, + "efi_pstore": { + "size": "16384", + "refcount": "0" + }, + "qemu_fw_cfg": { + "size": "20480", + "refcount": "0" + }, + "ip_tables": { + "size": "36864", + "refcount": "0" + }, + "x_tables": { + "size": "61440", + "refcount": "1" + }, + "autofs4": { + "size": "53248", + "refcount": "2" + }, + "ext4": { + "size": "983040", + "refcount": "1" + }, + "crc16": { + "size": "16384", + "refcount": "1" + }, + "mbcache": { + "size": "16384", + "refcount": "1" + }, + "jbd2": { + "size": "167936", + "refcount": "1" + }, + "crc32c_generic": { + "size": "16384", + "refcount": "0" + }, + "hid_generic": { + "size": "16384", + "refcount": "0" + }, + "usbhid": { + "size": "65536", + "refcount": "0" + }, + "hid": { + "size": "155648", + "refcount": "2" + }, + "sd_mod": { + "size": "65536", + "refcount": "2" + }, + "t10_pi": { + "size": "16384", + "refcount": "1" + }, + "crc64_rocksoft": { + "size": "20480", + "refcount": "1" + }, + "crc64": { + "size": "20480", + "refcount": "1" + }, + "crc_t10dif": { + "size": "20480", + "refcount": "1" + }, + "crct10dif_generic": { + "size": "16384", + "refcount": "0" + }, + "uhci_hcd": { + "size": "57344", + "refcount": "0" + }, + "virtio_scsi": { + "size": "28672", + "refcount": "2" + }, + "ehci_hcd": { + "size": "102400", + "refcount": "0" + }, + "virtio_net": { + "size": "73728", + "refcount": "0" + }, + "net_failover": { + "size": "24576", + "refcount": "1" + }, + "crct10dif_pclmul": { + "size": "16384", + "refcount": "1" + }, + "crct10dif_common": { + "size": "16384", + "refcount": "3" + }, + "failover": { + "size": "16384", + "refcount": "1" + }, + "crc32_pclmul": { + "size": "16384", + "refcount": "0" + }, + "ata_generic": { + "size": "16384", + "refcount": "0", + "version": "0.2.15" + }, + "usbcore": { + "size": "348160", + "refcount": "3" + }, + "crc32c_intel": { + "size": "24576", + "refcount": "2" + }, + "ata_piix": { + "size": "45056", + "refcount": "0", + "version": "2.13" + }, + "libata": { + "size": "401408", + "refcount": "2", + "version": "3.00" + }, + "psmouse": { + "size": "184320", + "refcount": "0" + }, + "virtio_pci": { + "size": "24576", + "refcount": "0", + "version": "1" + }, + "virtio_pci_legacy_dev": { + "size": "16384", + "refcount": "1", + "version": "0.1" + }, + "virtio_pci_modern_dev": { + "size": "20480", + "refcount": "1", + "version": "0.1" + }, + "virtio": { + "size": "20480", + "refcount": "5" + }, + "virtio_ring": { + "size": "45056", + "refcount": "5" + }, + "scsi_mod": { + "size": "286720", + "refcount": "4" + }, + "usb_common": { + "size": "16384", + "refcount": "3" + }, + "i2c_piix4": { + "size": "28672", + "refcount": "0" + }, + "scsi_common": { + "size": "16384", + "refcount": "3" + }, + "floppy": { + "size": "86016", + "refcount": "0" + } + } + }, + "keys": { + "ssh": { + "host_dsa_public": "ssh-dss AAAAB3NzaC1kc3MAAACBAJFo9BLAw4WKEs5hgipk5m423FzBsDXCZSMcC9ca/om/1VYzMqImixGe3uICDzNFUWxFoLJTQAOccyzo6MXZiQqwWJDLFi5qOSr6w2XcMyE+zd4wOyMoDiVM5fizmG8K3FzrqvGjwBcHcBdOQnavSijoj38DN25J9zhrid5BY4WlAAAAFQDxXrCyG52XCzn3FV4ej38wJBkomQAAAIBovGPJ4mP2P6BK8lHl0PPbktwQbWlpJ13oz6REJFDVcUi7vV26bX/BjQX+ohzZQzljdz1SpUbPc/8nuA4darYkVh91eBi307EN8IdxRHj2eBgp/ZG4yshIebG3WHrwJD/xUjjZ1MRfyDT1ermVi4LvjjPgWDxLZnPpMaR6S1nzgQAAAIEAj0Vd6DCWslvlsZ8+N53HWsqPi3gnx35JoLPz9Z2epkKIKqmEHav+93G3hdfztVa4I4t3phoPniQchYryF5+RNg8hqxKzjNtrIqUYCeuf2NJrksNsH7OZygPHZpqt4kTuwAGZxjxEGfAI0y8DhkU2ntp2LnzRnWH106BQBCmcXwo= fauxhai.local", + "host_rsa_public": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCtLCeqtqr/HbnORckw1ukdLhpfGoOPFi5/esKEokzTqq1gsgQ2V8emmyjfq1i6XXfRtSBxkdlHv/GWdP5wBTuE2G85MzBkVSQPvmwQN8lX/JMPEEtKXkeOo0o92/PiSmvY4eRsdF0mw40Uvg7jtE3f3fxj497kzh5fKtkrHnF4x9gXCbVdr3FqXJfggR5IJwAxToerbK7x/uRS+7YuZI9Pip3tt14nv9ezwXcuGb/tvjWOZINiFl8izVIFKi7sxfTX09p4NgamxRS7TD2Yd0jT8nEoF9UZTsgXcJ1kDSx7N7NxFfNfP6rCdOGRRz4gUhXtsUjG/XkxPeCwZ7A9VnOD fauxhai.local" + } + }, + "languages": { + "ruby": { + "platform": "x86_64-linux", + "version": "3.0.2", + "release_date": "2021-07-07", + "target": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_vendor": "pc", + "target_os": "linux", + "host": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux", + "host_vendor": "pc", + "bin_dir": "/usr/local/bin", + "ruby_bin": "/usr/local/bin/ruby", + "gem_bin": "/usr/local/bin/gem", + "gems_dir": "/usr/local/gems" + }, + "powershell": null + }, + "lsb": { + "id": "Debian", + "description": "Debian GNU/Linux 12 (bookworm)", + "release": "12", + "codename": "bookworm" + }, + "macaddress": "11:11:11:11:11:11", + "machinename": "Fauxhai", + "memory": { + "total": "1048576kB" + }, + "network": { + "interfaces": { + "lo": { + "mtu": "65536", + "flags": [ + "LOOPBACK", + "UP", + "LOWER_UP" + ], + "encapsulation": "Loopback", + "addresses": { + "127.0.0.1": { + "family": "inet", + "prefixlen": "8", + "netmask": "255.0.0.0", + "scope": "Node", + "ip_scope": "LOOPBACK" + }, + "::1": { + "family": "inet6", + "prefixlen": "128", + "scope": "Node", + "tags": [ + + ], + "ip_scope": "LINK LOCAL LOOPBACK" + } + }, + "state": "unknown" + }, + "eth0": { + "type": "eth", + "number": "0", + "mtu": "1500", + "flags": [ + "BROADCAST", + "MULTICAST", + "UP", + "LOWER_UP" + ], + "encapsulation": "Ethernet", + "addresses": { + "11:11:11:11:11:11": { + "family": "lladdr" + }, + "10.0.0.2": { + "family": "inet", + "prefixlen": "24", + "netmask": "255.255.255.0", + "broadcast": "10.0.0.255", + "scope": "Global", + "ip_scope": "RFC1918 PRIVATE" + }, + "fe80::11:1111:1111:1111": { + "family": "inet6", + "prefixlen": "64", + "scope": "Link", + "tags": [ + + ], + "ip_scope": "LINK LOCAL UNICAST" + } + }, + "state": "up", + "arp": { + "10.0.0.1": "fe:ff:ff:ff:ff:ff" + }, + "routes": [ + { + "destination": "default", + "family": "inet", + "via": "10.0.0.1" + }, + { + "destination": "10.0.0.0/24", + "family": "inet", + "scope": "link", + "proto": "kernel", + "src": "10.0.0.2" + }, + { + "destination": "fe80::/64", + "family": "inet6", + "metric": "256", + "proto": "kernel" + } + ], + "ring_params": { + } + } + }, + "default_interface": "eth0", + "default_gateway": "10.0.0.1" + }, + "ohai_time": 1689616504.8338625, + "os": "linux", + "os_version": "6.1.0-10-amd64", + "packages": { + "adduser": { + "version": "3.134", + "arch": "all" + }, + "apparmor": { + "version": "3.0.8-3", + "arch": "amd64" + }, + "apt": { + "version": "2.6.1", + "arch": "amd64" + }, + "apt-listchanges": { + "version": "3.24", + "arch": "all" + }, + "apt-utils": { + "version": "2.6.1", + "arch": "amd64" + }, + "base-files": { + "version": "12.4", + "arch": "amd64" + }, + "base-passwd": { + "version": "3.6.1", + "arch": "amd64" + }, + "bash": { + "version": "5.2.15-2+b2", + "arch": "amd64" + }, + "bash-completion": { + "version": "1:2.11-6", + "arch": "all" + }, + "bind9-host": { + "version": "1:9.18.16-1~deb12u1", + "arch": "amd64" + }, + "bind9-libs": { + "version": "1:9.18.16-1~deb12u1", + "arch": "amd64" + }, + "bsdextrautils": { + "version": "2.38.1-5+b1", + "arch": "amd64" + }, + "bsdutils": { + "version": "1:2.38.1-5+b1", + "arch": "amd64" + }, + "ca-certificates": { + "version": "20230311", + "arch": "all" + }, + "chef-workstation": { + "version": "21.10.640-1", + "arch": "amd64" + }, + "cloud-guest-utils": { + "version": "0.33-1", + "arch": "all" + }, + "cloud-image-utils": { + "version": "0.33-1", + "arch": "all" + }, + "cloud-init": { + "version": "22.4.2-1", + "arch": "all" + }, + "cloud-initramfs-growroot": { + "version": "0.18.debian13", + "arch": "all" + }, + "cloud-utils": { + "version": "0.33-1", + "arch": "all" + }, + "coreutils": { + "version": "9.1-1", + "arch": "amd64" + }, + "cpio": { + "version": "2.13+dfsg-7.1", + "arch": "amd64" + }, + "curl": { + "version": "7.88.1-10", + "arch": "amd64" + }, + "dash": { + "version": "0.5.12-2", + "arch": "amd64" + }, + "dbus": { + "version": "1.14.6-1", + "arch": "amd64" + }, + "dbus-bin": { + "version": "1.14.6-1", + "arch": "amd64" + }, + "dbus-daemon": { + "version": "1.14.6-1", + "arch": "amd64" + }, + "dbus-session-bus-common": { + "version": "1.14.6-1", + "arch": "all" + }, + "dbus-system-bus-common": { + "version": "1.14.6-1", + "arch": "all" + }, + "debconf": { + "version": "1.5.82", + "arch": "all" + }, + "debian-archive-keyring": { + "version": "2023.3", + "arch": "all" + }, + "debianutils": { + "version": "5.7-0.4", + "arch": "amd64" + }, + "diffutils": { + "version": "1:3.8-4", + "arch": "amd64" + }, + "distro-info-data": { + "version": "0.58", + "arch": "all" + }, + "dmsetup": { + "version": "2:1.02.185-2", + "arch": "amd64" + }, + "dpkg": { + "version": "1.21.22", + "arch": "amd64" + }, + "e2fsprogs": { + "version": "1.47.0-2", + "arch": "amd64" + }, + "eject": { + "version": "2.38.1-5+b1", + "arch": "amd64" + }, + "ethtool": { + "version": "1:6.1-1", + "arch": "amd64" + }, + "fdisk": { + "version": "2.38.1-5+b1", + "arch": "amd64" + }, + "file": { + "version": "1:5.44-3", + "arch": "amd64" + }, + "findutils": { + "version": "4.9.0-4", + "arch": "amd64" + }, + "gcc-12-base": { + "version": "12.2.0-14", + "arch": "amd64" + }, + "gdisk": { + "version": "1.0.9-2.1", + "arch": "amd64" + }, + "genisoimage": { + "version": "9:1.1.11-3.4", + "arch": "amd64" + }, + "gettext-base": { + "version": "0.21-12", + "arch": "amd64" + }, + "gpgv": { + "version": "2.2.40-1.1", + "arch": "amd64" + }, + "grep": { + "version": "3.8-5", + "arch": "amd64" + }, + "groff-base": { + "version": "1.22.4-10", + "arch": "amd64" + }, + "grub-cloud-amd64": { + "version": "0.0.5", + "arch": "amd64" + }, + "grub-common": { + "version": "2.06-13", + "arch": "amd64" + }, + "grub-efi-amd64-bin": { + "version": "2.06-13", + "arch": "amd64" + }, + "grub-efi-amd64-signed": { + "version": "1+2.06+13", + "arch": "amd64" + }, + "grub-pc-bin": { + "version": "2.06-13", + "arch": "amd64" + }, + "grub2-common": { + "version": "2.06-13", + "arch": "amd64" + }, + "gzip": { + "version": "1.12-1", + "arch": "amd64" + }, + "hostname": { + "version": "3.23+nmu1", + "arch": "amd64" + }, + "init": { + "version": "1.65.2", + "arch": "amd64" + }, + "init-system-helpers": { + "version": "1.65.2", + "arch": "all" + }, + "initramfs-tools": { + "version": "0.142", + "arch": "all" + }, + "initramfs-tools-core": { + "version": "0.142", + "arch": "all" + }, + "iproute2": { + "version": "6.1.0-3", + "arch": "amd64" + }, + "iptables": { + "version": "1.8.9-2", + "arch": "amd64" + }, + "iputils-ping": { + "version": "3:20221126-1", + "arch": "amd64" + }, + "isc-dhcp-client": { + "version": "4.4.3-P1-2", + "arch": "amd64" + }, + "klibc-utils": { + "version": "2.0.12-1", + "arch": "amd64" + }, + "kmod": { + "version": "30+20221128-1", + "arch": "amd64" + }, + "less": { + "version": "590-2", + "arch": "amd64" + }, + "libacl1": { + "version": "2.3.1-3", + "arch": "amd64" + }, + "libaio1": { + "version": "0.3.113-4", + "arch": "amd64" + }, + "libapparmor1": { + "version": "3.0.8-3", + "arch": "amd64" + }, + "libapt-pkg6.0": { + "version": "2.6.1", + "arch": "amd64" + }, + "libargon2-1": { + "version": "0~20171227-0.3+deb12u1", + "arch": "amd64" + }, + "libattr1": { + "version": "1:2.5.1-4", + "arch": "amd64" + }, + "libaudit-common": { + "version": "1:3.0.9-1", + "arch": "all" + }, + "libaudit1": { + "version": "1:3.0.9-1", + "arch": "amd64" + }, + "libblkid1": { + "version": "2.38.1-5+b1", + "arch": "amd64" + }, + "libbpf1": { + "version": "1:1.1.0-1", + "arch": "amd64" + }, + "libbrotli1": { + "version": "1.0.9-2+b6", + "arch": "amd64" + }, + "libbsd0": { + "version": "0.11.7-2", + "arch": "amd64" + }, + "libbz2-1.0": { + "version": "1.0.8-5+b1", + "arch": "amd64" + }, + "libc-bin": { + "version": "2.36-9", + "arch": "amd64" + }, + "libc-l10n": { + "version": "2.36-9", + "arch": "all" + }, + "libc6": { + "version": "2.36-9", + "arch": "amd64" + }, + "libcap-ng0": { + "version": "0.8.3-1+b3", + "arch": "amd64" + }, + "libcap2": { + "version": "1:2.66-4", + "arch": "amd64" + }, + "libcap2-bin": { + "version": "1:2.66-4", + "arch": "amd64" + }, + "libcbor0.8": { + "version": "0.8.0-2+b1", + "arch": "amd64" + }, + "libcom-err2": { + "version": "1.47.0-2", + "arch": "amd64" + }, + "libcrypt1": { + "version": "1:4.4.33-2", + "arch": "amd64" + }, + "libcryptsetup12": { + "version": "2:2.6.1-4~deb12u1", + "arch": "amd64" + }, + "libcurl3-gnutls": { + "version": "7.88.1-10", + "arch": "amd64" + }, + "libcurl4": { + "version": "7.88.1-10", + "arch": "amd64" + }, + "libdb5.3": { + "version": "5.3.28+dfsg2-1", + "arch": "amd64" + }, + "libdbus-1-3": { + "version": "1.14.6-1", + "arch": "amd64" + }, + "libdebconfclient0": { + "version": "0.270", + "arch": "amd64" + }, + "libdevmapper1.02.1": { + "version": "2:1.02.185-2", + "arch": "amd64" + }, + "libduktape207": { + "version": "2.7.0-2", + "arch": "amd64" + }, + "libedit2": { + "version": "3.1-20221030-2", + "arch": "amd64" + }, + "libefiboot1": { + "version": "37-6", + "arch": "amd64" + }, + "libefivar1": { + "version": "37-6", + "arch": "amd64" + }, + "libelf1": { + "version": "0.188-2.1", + "arch": "amd64" + }, + "libexpat1": { + "version": "2.5.0-1", + "arch": "amd64" + }, + "libext2fs2": { + "version": "1.47.0-2", + "arch": "amd64" + }, + "libfdisk1": { + "version": "2.38.1-5+b1", + "arch": "amd64" + }, + "libffi8": { + "version": "3.4.4-1", + "arch": "amd64" + }, + "libfido2-1": { + "version": "1.12.0-2+b1", + "arch": "amd64" + }, + "libfreetype6": { + "version": "2.12.1+dfsg-5", + "arch": "amd64" + }, + "libfstrm0": { + "version": "0.6.1-1", + "arch": "amd64" + }, + "libfuse2": { + "version": "2.9.9-6+b1", + "arch": "amd64" + }, + "libfuse3-3": { + "version": "3.14.0-4", + "arch": "amd64" + }, + "libgcc-s1": { + "version": "12.2.0-14", + "arch": "amd64" + }, + "libgcrypt20": { + "version": "1.10.1-3", + "arch": "amd64" + }, + "libgdbm6": { + "version": "1.23-3", + "arch": "amd64" + }, + "libglib2.0-0": { + "version": "2.74.6-2", + "arch": "amd64" + }, + "libgmp10": { + "version": "2:6.2.1+dfsg1-1.1", + "arch": "amd64" + }, + "libgnutls30": { + "version": "3.7.9-2", + "arch": "amd64" + }, + "libgpg-error0": { + "version": "1.46-1", + "arch": "amd64" + }, + "libgpm2": { + "version": "1.20.7-10+b1", + "arch": "amd64" + }, + "libgssapi-krb5-2": { + "version": "1.20.1-2", + "arch": "amd64" + }, + "libhogweed6": { + "version": "3.8.1-2", + "arch": "amd64" + }, + "libicu72": { + "version": "72.1-3", + "arch": "amd64" + }, + "libidn2-0": { + "version": "2.3.3-1+b1", + "arch": "amd64" + }, + "libip4tc2": { + "version": "1.8.9-2", + "arch": "amd64" + }, + "libip6tc2": { + "version": "1.8.9-2", + "arch": "amd64" + }, + "libjemalloc2": { + "version": "5.3.0-1", + "arch": "amd64" + }, + "libjson-c5": { + "version": "0.16-2", + "arch": "amd64" + }, + "libk5crypto3": { + "version": "1.20.1-2", + "arch": "amd64" + }, + "libkeyutils1": { + "version": "1.6.3-2", + "arch": "amd64" + }, + "libklibc": { + "version": "2.0.12-1", + "arch": "amd64" + }, + "libkmod2": { + "version": "30+20221128-1", + "arch": "amd64" + }, + "libkrb5-3": { + "version": "1.20.1-2", + "arch": "amd64" + }, + "libkrb5support0": { + "version": "1.20.1-2", + "arch": "amd64" + }, + "libldap-2.5-0": { + "version": "2.5.13+dfsg-5", + "arch": "amd64" + }, + "liblmdb0": { + "version": "0.9.24-1", + "arch": "amd64" + }, + "liblz4-1": { + "version": "1.9.4-1", + "arch": "amd64" + }, + "liblzma5": { + "version": "5.4.1-0.2", + "arch": "amd64" + }, + "libmagic-mgc": { + "version": "1:5.44-3", + "arch": "amd64" + }, + "libmagic1": { + "version": "1:5.44-3", + "arch": "amd64" + }, + "libmaxminddb0": { + "version": "1.7.1-1", + "arch": "amd64" + }, + "libmd0": { + "version": "1.0.4-2", + "arch": "amd64" + }, + "libmnl0": { + "version": "1.0.4-3", + "arch": "amd64" + }, + "libmount1": { + "version": "2.38.1-5+b1", + "arch": "amd64" + }, + "libncursesw6": { + "version": "6.4-4", + "arch": "amd64" + }, + "libnetfilter-conntrack3": { + "version": "1.0.9-3", + "arch": "amd64" + }, + "libnetplan0": { + "version": "0.106-2", + "arch": "amd64" + }, + "libnettle8": { + "version": "3.8.1-2", + "arch": "amd64" + }, + "libnewt0.52": { + "version": "0.52.23-1+b1", + "arch": "amd64" + }, + "libnfnetlink0": { + "version": "1.0.2-2", + "arch": "amd64" + }, + "libnftnl11": { + "version": "1.2.4-2", + "arch": "amd64" + }, + "libnghttp2-14": { + "version": "1.52.0-1", + "arch": "amd64" + }, + "libnsl2": { + "version": "1.3.0-2", + "arch": "amd64" + }, + "libnss-resolve": { + "version": "252.6-1", + "arch": "amd64" + }, + "libnuma1": { + "version": "2.0.16-1", + "arch": "amd64" + }, + "libp11-kit0": { + "version": "0.24.1-2", + "arch": "amd64" + }, + "libpam-modules": { + "version": "1.5.2-6", + "arch": "amd64" + }, + "libpam-modules-bin": { + "version": "1.5.2-6", + "arch": "amd64" + }, + "libpam-runtime": { + "version": "1.5.2-6", + "arch": "all" + }, + "libpam-systemd": { + "version": "252.6-1", + "arch": "amd64" + }, + "libpam0g": { + "version": "1.5.2-6", + "arch": "amd64" + }, + "libpcap0.8": { + "version": "1.10.3-1", + "arch": "amd64" + }, + "libpci3": { + "version": "1:3.9.0-4", + "arch": "amd64" + }, + "libpcre2-8-0": { + "version": "10.42-1", + "arch": "amd64" + }, + "libpipeline1": { + "version": "1.5.7-1", + "arch": "amd64" + }, + "libpng16-16": { + "version": "1.6.39-2", + "arch": "amd64" + }, + "libpolkit-agent-1-0": { + "version": "122-3", + "arch": "amd64" + }, + "libpolkit-gobject-1-0": { + "version": "122-3", + "arch": "amd64" + }, + "libpopt0": { + "version": "1.19+dfsg-1", + "arch": "amd64" + }, + "libproc2-0": { + "version": "2:4.0.2-3", + "arch": "amd64" + }, + "libprotobuf-c1": { + "version": "1.4.1-1+b1", + "arch": "amd64" + }, + "libpsl5": { + "version": "0.21.2-1", + "arch": "amd64" + }, + "libpython3-stdlib": { + "version": "3.11.2-1+b1", + "arch": "amd64" + }, + "libpython3.11-minimal": { + "version": "3.11.2-6", + "arch": "amd64" + }, + "libpython3.11-stdlib": { + "version": "3.11.2-6", + "arch": "amd64" + }, + "libreadline8": { + "version": "8.2-1.3", + "arch": "amd64" + }, + "librtmp1": { + "version": "2.4+20151223.gitfa8646d.1-2+b2", + "arch": "amd64" + }, + "libsasl2-2": { + "version": "2.1.28+dfsg-10", + "arch": "amd64" + }, + "libsasl2-modules-db": { + "version": "2.1.28+dfsg-10", + "arch": "amd64" + }, + "libseccomp2": { + "version": "2.5.4-1+b3", + "arch": "amd64" + }, + "libselinux1": { + "version": "3.4-1+b6", + "arch": "amd64" + }, + "libsemanage-common": { + "version": "3.4-1", + "arch": "all" + }, + "libsemanage2": { + "version": "3.4-1+b5", + "arch": "amd64" + }, + "libsepol2": { + "version": "3.4-2.1", + "arch": "amd64" + }, + "libslang2": { + "version": "2.3.3-3", + "arch": "amd64" + }, + "libsmartcols1": { + "version": "2.38.1-5+b1", + "arch": "amd64" + }, + "libsodium23": { + "version": "1.0.18-1", + "arch": "amd64" + }, + "libsqlite3-0": { + "version": "3.40.1-2", + "arch": "amd64" + }, + "libss2": { + "version": "1.47.0-2", + "arch": "amd64" + }, + "libssh2-1": { + "version": "1.10.0-3+b1", + "arch": "amd64" + }, + "libssl3": { + "version": "3.0.9-1", + "arch": "amd64" + }, + "libstdc++6": { + "version": "12.2.0-14", + "arch": "amd64" + }, + "libsystemd-shared": { + "version": "252.6-1", + "arch": "amd64" + }, + "libsystemd0": { + "version": "252.6-1", + "arch": "amd64" + }, + "libtasn1-6": { + "version": "4.19.0-2", + "arch": "amd64" + }, + "libtinfo6": { + "version": "6.4-4", + "arch": "amd64" + }, + "libtirpc-common": { + "version": "1.3.3+ds-1", + "arch": "all" + }, + "libtirpc3": { + "version": "1.3.3+ds-1", + "arch": "amd64" + }, + "libuchardet0": { + "version": "0.0.7-1", + "arch": "amd64" + }, + "libudev1": { + "version": "252.6-1", + "arch": "amd64" + }, + "libunistring2": { + "version": "1.0-2", + "arch": "amd64" + }, + "liburing2": { + "version": "2.3-3", + "arch": "amd64" + }, + "libutempter0": { + "version": "1.2.1-3", + "arch": "amd64" + }, + "libuuid1": { + "version": "2.38.1-5+b1", + "arch": "amd64" + }, + "libuv1": { + "version": "1.44.2-1", + "arch": "amd64" + }, + "libwrap0": { + "version": "7.6.q-32", + "arch": "amd64" + }, + "libxml2": { + "version": "2.9.14+dfsg-1.2", + "arch": "amd64" + }, + "libxtables12": { + "version": "1.8.9-2", + "arch": "amd64" + }, + "libxxhash0": { + "version": "0.8.1-1", + "arch": "amd64" + }, + "libyaml-0-2": { + "version": "0.2.5-1", + "arch": "amd64" + }, + "libzstd1": { + "version": "1.5.4+dfsg2-5", + "arch": "amd64" + }, + "linux-base": { + "version": "4.9", + "arch": "all" + }, + "linux-image-6.1.0-10-amd64": { + "version": "6.1.37-1", + "arch": "amd64" + }, + "linux-image-amd64": { + "version": "6.1.37-1", + "arch": "amd64" + }, + "locales": { + "version": "2.36-9", + "arch": "all" + }, + "login": { + "version": "1:4.13+dfsg1-1+b1", + "arch": "amd64" + }, + "logsave": { + "version": "1.47.0-2", + "arch": "amd64" + }, + "lsb-release": { + "version": "12.0-1", + "arch": "all" + }, + "man-db": { + "version": "2.11.2-2", + "arch": "amd64" + }, + "manpages": { + "version": "6.03-2", + "arch": "all" + }, + "mawk": { + "version": "1.3.4.20200120-3.1", + "arch": "amd64" + }, + "media-types": { + "version": "10.0.0", + "arch": "all" + }, + "mokutil": { + "version": "0.6.0-2", + "arch": "amd64" + }, + "mount": { + "version": "2.38.1-5+b1", + "arch": "amd64" + }, + "nano": { + "version": "7.2-1", + "arch": "amd64" + }, + "ncurses-base": { + "version": "6.4-4", + "arch": "all" + }, + "ncurses-bin": { + "version": "6.4-4", + "arch": "amd64" + }, + "netbase": { + "version": "6.4", + "arch": "all" + }, + "netplan.io": { + "version": "0.106-2", + "arch": "amd64" + }, + "openssh-client": { + "version": "1:9.2p1-2", + "arch": "amd64" + }, + "openssh-server": { + "version": "1:9.2p1-2", + "arch": "amd64" + }, + "openssh-sftp-server": { + "version": "1:9.2p1-2", + "arch": "amd64" + }, + "openssl": { + "version": "3.0.9-1", + "arch": "amd64" + }, + "passwd": { + "version": "1:4.13+dfsg1-1+b1", + "arch": "amd64" + }, + "pci.ids": { + "version": "0.0~2023.04.11-1", + "arch": "all" + }, + "pciutils": { + "version": "1:3.9.0-4", + "arch": "amd64" + }, + "perl-base": { + "version": "5.36.0-7", + "arch": "amd64" + }, + "polkitd": { + "version": "122-3", + "arch": "amd64" + }, + "procps": { + "version": "2:4.0.2-3", + "arch": "amd64" + }, + "psmisc": { + "version": "23.6-1", + "arch": "amd64" + }, + "python-apt-common": { + "version": "2.6.0", + "arch": "all" + }, + "python3": { + "version": "3.11.2-1+b1", + "arch": "amd64" + }, + "python3-apt": { + "version": "2.6.0", + "arch": "amd64" + }, + "python3-attr": { + "version": "22.2.0-1", + "arch": "all" + }, + "python3-blinker": { + "version": "1.5-1", + "arch": "all" + }, + "python3-certifi": { + "version": "2022.9.24-1", + "arch": "all" + }, + "python3-cffi-backend": { + "version": "1.15.1-5+b1", + "arch": "amd64" + }, + "python3-chardet": { + "version": "5.1.0+dfsg-2", + "arch": "all" + }, + "python3-charset-normalizer": { + "version": "3.0.1-2", + "arch": "all" + }, + "python3-configobj": { + "version": "5.0.8-1", + "arch": "all" + }, + "python3-cryptography": { + "version": "38.0.4-3", + "arch": "amd64" + }, + "python3-dbus": { + "version": "1.3.2-4+b1", + "arch": "amd64" + }, + "python3-debconf": { + "version": "1.5.82", + "arch": "all" + }, + "python3-debian": { + "version": "0.1.49", + "arch": "all" + }, + "python3-debianbts": { + "version": "4.0.1", + "arch": "all" + }, + "python3-distro-info": { + "version": "1.5", + "arch": "all" + }, + "python3-httplib2": { + "version": "0.20.4-3", + "arch": "all" + }, + "python3-idna": { + "version": "3.3-1", + "arch": "all" + }, + "python3-jinja2": { + "version": "3.1.2-1", + "arch": "all" + }, + "python3-json-pointer": { + "version": "2.3-2", + "arch": "all" + }, + "python3-jsonpatch": { + "version": "1.32-2", + "arch": "all" + }, + "python3-jsonschema": { + "version": "4.10.3-1", + "arch": "all" + }, + "python3-jwt": { + "version": "2.6.0-1", + "arch": "all" + }, + "python3-markdown-it": { + "version": "2.1.0-5", + "arch": "all" + }, + "python3-markupsafe": { + "version": "2.1.2-1+b1", + "arch": "amd64" + }, + "python3-mdurl": { + "version": "0.1.2-1", + "arch": "all" + }, + "python3-minimal": { + "version": "3.11.2-1+b1", + "arch": "amd64" + }, + "python3-netifaces": { + "version": "0.11.0-2+b1", + "arch": "amd64" + }, + "python3-oauthlib": { + "version": "3.2.2-1", + "arch": "all" + }, + "python3-pkg-resources": { + "version": "66.1.1-1", + "arch": "all" + }, + "python3-pycurl": { + "version": "7.45.2-3", + "arch": "amd64" + }, + "python3-pygments": { + "version": "2.14.0+dfsg-1", + "arch": "all" + }, + "python3-pyparsing": { + "version": "3.0.9-1", + "arch": "all" + }, + "python3-pyrsistent": { + "version": "0.18.1-1+b3", + "arch": "amd64" + }, + "python3-pysimplesoap": { + "version": "1.16.2-5", + "arch": "all" + }, + "python3-reportbug": { + "version": "12.0.0", + "arch": "all" + }, + "python3-requests": { + "version": "2.28.1+dfsg-1", + "arch": "all" + }, + "python3-rich": { + "version": "13.3.1-1", + "arch": "all" + }, + "python3-serial": { + "version": "3.5-1.1", + "arch": "all" + }, + "python3-six": { + "version": "1.16.0-4", + "arch": "all" + }, + "python3-urllib3": { + "version": "1.26.12-1", + "arch": "all" + }, + "python3-yaml": { + "version": "6.0-3+b2", + "arch": "amd64" + }, + "python3.11": { + "version": "3.11.2-6", + "arch": "amd64" + }, + "python3.11-minimal": { + "version": "3.11.2-6", + "arch": "amd64" + }, + "qemu-utils": { + "version": "1:7.2+dfsg-7", + "arch": "amd64" + }, + "readline-common": { + "version": "8.2-1.3", + "arch": "all" + }, + "reportbug": { + "version": "12.0.0", + "arch": "all" + }, + "runit-helper": { + "version": "2.15.2", + "arch": "all" + }, + "screen": { + "version": "4.9.0-4", + "arch": "amd64" + }, + "sed": { + "version": "4.9-1", + "arch": "amd64" + }, + "sensible-utils": { + "version": "0.0.17+nmu1", + "arch": "all" + }, + "sgml-base": { + "version": "1.31", + "arch": "all" + }, + "shim-helpers-amd64-signed": { + "version": "1+15.7+1", + "arch": "amd64" + }, + "shim-signed": { + "version": "1.39+15.7-1", + "arch": "amd64" + }, + "shim-signed-common": { + "version": "1.39+15.7-1", + "arch": "all" + }, + "shim-unsigned": { + "version": "15.7-1", + "arch": "amd64" + }, + "socat": { + "version": "1.7.4.4-2", + "arch": "amd64" + }, + "sudo": { + "version": "1.9.13p3-1", + "arch": "amd64" + }, + "systemd": { + "version": "252.6-1", + "arch": "amd64" + }, + "systemd-resolved": { + "version": "252.6-1", + "arch": "amd64" + }, + "systemd-sysv": { + "version": "252.6-1", + "arch": "amd64" + }, + "systemd-timesyncd": { + "version": "252.6-1", + "arch": "amd64" + }, + "sysvinit-utils": { + "version": "3.06-4", + "arch": "amd64" + }, + "tar": { + "version": "1.34+dfsg-1.2", + "arch": "amd64" + }, + "tcpdump": { + "version": "4.99.3-1", + "arch": "amd64" + }, + "traceroute": { + "version": "1:2.1.2-1", + "arch": "amd64" + }, + "tzdata": { + "version": "2023c-5", + "arch": "all" + }, + "ucf": { + "version": "3.0043+nmu1", + "arch": "all" + }, + "udev": { + "version": "252.6-1", + "arch": "amd64" + }, + "unattended-upgrades": { + "version": "2.9.1+nmu3", + "arch": "all" + }, + "usr-is-merged": { + "version": "35", + "arch": "all" + }, + "util-linux": { + "version": "2.38.1-5+b1", + "arch": "amd64" + }, + "util-linux-extra": { + "version": "2.38.1-5+b1", + "arch": "amd64" + }, + "uuid-runtime": { + "version": "2.38.1-5+b1", + "arch": "amd64" + }, + "vim": { + "version": "2:9.0.1378-2", + "arch": "amd64" + }, + "vim-common": { + "version": "2:9.0.1378-2", + "arch": "all" + }, + "vim-runtime": { + "version": "2:9.0.1378-2", + "arch": "all" + }, + "vim-tiny": { + "version": "2:9.0.1378-2", + "arch": "amd64" + }, + "wget": { + "version": "1.21.3-1+b2", + "arch": "amd64" + }, + "whiptail": { + "version": "0.52.23-1+b1", + "arch": "amd64" + }, + "xml-core": { + "version": "0.18+nmu1", + "arch": "all" + }, + "xz-utils": { + "version": "5.4.1-0.2", + "arch": "amd64" + }, + "zlib1g": { + "version": "1:1.2.13.dfsg-1", + "arch": "amd64" + }, + "zstd": { + "version": "1.5.4+dfsg2-5", + "arch": "amd64" + } + }, + "platform": "debian", + "platform_family": "debian", + "platform_version": "12", + "root_group": "root", + "shells": [ + "/bin/sh", + "/bin/bash", + "/usr/bin/bash", + "/bin/rbash", + "/usr/bin/rbash", + "/bin/dash", + "/usr/bin/dash", + "/usr/bin/screen" + ], + "time": { + "timezone": "GMT" + }, + "uptime": "30 days 15 hours 07 minutes 30 seconds", + "uptime_seconds": 2646450, + "virtualization": { + "systems": { + } + } +} diff --git a/lib/fauxhai/platforms/oracle/7.json b/lib/fauxhai/platforms/oracle/7.json new file mode 100644 index 00000000..d3871c57 --- /dev/null +++ b/lib/fauxhai/platforms/oracle/7.json @@ -0,0 +1,4425 @@ +{ + "block_device": { + "sda": { + "size": "134217728", + "removable": "0", + "model": "VBOX HARDDISK", + "rev": "1.0", + "state": "running", + "timeout": "30", + "vendor": "ATA", + "queue_depth": "32", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + } + }, + "chef_packages": { + "chef": { + "version": "17.6.18", + "chef_root": "/opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/chef-17.6.18/lib", + "chef_effortless": null + }, + "ohai": { + "version": "17.6.0", + "ohai_root": "/opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/ohai-17.6.0/lib/ohai" + } + }, + "command": { + "ps": "ps -ef" + }, + "counters": { + "network": { + "interfaces": { + "lo": { + "tx": { + "queuelen": "1", + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "carrier": 0, + "collisions": 0 + }, + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0 + } + }, + "eth0": { + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "frame": 0, + "compressed": 0, + "multicast": 0 + }, + "tx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "collisions": 0, + "carrier": 0, + "compressed": 0 + } + } + } + } + }, + "cpu": { + "real": 1, + "total": 1, + "cores": 1 + }, + "current_user": "fauxhai", + "dmi": { + "dmidecode_version": "3.2", + "smbios_version": "2.5", + "structures": { + "count": "10", + "size": "455" + }, + "table_location": "0x000E1000", + "bios": { + "all_records": [ + { + "record_id": "0x0000", + "size": "0", + "application_identifier": "BIOS Information", + "Vendor": "innotek GmbH", + "Version": "VirtualBox", + "Release Date": "12/01/2006", + "Address": "0xE0000", + "Runtime Size": "128 kB", + "ROM Size": "128 kB", + "Characteristics": { + "ACPI is supported": null + } + } + ], + "vendor": "innotek GmbH", + "version": "VirtualBox", + "release_date": "12/01/2006", + "address": "0xE0000", + "runtime_size": "128 kB", + "rom_size": "128 kB" + }, + "system": { + "all_records": [ + { + "record_id": "0x0001", + "size": "1", + "application_identifier": "System Information", + "Manufacturer": "innotek GmbH", + "Product Name": "VirtualBox", + "Version": "1.2", + "Serial Number": "0", + "UUID": "4a990b08-64a2-2642-bfed-a7dda07eacc4", + "Wake-up Type": "Power Switch", + "SKU Number": "Not Specified", + "Family": "Virtual Machine" + } + ], + "manufacturer": "innotek GmbH", + "product_name": "VirtualBox", + "version": "1.2", + "serial_number": "0", + "uuid": "4a990b08-64a2-2642-bfed-a7dda07eacc4", + "wake_up_type": "Power Switch", + "sku_number": "Not Specified", + "family": "Virtual Machine" + }, + "base_board": { + "all_records": [ + { + "record_id": "0x0008", + "size": "2", + "application_identifier": "Base Board Information", + "Manufacturer": "Oracle Corporation", + "Product Name": "VirtualBox", + "Version": "1.2", + "Serial Number": "0", + "Asset Tag": "Not Specified", + "Features": { + "Board is a hosting board": null + }, + "Location In Chassis": "Not Specified", + "Chassis Handle": "0x0003", + "Type": "Motherboard", + "Contained Object Handles": "0" + } + ], + "manufacturer": "Oracle Corporation", + "product_name": "VirtualBox", + "version": "1.2", + "serial_number": "0", + "asset_tag": "Not Specified", + "location_in_chassis": "Not Specified", + "chassis_handle": "0x0003", + "type": "Motherboard", + "contained_object_handles": "0" + }, + "chassis": { + "all_records": [ + { + "record_id": "0x0003", + "size": "3", + "application_identifier": "Chassis Information", + "Manufacturer": "Oracle Corporation", + "Type": "Other", + "Lock": "Not Present", + "Version": "Not Specified", + "Serial Number": "Not Specified", + "Asset Tag": "Not Specified", + "Boot-up State": "Safe", + "Power Supply State": "Safe", + "Thermal State": "Safe", + "Security Status": "None" + } + ], + "manufacturer": "Oracle Corporation", + "type": "Other", + "lock": "Not Present", + "version": "Not Specified", + "serial_number": "Not Specified", + "asset_tag": "Not Specified", + "boot_up_state": "Safe", + "power_supply_state": "Safe", + "thermal_state": "Safe", + "security_status": "None" + }, + "oem_strings": { + "all_records": [ + { + "record_id": "0x0002", + "size": "11", + "application_identifier": "OEM Strings", + "String 1": "vboxVer_7.0.4", + "String 2": "vboxRev_154605" + } + ], + "string_1": "vboxVer_7.0.4", + "string_2": "vboxRev_154605" + } + }, + "domain": "local", + "filesystem": { + "by_device": { + "devtmpfs": { + "kb_size": "857120", + "kb_used": "0", + "kb_available": "857120", + "percent_used": "0%", + "total_inodes": "214280", + "inodes_used": "333", + "inodes_available": "213947", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=857120k", + "nr_inodes=214280", + "mode=755" + ], + "mounts": [ + "/dev" + ] + }, + "tmpfs": { + "kb_size": "173964", + "kb_used": "0", + "kb_available": "173964", + "percent_used": "0%", + "total_inodes": "217451", + "inodes_used": "1", + "inodes_available": "217450", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=173964k", + "mode=700", + "uid=1000", + "gid=1000" + ], + "mounts": [ + "/dev/shm", + "/run", + "/sys/fs/cgroup", + "/run/user/1000" + ] + }, + "/dev/sda3": { + "kb_size": "52403200", + "kb_used": "2569916", + "kb_available": "49833284", + "percent_used": "5%", + "total_inodes": "52428800", + "inodes_used": "82038", + "inodes_available": "52346762", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "1f3ceefc-57d1-41a9-8384-f036117ef065", + "mounts": [ + "/" + ] + }, + "/dev/sda1": { + "kb_size": "1038336", + "kb_used": "223060", + "kb_available": "815276", + "percent_used": "22%", + "total_inodes": "1048576", + "inodes_used": "310", + "inodes_available": "1048266", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "62a18b75-4164-42fd-982e-f3cfa0976ef7", + "mounts": [ + "/boot" + ] + }, + "vagrant": { + "kb_size": "497899516", + "kb_used": "208837764", + "kb_available": "289061752", + "percent_used": "42%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000" + ], + "mounts": [ + "/vagrant" + ] + }, + "sysfs": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys" + ] + }, + "proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/proc" + ] + }, + "securityfs": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/security" + ] + }, + "devpts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "mounts": [ + "/dev/pts" + ] + }, + "cgroup": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "rdma" + ], + "mounts": [ + "/sys/fs/cgroup/systemd", + "/sys/fs/cgroup/devices", + "/sys/fs/cgroup/net_cls,net_prio", + "/sys/fs/cgroup/blkio", + "/sys/fs/cgroup/pids", + "/sys/fs/cgroup/freezer", + "/sys/fs/cgroup/cpu,cpuacct", + "/sys/fs/cgroup/hugetlb", + "/sys/fs/cgroup/perf_event", + "/sys/fs/cgroup/cpuset", + "/sys/fs/cgroup/memory", + "/sys/fs/cgroup/rdma" + ] + }, + "pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/fs/pstore" + ] + }, + "configfs": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "relatime" + ], + "mounts": [ + "/sys/kernel/config" + ] + }, + "selinuxfs": { + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "relatime" + ], + "mounts": [ + "/sys/fs/selinux" + ] + }, + "systemd-1": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=26", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=17745" + ], + "mounts": [ + "/proc/sys/fs/binfmt_misc" + ] + }, + "debugfs": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/kernel/debug" + ] + }, + "mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ], + "mounts": [ + "/dev/mqueue" + ] + }, + "hugetlbfs": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ], + "mounts": [ + "/dev/hugepages" + ] + }, + "sunrpc": { + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ], + "mounts": [ + "/var/lib/nfs/rpc_pipefs" + ] + }, + "/dev/sda": { + "mounts": [ + + ] + }, + "/dev/sda2": { + "fs_type": "swap", + "uuid": "520e44b5-cd7c-4165-abad-c60033f5cbdf", + "mounts": [ + + ] + } + }, + "by_mountpoint": { + "/dev": { + "kb_size": "857120", + "kb_used": "0", + "kb_available": "857120", + "percent_used": "0%", + "total_inodes": "214280", + "inodes_used": "333", + "inodes_available": "213947", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=857120k", + "nr_inodes=214280", + "mode=755" + ], + "devices": [ + "devtmpfs" + ] + }, + "/dev/shm": { + "kb_size": "869804", + "kb_used": "0", + "kb_available": "869804", + "percent_used": "0%", + "total_inodes": "217451", + "inodes_used": "1", + "inodes_available": "217450", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel" + ], + "devices": [ + "tmpfs" + ] + }, + "/run": { + "kb_size": "869804", + "kb_used": "16820", + "kb_available": "852984", + "percent_used": "2%", + "total_inodes": "217451", + "inodes_used": "404", + "inodes_available": "217047", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "mode=755" + ], + "devices": [ + "tmpfs" + ] + }, + "/sys/fs/cgroup": { + "kb_size": "869804", + "kb_used": "0", + "kb_available": "869804", + "percent_used": "0%", + "total_inodes": "217451", + "inodes_used": "17", + "inodes_available": "217434", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "seclabel", + "mode=755" + ], + "devices": [ + "tmpfs" + ] + }, + "/": { + "kb_size": "52403200", + "kb_used": "2569916", + "kb_available": "49833284", + "percent_used": "5%", + "total_inodes": "52428800", + "inodes_used": "82038", + "inodes_available": "52346762", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "1f3ceefc-57d1-41a9-8384-f036117ef065", + "devices": [ + "/dev/sda3" + ] + }, + "/boot": { + "kb_size": "1038336", + "kb_used": "223060", + "kb_available": "815276", + "percent_used": "22%", + "total_inodes": "1048576", + "inodes_used": "310", + "inodes_available": "1048266", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "62a18b75-4164-42fd-982e-f3cfa0976ef7", + "devices": [ + "/dev/sda1" + ] + }, + "/vagrant": { + "kb_size": "497899516", + "kb_used": "208837764", + "kb_available": "289061752", + "percent_used": "42%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000" + ], + "devices": [ + "vagrant" + ] + }, + "/run/user/1000": { + "kb_size": "173964", + "kb_used": "0", + "kb_available": "173964", + "percent_used": "0%", + "total_inodes": "217451", + "inodes_used": "1", + "inodes_available": "217450", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=173964k", + "mode=700", + "uid=1000", + "gid=1000" + ], + "devices": [ + "tmpfs" + ] + }, + "/sys": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "sysfs" + ] + }, + "/proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "proc" + ] + }, + "/sys/kernel/security": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "securityfs" + ] + }, + "/dev/pts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "devices": [ + "devpts" + ] + }, + "/sys/fs/cgroup/systemd": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "xattr", + "release_agent=/usr/lib/systemd/systemd-cgroups-agent", + "name=systemd" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "pstore" + ] + }, + "/sys/fs/cgroup/devices": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "devices" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/net_cls,net_prio": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "net_cls", + "net_prio" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/blkio": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "blkio" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/pids": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "pids" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/freezer": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "freezer" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/cpu,cpuacct": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "cpu", + "cpuacct" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/hugetlb": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "hugetlb" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/perf_event": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "perf_event" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/cpuset": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "cpuset" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/memory": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "memory" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/rdma": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "rdma" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/kernel/config": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "relatime" + ], + "devices": [ + "configfs" + ] + }, + "/sys/fs/selinux": { + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "relatime" + ], + "devices": [ + "selinuxfs" + ] + }, + "/proc/sys/fs/binfmt_misc": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=26", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=17745" + ], + "devices": [ + "systemd-1" + ] + }, + "/sys/kernel/debug": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ], + "devices": [ + "debugfs" + ] + }, + "/dev/mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ], + "devices": [ + "mqueue" + ] + }, + "/dev/hugepages": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ], + "devices": [ + "hugetlbfs" + ] + }, + "/var/lib/nfs/rpc_pipefs": { + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ], + "devices": [ + "sunrpc" + ] + } + }, + "by_pair": { + "devtmpfs,/dev": { + "device": "devtmpfs", + "kb_size": "857120", + "kb_used": "0", + "kb_available": "857120", + "percent_used": "0%", + "mount": "/dev", + "total_inodes": "214280", + "inodes_used": "333", + "inodes_available": "213947", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=857120k", + "nr_inodes=214280", + "mode=755" + ] + }, + "tmpfs,/dev/shm": { + "device": "tmpfs", + "kb_size": "869804", + "kb_used": "0", + "kb_available": "869804", + "percent_used": "0%", + "mount": "/dev/shm", + "total_inodes": "217451", + "inodes_used": "1", + "inodes_available": "217450", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel" + ] + }, + "tmpfs,/run": { + "device": "tmpfs", + "kb_size": "869804", + "kb_used": "16820", + "kb_available": "852984", + "percent_used": "2%", + "mount": "/run", + "total_inodes": "217451", + "inodes_used": "404", + "inodes_available": "217047", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "mode=755" + ] + }, + "tmpfs,/sys/fs/cgroup": { + "device": "tmpfs", + "kb_size": "869804", + "kb_used": "0", + "kb_available": "869804", + "percent_used": "0%", + "mount": "/sys/fs/cgroup", + "total_inodes": "217451", + "inodes_used": "17", + "inodes_available": "217434", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "seclabel", + "mode=755" + ] + }, + "/dev/sda3,/": { + "device": "/dev/sda3", + "kb_size": "52403200", + "kb_used": "2569916", + "kb_available": "49833284", + "percent_used": "5%", + "mount": "/", + "total_inodes": "52428800", + "inodes_used": "82038", + "inodes_available": "52346762", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "1f3ceefc-57d1-41a9-8384-f036117ef065" + }, + "/dev/sda1,/boot": { + "device": "/dev/sda1", + "kb_size": "1038336", + "kb_used": "223060", + "kb_available": "815276", + "percent_used": "22%", + "mount": "/boot", + "total_inodes": "1048576", + "inodes_used": "310", + "inodes_available": "1048266", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "62a18b75-4164-42fd-982e-f3cfa0976ef7" + }, + "vagrant,/vagrant": { + "device": "vagrant", + "kb_size": "497899516", + "kb_used": "208837764", + "kb_available": "289061752", + "percent_used": "42%", + "mount": "/vagrant", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000" + ] + }, + "tmpfs,/run/user/1000": { + "device": "tmpfs", + "kb_size": "173964", + "kb_used": "0", + "kb_available": "173964", + "percent_used": "0%", + "mount": "/run/user/1000", + "total_inodes": "217451", + "inodes_used": "1", + "inodes_available": "217450", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=173964k", + "mode=700", + "uid=1000", + "gid=1000" + ] + }, + "sysfs,/sys": { + "device": "sysfs", + "mount": "/sys", + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "proc,/proc": { + "device": "proc", + "mount": "/proc", + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "securityfs,/sys/kernel/security": { + "device": "securityfs", + "mount": "/sys/kernel/security", + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "devpts,/dev/pts": { + "device": "devpts", + "mount": "/dev/pts", + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ] + }, + "cgroup,/sys/fs/cgroup/systemd": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/systemd", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "xattr", + "release_agent=/usr/lib/systemd/systemd-cgroups-agent", + "name=systemd" + ] + }, + "pstore,/sys/fs/pstore": { + "device": "pstore", + "mount": "/sys/fs/pstore", + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "cgroup,/sys/fs/cgroup/devices": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/devices", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "devices" + ] + }, + "cgroup,/sys/fs/cgroup/net_cls,net_prio": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/net_cls,net_prio", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "net_cls", + "net_prio" + ] + }, + "cgroup,/sys/fs/cgroup/blkio": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/blkio", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "blkio" + ] + }, + "cgroup,/sys/fs/cgroup/pids": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/pids", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "pids" + ] + }, + "cgroup,/sys/fs/cgroup/freezer": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/freezer", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "freezer" + ] + }, + "cgroup,/sys/fs/cgroup/cpu,cpuacct": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/cpu,cpuacct", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "cpu", + "cpuacct" + ] + }, + "cgroup,/sys/fs/cgroup/hugetlb": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/hugetlb", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "hugetlb" + ] + }, + "cgroup,/sys/fs/cgroup/perf_event": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/perf_event", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "perf_event" + ] + }, + "cgroup,/sys/fs/cgroup/cpuset": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/cpuset", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "cpuset" + ] + }, + "cgroup,/sys/fs/cgroup/memory": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/memory", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "memory" + ] + }, + "cgroup,/sys/fs/cgroup/rdma": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/rdma", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "rdma" + ] + }, + "configfs,/sys/kernel/config": { + "device": "configfs", + "mount": "/sys/kernel/config", + "fs_type": "configfs", + "mount_options": [ + "rw", + "relatime" + ] + }, + "selinuxfs,/sys/fs/selinux": { + "device": "selinuxfs", + "mount": "/sys/fs/selinux", + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "relatime" + ] + }, + "systemd-1,/proc/sys/fs/binfmt_misc": { + "device": "systemd-1", + "mount": "/proc/sys/fs/binfmt_misc", + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=26", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=17745" + ] + }, + "debugfs,/sys/kernel/debug": { + "device": "debugfs", + "mount": "/sys/kernel/debug", + "fs_type": "debugfs", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ] + }, + "mqueue,/dev/mqueue": { + "device": "mqueue", + "mount": "/dev/mqueue", + "fs_type": "mqueue", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ] + }, + "hugetlbfs,/dev/hugepages": { + "device": "hugetlbfs", + "mount": "/dev/hugepages", + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ] + }, + "sunrpc,/var/lib/nfs/rpc_pipefs": { + "device": "sunrpc", + "mount": "/var/lib/nfs/rpc_pipefs", + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ] + }, + "/dev/sda,": { + "device": "/dev/sda" + }, + "/dev/sda2,": { + "device": "/dev/sda2", + "fs_type": "swap", + "uuid": "520e44b5-cd7c-4165-abad-c60033f5cbdf" + } + } + }, + "fips": { + "kernel": { + "enabled": true + } + }, + "fqdn": "fauxhai.local", + "hostname": "Fauxhai", + "idle": "30 days 15 hours 07 minutes 30 seconds", + "idletime_seconds": 2646450, + "init_package": "systemd", + "ipaddress": "10.0.0.2", + "kernel": { + "name": "Linux", + "release": "5.4.17-2011.7.4.el7uek.x86_64", + "version": "#2 SMP Fri Oct 2 14:48:59 PDT 2020", + "machine": "x86_64", + "processor": "x86_64", + "os": "GNU/Linux", + "modules": { + "vboxsf": { + "size": "81920", + "refcount": "1", + "version": "6.1.16 r140961" + }, + "rfkill": { + "size": "28672", + "refcount": "0" + }, + "sunrpc": { + "size": "389120", + "refcount": "1" + }, + "crct10dif_pclmul": { + "size": "16384", + "refcount": "1" + }, + "crc32_pclmul": { + "size": "16384", + "refcount": "0" + }, + "ghash_clmulni_intel": { + "size": "16384", + "refcount": "0" + }, + "vboxvideo": { + "size": "36864", + "refcount": "1", + "version": "6.1.16 r140961" + }, + "ttm": { + "size": "102400", + "refcount": "1" + }, + "drm_kms_helper": { + "size": "180224", + "refcount": "1" + }, + "drm": { + "size": "520192", + "refcount": "4" + }, + "vboxguest": { + "size": "335872", + "refcount": "2", + "version": "6.1.16 r140961" + }, + "aesni_intel": { + "size": "376832", + "refcount": "0" + }, + "crypto_simd": { + "size": "16384", + "refcount": "1" + }, + "cryptd": { + "size": "24576", + "refcount": "2" + }, + "sg": { + "size": "36864", + "refcount": "0", + "version": "3.5.36" + }, + "glue_helper": { + "size": "16384", + "refcount": "1" + }, + "syscopyarea": { + "size": "16384", + "refcount": "1" + }, + "sysfillrect": { + "size": "16384", + "refcount": "1" + }, + "pcspkr": { + "size": "16384", + "refcount": "0" + }, + "sysimgblt": { + "size": "16384", + "refcount": "1" + }, + "video": { + "size": "49152", + "refcount": "0" + }, + "i2c_piix4": { + "size": "28672", + "refcount": "0" + }, + "fb_sys_fops": { + "size": "16384", + "refcount": "1" + }, + "ip_tables": { + "size": "28672", + "refcount": "0" + }, + "xfs": { + "size": "1458176", + "refcount": "2" + }, + "libcrc32c": { + "size": "16384", + "refcount": "1" + }, + "sd_mod": { + "size": "53248", + "refcount": "4" + }, + "ata_generic": { + "size": "16384", + "refcount": "0", + "version": "0.2.15" + }, + "pata_acpi": { + "size": "16384", + "refcount": "0", + "version": "0.2.3" + }, + "ahci": { + "size": "40960", + "refcount": "3", + "version": "3.0" + }, + "ata_piix": { + "size": "36864", + "refcount": "0", + "version": "2.13" + }, + "libahci": { + "size": "32768", + "refcount": "1" + }, + "serio_raw": { + "size": "20480", + "refcount": "0" + }, + "e1000": { + "size": "143360", + "refcount": "0", + "version": "7.3.21-k8-NAPI" + }, + "libata": { + "size": "241664", + "refcount": "5", + "version": "3.00" + } + } + }, + "keys": { + "ssh": { + "host_dsa_public": "ssh-dss AAAAB3NzaC1kc3MAAACBAJFo9BLAw4WKEs5hgipk5m423FzBsDXCZSMcC9ca/om/1VYzMqImixGe3uICDzNFUWxFoLJTQAOccyzo6MXZiQqwWJDLFi5qOSr6w2XcMyE+zd4wOyMoDiVM5fizmG8K3FzrqvGjwBcHcBdOQnavSijoj38DN25J9zhrid5BY4WlAAAAFQDxXrCyG52XCzn3FV4ej38wJBkomQAAAIBovGPJ4mP2P6BK8lHl0PPbktwQbWlpJ13oz6REJFDVcUi7vV26bX/BjQX+ohzZQzljdz1SpUbPc/8nuA4darYkVh91eBi307EN8IdxRHj2eBgp/ZG4yshIebG3WHrwJD/xUjjZ1MRfyDT1ermVi4LvjjPgWDxLZnPpMaR6S1nzgQAAAIEAj0Vd6DCWslvlsZ8+N53HWsqPi3gnx35JoLPz9Z2epkKIKqmEHav+93G3hdfztVa4I4t3phoPniQchYryF5+RNg8hqxKzjNtrIqUYCeuf2NJrksNsH7OZygPHZpqt4kTuwAGZxjxEGfAI0y8DhkU2ntp2LnzRnWH106BQBCmcXwo= fauxhai.local", + "host_rsa_public": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCtLCeqtqr/HbnORckw1ukdLhpfGoOPFi5/esKEokzTqq1gsgQ2V8emmyjfq1i6XXfRtSBxkdlHv/GWdP5wBTuE2G85MzBkVSQPvmwQN8lX/JMPEEtKXkeOo0o92/PiSmvY4eRsdF0mw40Uvg7jtE3f3fxj497kzh5fKtkrHnF4x9gXCbVdr3FqXJfggR5IJwAxToerbK7x/uRS+7YuZI9Pip3tt14nv9ezwXcuGb/tvjWOZINiFl8izVIFKi7sxfTX09p4NgamxRS7TD2Yd0jT8nEoF9UZTsgXcJ1kDSx7N7NxFfNfP6rCdOGRRz4gUhXtsUjG/XkxPeCwZ7A9VnOD fauxhai.local" + } + }, + "languages": { + "ruby": { + "platform": "x86_64-linux", + "version": "3.0.2", + "release_date": "2021-07-07", + "target": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_vendor": "pc", + "target_os": "linux", + "host": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux", + "host_vendor": "pc", + "bin_dir": "/usr/local/bin", + "ruby_bin": "/usr/local/bin/ruby", + "gem_bin": "/usr/local/bin/gem", + "gems_dir": "/usr/local/gems" + }, + "powershell": null + }, + "lsb": { + }, + "macaddress": "11:11:11:11:11:11", + "machinename": "Fauxhai", + "memory": { + "total": "1048576kB" + }, + "network": { + "interfaces": { + "lo": { + "mtu": "65536", + "flags": [ + "LOOPBACK", + "UP", + "LOWER_UP" + ], + "encapsulation": "Loopback", + "addresses": { + "127.0.0.1": { + "family": "inet", + "prefixlen": "8", + "netmask": "255.0.0.0", + "scope": "Node", + "ip_scope": "LOOPBACK" + }, + "::1": { + "family": "inet6", + "prefixlen": "128", + "scope": "Node", + "tags": [ + + ], + "ip_scope": "LINK LOCAL LOOPBACK" + } + }, + "state": "unknown" + }, + "eth0": { + "type": "eth", + "number": "0", + "mtu": "1500", + "flags": [ + "BROADCAST", + "MULTICAST", + "UP", + "LOWER_UP" + ], + "encapsulation": "Ethernet", + "addresses": { + "11:11:11:11:11:11": { + "family": "lladdr" + }, + "10.0.0.2": { + "family": "inet", + "prefixlen": "24", + "netmask": "255.255.255.0", + "broadcast": "10.0.0.255", + "scope": "Global", + "ip_scope": "RFC1918 PRIVATE" + }, + "fe80::11:1111:1111:1111": { + "family": "inet6", + "prefixlen": "64", + "scope": "Link", + "tags": [ + + ], + "ip_scope": "LINK LOCAL UNICAST" + } + }, + "state": "up", + "arp": { + "10.0.0.1": "fe:ff:ff:ff:ff:ff" + }, + "routes": [ + { + "destination": "default", + "family": "inet", + "via": "10.0.0.1" + }, + { + "destination": "10.0.0.0/24", + "family": "inet", + "scope": "link", + "proto": "kernel", + "src": "10.0.0.2" + }, + { + "destination": "fe80::/64", + "family": "inet6", + "metric": "256", + "proto": "kernel" + } + ], + "ring_params": { + } + } + }, + "default_interface": "eth0", + "default_gateway": "10.0.0.1" + }, + "ohai_time": 1675099339.2004473, + "os": "linux", + "os_version": "5.4.17-2011.7.4.el7uek.x86_64", + "packages": { + "polkit": { + "epoch": "0", + "version": "0.112", + "release": "26.0.1.el7", + "installdate": "1603473775", + "arch": "x86_64" + }, + "basesystem": { + "epoch": "0", + "version": "10.0", + "release": "7.0.1.el7", + "installdate": "1603473729", + "arch": "noarch" + }, + "cronie-anacron": { + "epoch": "0", + "version": "1.4.11", + "release": "23.el7", + "installdate": "1603473775", + "arch": "x86_64" + }, + "ncurses-libs": { + "epoch": "0", + "version": "5.9", + "release": "14.20130511.el7_4", + "installdate": "1603473733", + "arch": "x86_64" + }, + "zlib": { + "epoch": "0", + "version": "1.2.7", + "release": "18.el7", + "installdate": "1603473733", + "arch": "x86_64" + }, + "bzip2-libs": { + "epoch": "0", + "version": "1.0.6", + "release": "13.el7", + "installdate": "1603473733", + "arch": "x86_64" + }, + "wpa_supplicant": { + "epoch": "1", + "version": "2.6", + "release": "12.el7", + "installdate": "1603473777", + "arch": "x86_64" + }, + "policycoreutils-python": { + "epoch": "0", + "version": "2.5", + "release": "34.0.1.el7", + "installdate": "1603473778", + "arch": "x86_64" + }, + "gawk": { + "epoch": "0", + "version": "4.0.2", + "release": "4.el7_3.1", + "installdate": "1603473734", + "arch": "x86_64" + }, + "dbus-glib": { + "epoch": "0", + "version": "0.100", + "release": "7.el7", + "installdate": "1603473794", + "arch": "x86_64" + }, + "libcap": { + "epoch": "0", + "version": "2.22", + "release": "11.el7", + "installdate": "1603473734", + "arch": "x86_64" + }, + "libffi": { + "epoch": "0", + "version": "3.0.13", + "release": "19.el7", + "installdate": "1603473734", + "arch": "x86_64" + }, + "rhn-client-tools": { + "epoch": "0", + "version": "2.0.2", + "release": "24.0.7.el7", + "installdate": "1603473794", + "arch": "x86_64" + }, + "libgcrypt": { + "epoch": "0", + "version": "1.5.3", + "release": "14.el7", + "installdate": "1603473734", + "arch": "x86_64" + }, + "usermode": { + "epoch": "0", + "version": "1.111", + "release": "6.el7", + "installdate": "1603473794", + "arch": "x86_64" + }, + "diffutils": { + "epoch": "0", + "version": "3.3", + "release": "5.el7", + "installdate": "1603473735", + "arch": "x86_64" + }, + "yum-plugin-ulninfo": { + "epoch": "0", + "version": "0.2", + "release": "13.el7", + "installdate": "1603473795", + "arch": "noarch" + }, + "quota": { + "epoch": "1", + "version": "4.01", + "release": "19.el7", + "installdate": "1603473795", + "arch": "x86_64" + }, + "make": { + "epoch": "1", + "version": "3.82", + "release": "24.el7", + "installdate": "1603473735", + "arch": "x86_64" + }, + "gdbm": { + "epoch": "0", + "version": "1.10", + "release": "8.el7", + "installdate": "1603473736", + "arch": "x86_64" + }, + "perl-Pod-Perldoc": { + "epoch": "0", + "version": "3.20", + "release": "4.el7", + "installdate": "1603473736", + "arch": "noarch" + }, + "openssh-clients": { + "epoch": "0", + "version": "7.4p1", + "release": "21.0.1.el7", + "installdate": "1603473796", + "arch": "x86_64" + }, + "perl-Pod-Usage": { + "epoch": "0", + "version": "1.63", + "release": "3.el7", + "installdate": "1603473736", + "arch": "noarch" + }, + "authconfig": { + "epoch": "0", + "version": "6.2.8", + "release": "30.el7", + "installdate": "1603473809", + "arch": "x86_64" + }, + "perl-Storable": { + "epoch": "0", + "version": "2.45", + "release": "3.el7", + "installdate": "1603473737", + "arch": "x86_64" + }, + "audit": { + "epoch": "0", + "version": "2.8.5", + "release": "4.el7", + "installdate": "1603473810", + "arch": "x86_64" + }, + "perl-Time-Local": { + "epoch": "0", + "version": "1.2300", + "release": "2.el7", + "installdate": "1603473737", + "arch": "noarch" + }, + "net-tools": { + "epoch": "0", + "version": "2.0", + "release": "0.25.20131004git.el7", + "installdate": "1603473810", + "arch": "x86_64" + }, + "perl-Carp": { + "epoch": "0", + "version": "1.26", + "release": "244.el7", + "installdate": "1603473737", + "arch": "noarch" + }, + "parted": { + "epoch": "0", + "version": "3.1", + "release": "32.0.1.el7", + "installdate": "1603473810", + "arch": "x86_64" + }, + "perl-PathTools": { + "epoch": "0", + "version": "3.40", + "release": "5.el7", + "installdate": "1603473737", + "arch": "x86_64" + }, + "deltarpm": { + "epoch": "0", + "version": "3.6", + "release": "3.el7", + "installdate": "1603473811", + "arch": "x86_64" + }, + "pciutils-libs": { + "epoch": "0", + "version": "3.5.1", + "release": "3.el7", + "installdate": "1603473739", + "arch": "x86_64" + }, + "wget": { + "epoch": "0", + "version": "1.14", + "release": "18.el7_6.1", + "installdate": "1603473811", + "arch": "x86_64" + }, + "libsysfs": { + "epoch": "0", + "version": "2.1.0", + "release": "16.el7", + "installdate": "1603473812", + "arch": "x86_64" + }, + "gpg-pubkey": { + "epoch": "0", + "version": "ec551f03", + "release": "53619141", + "installdate": "1603474162", + "arch": "(none)" + }, + "slang": { + "epoch": "0", + "version": "2.2.4", + "release": "11.el7", + "installdate": "1603473740", + "arch": "x86_64" + }, + "hostname": { + "epoch": "0", + "version": "3.13", + "release": "3.el7_7.1", + "installdate": "1603473740", + "arch": "x86_64" + }, + "tzdata": { + "epoch": "0", + "version": "2020b", + "release": "3.el7", + "installdate": "1603474221", + "arch": "noarch" + }, + "lzo": { + "epoch": "0", + "version": "2.06", + "release": "8.el7", + "installdate": "1603473740", + "arch": "x86_64" + }, + "nspr": { + "epoch": "0", + "version": "4.25.0", + "release": "2.el7_9", + "installdate": "1603474228", + "arch": "x86_64" + }, + "libnetfilter_conntrack": { + "epoch": "0", + "version": "1.0.6", + "release": "1.el7_3", + "installdate": "1603473740", + "arch": "x86_64" + }, + "sed": { + "epoch": "0", + "version": "4.2.2", + "release": "7.el7", + "installdate": "1603474228", + "arch": "x86_64" + }, + "ipset-libs": { + "epoch": "0", + "version": "7.1", + "release": "1.el7", + "installdate": "1603473741", + "arch": "x86_64" + }, + "chkconfig": { + "epoch": "0", + "version": "1.7.6", + "release": "1.el7", + "installdate": "1603474229", + "arch": "x86_64" + }, + "tcp_wrappers": { + "epoch": "0", + "version": "7.6", + "release": "77.el7", + "installdate": "1603473741", + "arch": "x86_64" + }, + "iproute": { + "epoch": "0", + "version": "5.4.0", + "release": "1.0.1.el7", + "installdate": "1603474230", + "arch": "x86_64" + }, + "tar": { + "epoch": "2", + "version": "1.26", + "release": "35.el7", + "installdate": "1603473741", + "arch": "x86_64" + }, + "file-libs": { + "epoch": "0", + "version": "5.11", + "release": "37.el7", + "installdate": "1603474233", + "arch": "x86_64" + }, + "m4": { + "epoch": "0", + "version": "1.4.16", + "release": "10.el7", + "installdate": "1603473741", + "arch": "x86_64" + }, + "nss-softokn": { + "epoch": "0", + "version": "3.53.1", + "release": "6.0.1.el7_9", + "installdate": "1603474233", + "arch": "x86_64" + }, + "ncurses": { + "epoch": "0", + "version": "5.9", + "release": "14.20130511.el7_4", + "installdate": "1603473742", + "arch": "x86_64" + }, + "libstdc++": { + "epoch": "0", + "version": "4.8.5", + "release": "44.0.3.el7", + "installdate": "1603474234", + "arch": "x86_64" + }, + "libpath_utils": { + "epoch": "0", + "version": "0.2.1", + "release": "32.el7", + "installdate": "1603473742", + "arch": "x86_64" + }, + "libxml2": { + "epoch": "0", + "version": "2.9.1", + "release": "6.0.1.el7.5", + "installdate": "1603474237", + "arch": "x86_64" + }, + "pth": { + "epoch": "0", + "version": "2.0.7", + "release": "23.el7", + "installdate": "1603473742", + "arch": "x86_64" + }, + "nss-tools": { + "epoch": "0", + "version": "3.53.1", + "release": "3.el7_9", + "installdate": "1603474238", + "arch": "x86_64" + }, + "libssh2": { + "epoch": "0", + "version": "1.8.0", + "release": "4.el7", + "installdate": "1603474239", + "arch": "x86_64" + }, + "rpm": { + "epoch": "0", + "version": "4.11.3", + "release": "45.el7", + "installdate": "1603474240", + "arch": "x86_64" + }, + "coreutils": { + "epoch": "0", + "version": "8.22", + "release": "24.0.1.el7", + "installdate": "1603473744", + "arch": "x86_64" + }, + "yum": { + "epoch": "0", + "version": "3.4.3", + "release": "168.0.3.el7", + "installdate": "1603474241", + "arch": "noarch" + }, + "numactl-libs": { + "epoch": "0", + "version": "2.0.12", + "release": "5.0.3.el7", + "installdate": "1603474241", + "arch": "x86_64" + }, + "libsmartcols": { + "epoch": "0", + "version": "2.23.2", + "release": "65.0.1.el7", + "installdate": "1603474241", + "arch": "x86_64" + }, + "newt-python": { + "epoch": "0", + "version": "0.52.15", + "release": "4.el7", + "installdate": "1603473747", + "arch": "x86_64" + }, + "kpartx": { + "epoch": "0", + "version": "0.4.9", + "release": "133.0.1.el7", + "installdate": "1603474242", + "arch": "x86_64" + }, + "kmod": { + "epoch": "0", + "version": "20", + "release": "28.0.3.el7", + "installdate": "1603474243", + "arch": "x86_64" + }, + "libselinux-python": { + "epoch": "0", + "version": "2.5", + "release": "15.el7", + "installdate": "1603473748", + "arch": "x86_64" + }, + "systemd": { + "epoch": "0", + "version": "219", + "release": "78.0.1.el7", + "installdate": "1603474245", + "arch": "x86_64" + }, + "grub2-tools-minimal": { + "epoch": "1", + "version": "2.02", + "release": "0.87.0.1.el7", + "installdate": "1603474246", + "arch": "x86_64" + }, + "python-dmidecode": { + "epoch": "0", + "version": "3.12.2", + "release": "4.el7", + "installdate": "1603473764", + "arch": "x86_64" + }, + "dhcp-libs": { + "epoch": "12", + "version": "4.2.5", + "release": "82.0.1.el7", + "installdate": "1603474247", + "arch": "x86_64" + }, + "python-gobject-base": { + "epoch": "0", + "version": "3.22.0", + "release": "1.el7_4.1", + "installdate": "1603473765", + "arch": "x86_64" + }, + "grub2-tools-extra": { + "epoch": "1", + "version": "2.02", + "release": "0.87.0.1.el7", + "installdate": "1603474248", + "arch": "x86_64" + }, + "pyOpenSSL": { + "epoch": "0", + "version": "0.13.1", + "release": "4.el7", + "installdate": "1603473765", + "arch": "x86_64" + }, + "teamd": { + "epoch": "0", + "version": "1.29", + "release": "3.el7", + "installdate": "1603474249", + "arch": "x86_64" + }, + "pyliblzma": { + "epoch": "0", + "version": "0.5.3", + "release": "11.el7", + "installdate": "1603473765", + "arch": "x86_64" + }, + "plymouth-scripts": { + "epoch": "0", + "version": "0.8.9", + "release": "0.34.20140113.0.1.el7", + "installdate": "1603474250", + "arch": "x86_64" + }, + "python-chardet": { + "epoch": "0", + "version": "2.2.1", + "release": "3.el7", + "installdate": "1603473766", + "arch": "noarch" + }, + "sudo": { + "epoch": "0", + "version": "1.8.23", + "release": "10.el7", + "installdate": "1603474250", + "arch": "x86_64" + }, + "audit-libs-python": { + "epoch": "0", + "version": "2.8.5", + "release": "4.el7", + "installdate": "1603473766", + "arch": "x86_64" + }, + "grub2": { + "epoch": "1", + "version": "2.02", + "release": "0.87.0.1.el7", + "installdate": "1603474251", + "arch": "x86_64" + }, + "kernel": { + "epoch": "0", + "version": "3.10.0", + "release": "1160.2.1.el7", + "installdate": "1603474261", + "arch": "x86_64" + }, + "logrotate": { + "epoch": "0", + "version": "3.8.6", + "release": "19.el7", + "installdate": "1603473766", + "arch": "x86_64" + }, + "libgudev1": { + "epoch": "0", + "version": "219", + "release": "78.0.1.el7", + "installdate": "1603474262", + "arch": "x86_64" + }, + "rhnlib": { + "epoch": "0", + "version": "2.5.65", + "release": "8.0.3.el7", + "installdate": "1603474265", + "arch": "noarch" + }, + "gnupg2": { + "epoch": "0", + "version": "2.0.22", + "release": "5.el7_5", + "installdate": "1603473769", + "arch": "x86_64" + }, + "iprutils": { + "epoch": "0", + "version": "2.4.17.1", + "release": "3.el7_7", + "installdate": "1603474266", + "arch": "x86_64" + }, + "selinux-policy-devel": { + "epoch": "0", + "version": "3.13.1", + "release": "268.0.1.el7", + "installdate": "1603474298", + "arch": "noarch" + }, + "python-urlgrabber": { + "epoch": "0", + "version": "3.10", + "release": "10.el7", + "installdate": "1603473769", + "arch": "noarch" + }, + "e2fsprogs-libs": { + "epoch": "0", + "version": "1.45.4", + "release": "3.0.5.el7", + "installdate": "1603474424", + "arch": "x86_64" + }, + "libpipeline": { + "epoch": "0", + "version": "1.2.3", + "release": "3.el7", + "installdate": "1603473770", + "arch": "x86_64" + }, + "btrfs-progs": { + "epoch": "0", + "version": "5.4.0", + "release": "1.el7", + "installdate": "1603474424", + "arch": "x86_64" + }, + "libsemanage": { + "epoch": "0", + "version": "2.5", + "release": "14.el7", + "installdate": "1603473771", + "arch": "x86_64" + }, + "libmpc": { + "epoch": "0", + "version": "1.0.1", + "release": "3.el7", + "installdate": "1603474529", + "arch": "x86_64" + }, + "libdaemon": { + "epoch": "0", + "version": "0.14", + "release": "7.el7", + "installdate": "1603473771", + "arch": "x86_64" + }, + "kbd-misc": { + "epoch": "0", + "version": "1.15.5", + "release": "15.el7", + "installdate": "1603473728", + "arch": "noarch" + }, + "policycoreutils": { + "epoch": "0", + "version": "2.5", + "release": "34.0.1.el7", + "installdate": "1603473775", + "arch": "x86_64" + }, + "polkit-pkla-compat": { + "epoch": "0", + "version": "0.1", + "release": "4.el7", + "installdate": "1603473775", + "arch": "x86_64" + }, + "filesystem": { + "epoch": "0", + "version": "3.2", + "release": "25.el7", + "installdate": "1603473728", + "arch": "x86_64" + }, + "crontabs": { + "epoch": "0", + "version": "1.11", + "release": "6.20121102git.el7", + "installdate": "1603473775", + "arch": "noarch" + }, + "cronie": { + "epoch": "0", + "version": "1.4.11", + "release": "23.el7", + "installdate": "1603473775", + "arch": "x86_64" + }, + "libsepol": { + "epoch": "0", + "version": "2.5", + "release": "10.el7", + "installdate": "1603473733", + "arch": "x86_64" + }, + "virt-what": { + "epoch": "0", + "version": "1.18", + "release": "4.el7", + "installdate": "1603473776", + "arch": "x86_64" + }, + "libselinux": { + "epoch": "0", + "version": "2.5", + "release": "15.el7", + "installdate": "1603473733", + "arch": "x86_64" + }, + "info": { + "epoch": "0", + "version": "5.1", + "release": "5.el7", + "installdate": "1603473733", + "arch": "x86_64" + }, + "python-hwdata": { + "epoch": "0", + "version": "1.7.3", + "release": "4.el7", + "installdate": "1603473777", + "arch": "noarch" + }, + "libdrm": { + "epoch": "0", + "version": "2.4.97", + "release": "2.el7", + "installdate": "1603473777", + "arch": "x86_64" + }, + "grep": { + "epoch": "0", + "version": "2.20", + "release": "3.el7", + "installdate": "1603473733", + "arch": "x86_64" + }, + "libcgroup": { + "epoch": "0", + "version": "0.41", + "release": "21.el7", + "installdate": "1603473778", + "arch": "x86_64" + }, + "policycoreutils-devel": { + "epoch": "0", + "version": "2.5", + "release": "34.0.1.el7", + "installdate": "1603473778", + "arch": "x86_64" + }, + "readline": { + "epoch": "0", + "version": "6.2", + "release": "11.el7", + "installdate": "1603473734", + "arch": "x86_64" + }, + "libattr": { + "epoch": "0", + "version": "2.4.46", + "release": "13.el7", + "installdate": "1603473734", + "arch": "x86_64" + }, + "dbus-python": { + "epoch": "0", + "version": "1.1.1", + "release": "9.el7", + "installdate": "1603473794", + "arch": "x86_64" + }, + "libacl": { + "epoch": "0", + "version": "2.2.51", + "release": "15.el7", + "installdate": "1603473734", + "arch": "x86_64" + }, + "audit-libs": { + "epoch": "0", + "version": "2.8.5", + "release": "4.el7", + "installdate": "1603473734", + "arch": "x86_64" + }, + "python-pyudev": { + "epoch": "0", + "version": "0.15", + "release": "9.el7", + "installdate": "1603473794", + "arch": "noarch" + }, + "sqlite": { + "epoch": "0", + "version": "3.7.17", + "release": "8.el7_7.1", + "installdate": "1603473734", + "arch": "x86_64" + }, + "python-gudev": { + "epoch": "0", + "version": "147.2", + "release": "7.el7", + "installdate": "1603473794", + "arch": "x86_64" + }, + "libgpg-error": { + "epoch": "0", + "version": "1.12", + "release": "3.el7", + "installdate": "1603473734", + "arch": "x86_64" + }, + "lua": { + "epoch": "0", + "version": "5.1.4", + "release": "15.el7", + "installdate": "1603473734", + "arch": "x86_64" + }, + "rhnsd": { + "epoch": "0", + "version": "5.0.13", + "release": "10.0.1.el7", + "installdate": "1603473794", + "arch": "x86_64" + }, + "which": { + "epoch": "0", + "version": "2.20", + "release": "7.el7", + "installdate": "1603473735", + "arch": "x86_64" + }, + "rhn-check": { + "epoch": "0", + "version": "2.0.2", + "release": "24.0.7.el7", + "installdate": "1603473795", + "arch": "x86_64" + }, + "libnl3": { + "epoch": "0", + "version": "3.2.28", + "release": "4.el7", + "installdate": "1603473735", + "arch": "x86_64" + }, + "yum-rhn-plugin": { + "epoch": "0", + "version": "2.0.1", + "release": "10.0.1.el7", + "installdate": "1603473795", + "arch": "noarch" + }, + "groff-base": { + "epoch": "0", + "version": "1.22.2", + "release": "8.el7", + "installdate": "1603473735", + "arch": "x86_64" + }, + "quota-nls": { + "epoch": "1", + "version": "4.01", + "release": "19.el7", + "installdate": "1603473795", + "arch": "noarch" + }, + "libidn": { + "epoch": "0", + "version": "1.28", + "release": "4.el7", + "installdate": "1603473735", + "arch": "x86_64" + }, + "kbd-legacy": { + "epoch": "0", + "version": "1.15.5", + "release": "15.el7", + "installdate": "1603473795", + "arch": "noarch" + }, + "libverto": { + "epoch": "0", + "version": "0.2.5", + "release": "4.el7", + "installdate": "1603473736", + "arch": "x86_64" + }, + "perl-parent": { + "epoch": "1", + "version": "0.225", + "release": "244.el7", + "installdate": "1603473736", + "arch": "noarch" + }, + "perl-podlators": { + "epoch": "0", + "version": "2.5.1", + "release": "3.el7", + "installdate": "1603473736", + "arch": "noarch" + }, + "openssh-server": { + "epoch": "0", + "version": "7.4p1", + "release": "21.0.1.el7", + "installdate": "1603473796", + "arch": "x86_64" + }, + "perl-Encode": { + "epoch": "0", + "version": "2.51", + "release": "7.el7", + "installdate": "1603473736", + "arch": "x86_64" + }, + "perl-threads": { + "epoch": "0", + "version": "1.87", + "release": "4.el7", + "installdate": "1603473737", + "arch": "x86_64" + }, + "pciutils": { + "epoch": "0", + "version": "3.5.1", + "release": "3.el7", + "installdate": "1603473809", + "arch": "x86_64" + }, + "perl-Filter": { + "epoch": "0", + "version": "1.49", + "release": "3.el7", + "installdate": "1603473737", + "arch": "x86_64" + }, + "postfix": { + "epoch": "2", + "version": "2.10.1", + "release": "9.el7", + "installdate": "1603473809", + "arch": "x86_64" + }, + "perl-Time-HiRes": { + "epoch": "4", + "version": "1.9725", + "release": "3.el7", + "installdate": "1603473737", + "arch": "x86_64" + }, + "irqbalance": { + "epoch": "3", + "version": "1.0.8", + "release": "2.el7", + "installdate": "1603473810", + "arch": "x86_64" + }, + "perl-constant": { + "epoch": "0", + "version": "1.27", + "release": "2.el7", + "installdate": "1603473737", + "arch": "noarch" + }, + "rsync": { + "epoch": "0", + "version": "3.1.2", + "release": "10.el7", + "installdate": "1603473810", + "arch": "x86_64" + }, + "perl-Scalar-List-Utils": { + "epoch": "0", + "version": "1.27", + "release": "248.el7", + "installdate": "1603473737", + "arch": "x86_64" + }, + "qemu-guest-agent": { + "epoch": "10", + "version": "2.12.0", + "release": "3.el7", + "installdate": "1603473810", + "arch": "x86_64" + }, + "perl-File-Temp": { + "epoch": "0", + "version": "0.23.01", + "release": "3.el7", + "installdate": "1603473737", + "arch": "noarch" + }, + "perl-Pod-Simple": { + "epoch": "1", + "version": "3.28", + "release": "4.el7", + "installdate": "1603473737", + "arch": "noarch" + }, + "sg3_utils": { + "epoch": "1", + "version": "1.37", + "release": "19.0.1.el7", + "installdate": "1603473810", + "arch": "x86_64" + }, + "perl-Socket": { + "epoch": "0", + "version": "2.010", + "release": "5.el7", + "installdate": "1603473737", + "arch": "x86_64" + }, + "libmnl": { + "epoch": "0", + "version": "1.0.3", + "release": "7.el7", + "installdate": "1603473739", + "arch": "x86_64" + }, + "libassuan": { + "epoch": "0", + "version": "2.1.0", + "release": "3.el7", + "installdate": "1603473739", + "arch": "x86_64" + }, + "p11-kit": { + "epoch": "0", + "version": "0.23.5", + "release": "3.el7", + "installdate": "1603473739", + "arch": "x86_64" + }, + "bzip2": { + "epoch": "0", + "version": "1.0.6", + "release": "13.el7", + "installdate": "1603473812", + "arch": "x86_64" + }, + "xz": { + "epoch": "0", + "version": "5.2.2", + "release": "1.el7", + "installdate": "1603473740", + "arch": "x86_64" + }, + "uname26": { + "epoch": "0", + "version": "1.0", + "release": "1.el7", + "installdate": "1603473812", + "arch": "x86_64" + }, + "libunistring": { + "epoch": "0", + "version": "0.9.3", + "release": "9.el7", + "installdate": "1603473740", + "arch": "x86_64" + }, + "libbasicobjects": { + "epoch": "0", + "version": "0.1.1", + "release": "32.el7", + "installdate": "1603473740", + "arch": "x86_64" + }, + "libgcc": { + "epoch": "0", + "version": "4.8.5", + "release": "44.0.3.el7", + "installdate": "1603474175", + "arch": "x86_64" + }, + "newt": { + "epoch": "0", + "version": "0.52.15", + "release": "4.el7", + "installdate": "1603473740", + "arch": "x86_64" + }, + "grub2-common": { + "epoch": "1", + "version": "2.02", + "release": "0.87.0.1.el7", + "installdate": "1603474175", + "arch": "noarch" + }, + "jansson": { + "epoch": "0", + "version": "2.10", + "release": "1.el7", + "installdate": "1603473740", + "arch": "x86_64" + }, + "selinux-policy": { + "epoch": "0", + "version": "3.13.1", + "release": "268.0.1.el7", + "installdate": "1603474193", + "arch": "noarch" + }, + "sysvinit-tools": { + "epoch": "0", + "version": "2.88", + "release": "14.dsf.el7", + "installdate": "1603473740", + "arch": "x86_64" + }, + "oraclelinux-release": { + "epoch": "7", + "version": "7.9", + "release": "1.0.9.el7", + "installdate": "1603474220", + "arch": "x86_64" + }, + "libcollection": { + "epoch": "0", + "version": "0.7.0", + "release": "32.el7", + "installdate": "1603473740", + "arch": "x86_64" + }, + "glibc-common": { + "epoch": "0", + "version": "2.17", + "release": "317.0.1.el7", + "installdate": "1603474225", + "arch": "x86_64" + }, + "ethtool": { + "epoch": "2", + "version": "4.8", + "release": "10.el7", + "installdate": "1603473740", + "arch": "x86_64" + }, + "glibc": { + "epoch": "0", + "version": "2.17", + "release": "317.0.1.el7", + "installdate": "1603474228", + "arch": "x86_64" + }, + "checkpolicy": { + "epoch": "0", + "version": "2.5", + "release": "8.el7", + "installdate": "1603473740", + "arch": "x86_64" + }, + "nss-util": { + "epoch": "0", + "version": "3.53.1", + "release": "1.el7_9", + "installdate": "1603474228", + "arch": "x86_64" + }, + "libuuid": { + "epoch": "0", + "version": "2.23.2", + "release": "65.0.1.el7", + "installdate": "1603474228", + "arch": "x86_64" + }, + "libblkid": { + "epoch": "0", + "version": "2.23.2", + "release": "65.0.1.el7", + "installdate": "1603474229", + "arch": "x86_64" + }, + "ipset": { + "epoch": "0", + "version": "7.1", + "release": "1.el7", + "installdate": "1603473741", + "arch": "x86_64" + }, + "krb5-libs": { + "epoch": "0", + "version": "1.15.1", + "release": "50.el7", + "installdate": "1603474229", + "arch": "x86_64" + }, + "keyutils": { + "epoch": "0", + "version": "1.5.8", + "release": "3.el7", + "installdate": "1603473741", + "arch": "x86_64" + }, + "cpio": { + "epoch": "0", + "version": "2.11", + "release": "28.el7", + "installdate": "1603474229", + "arch": "x86_64" + }, + "setools-libs": { + "epoch": "0", + "version": "3.3.8", + "release": "4.el7", + "installdate": "1603473741", + "arch": "x86_64" + }, + "glib2": { + "epoch": "0", + "version": "2.56.1", + "release": "7.el7", + "installdate": "1603474230", + "arch": "x86_64" + }, + "perl-macros": { + "epoch": "4", + "version": "5.16.3", + "release": "297.el7", + "installdate": "1603474230", + "arch": "x86_64" + }, + "libdb-utils": { + "epoch": "0", + "version": "5.3.21", + "release": "25.el7", + "installdate": "1603473741", + "arch": "x86_64" + }, + "libselinux-utils": { + "epoch": "0", + "version": "2.5", + "release": "15.el7", + "installdate": "1603473742", + "arch": "x86_64" + }, + "mozjs17": { + "epoch": "0", + "version": "17.0.0", + "release": "20.el7", + "installdate": "1603473742", + "arch": "x86_64" + }, + "gmp": { + "epoch": "1", + "version": "6.0.0", + "release": "15.el7", + "installdate": "1603473742", + "arch": "x86_64" + }, + "libini_config": { + "epoch": "0", + "version": "1.3.1", + "release": "32.el7", + "installdate": "1603473742", + "arch": "x86_64" + }, + "hardlink": { + "epoch": "1", + "version": "1.0", + "release": "19.el7", + "installdate": "1603473742", + "arch": "x86_64" + }, + "libseccomp": { + "epoch": "0", + "version": "2.3.1", + "release": "4.el7", + "installdate": "1603473742", + "arch": "x86_64" + }, + "libfastjson": { + "epoch": "0", + "version": "0.99.4", + "release": "3.el7", + "installdate": "1603473742", + "arch": "x86_64" + }, + "libtasn1": { + "epoch": "0", + "version": "4.10", + "release": "1.el7", + "installdate": "1603473743", + "arch": "x86_64" + }, + "openssl-libs": { + "epoch": "1", + "version": "1.0.2k", + "release": "19.0.1.el7", + "installdate": "1603473744", + "arch": "x86_64" + }, + "shared-mime-info": { + "epoch": "0", + "version": "1.8", + "release": "5.el7", + "installdate": "1603473747", + "arch": "x86_64" + }, + "python-decorator": { + "epoch": "0", + "version": "3.4.0", + "release": "3.el7", + "installdate": "1603473747", + "arch": "noarch" + }, + "cracklib-dicts": { + "epoch": "0", + "version": "2.9.0", + "release": "11.el7", + "installdate": "1603473747", + "arch": "x86_64" + }, + "pam": { + "epoch": "0", + "version": "1.1.8", + "release": "23.el7", + "installdate": "1603473748", + "arch": "x86_64" + }, + "python-iniparse": { + "epoch": "0", + "version": "0.4", + "release": "9.el7", + "installdate": "1603473748", + "arch": "noarch" + }, + "cyrus-sasl-lib": { + "epoch": "0", + "version": "2.1.26", + "release": "23.el7", + "installdate": "1603473748", + "arch": "x86_64" + }, + "libevent": { + "epoch": "0", + "version": "2.0.21", + "release": "4.el7", + "installdate": "1603473748", + "arch": "x86_64" + }, + "python-slip": { + "epoch": "0", + "version": "0.4.0", + "release": "4.el7", + "installdate": "1603473764", + "arch": "noarch" + }, + "gettext-libs": { + "epoch": "0", + "version": "0.19.8.1", + "release": "3.el7", + "installdate": "1603473764", + "arch": "x86_64" + }, + "gobject-introspection": { + "epoch": "0", + "version": "1.56.1", + "release": "1.el7", + "installdate": "1603473765", + "arch": "x86_64" + }, + "pygobject2": { + "epoch": "0", + "version": "2.28.6", + "release": "11.el7", + "installdate": "1603473765", + "arch": "x86_64" + }, + "pkgconfig": { + "epoch": "1", + "version": "0.27.1", + "release": "4.el7", + "installdate": "1603473765", + "arch": "x86_64" + }, + "python-configobj": { + "epoch": "0", + "version": "4.7.2", + "release": "7.el7", + "installdate": "1603473765", + "arch": "noarch" + }, + "python-linux-procfs": { + "epoch": "0", + "version": "0.4.11", + "release": "4.el7", + "installdate": "1603473765", + "arch": "noarch" + }, + "python-IPy": { + "epoch": "0", + "version": "0.75", + "release": "6.el7", + "installdate": "1603473765", + "arch": "noarch" + }, + "python-kitchen": { + "epoch": "0", + "version": "1.1.1", + "release": "5.el7", + "installdate": "1603473766", + "arch": "noarch" + }, + "m2crypto": { + "epoch": "0", + "version": "0.21.1", + "release": "17.el7", + "installdate": "1603473766", + "arch": "x86_64" + }, + "python-schedutils": { + "epoch": "0", + "version": "0.4", + "release": "6.el7", + "installdate": "1603473766", + "arch": "x86_64" + }, + "openssl": { + "epoch": "1", + "version": "1.0.2k", + "release": "19.0.1.el7", + "installdate": "1603473766", + "arch": "x86_64" + }, + "fipscheck-lib": { + "epoch": "0", + "version": "1.4.1", + "release": "6.el7", + "installdate": "1603473766", + "arch": "x86_64" + }, + "libuser": { + "epoch": "0", + "version": "0.60", + "release": "9.el7", + "installdate": "1603473768", + "arch": "x86_64" + }, + "gpgme": { + "epoch": "0", + "version": "1.3.2", + "release": "5.el7", + "installdate": "1603473769", + "arch": "x86_64" + }, + "passwd": { + "epoch": "0", + "version": "0.79", + "release": "6.el7", + "installdate": "1603473769", + "arch": "x86_64" + }, + "python-pycurl": { + "epoch": "0", + "version": "7.19.0", + "release": "19.el7", + "installdate": "1603473769", + "arch": "x86_64" + }, + "libcom_err": { + "epoch": "0", + "version": "1.45.4", + "release": "3.0.5.el7", + "installdate": "1603474424", + "arch": "x86_64" + }, + "libss": { + "epoch": "0", + "version": "1.45.4", + "release": "3.0.5.el7", + "installdate": "1603474424", + "arch": "x86_64" + }, + "json-c": { + "epoch": "0", + "version": "0.11", + "release": "4.el7_0", + "installdate": "1603473770", + "arch": "x86_64" + }, + "e2fsprogs": { + "epoch": "0", + "version": "1.45.4", + "release": "3.0.5.el7", + "installdate": "1603474424", + "arch": "x86_64" + }, + "ustr": { + "epoch": "0", + "version": "1.0.4", + "release": "16.el7", + "installdate": "1603473770", + "arch": "x86_64" + }, + "kernel-uek": { + "epoch": "0", + "version": "4.14.35", + "release": "1902.300.11.el7uek", + "installdate": "1603473804", + "arch": "x86_64", + "versions": [ + { + "epoch": "0", + "version": "5.4.17", + "release": "2011.7.4.el7uek", + "installdate": "1603474430", + "arch": "x86_64" + }, + { + "epoch": "0", + "version": "4.14.35", + "release": "2025.401.4.el7uek", + "installdate": "1603474256", + "arch": "x86_64" + }, + { + "epoch": "0", + "version": "4.14.35", + "release": "1902.300.11.el7uek", + "installdate": "1603473804", + "arch": "x86_64" + } + ] + }, + "shadow-utils": { + "epoch": "2", + "version": "4.6", + "release": "5.0.1.el7", + "installdate": "1603473771", + "arch": "x86_64" + }, + "mpfr": { + "epoch": "0", + "version": "3.1.1", + "release": "4.el7", + "installdate": "1603474529", + "arch": "x86_64" + }, + "libsemanage-python": { + "epoch": "0", + "version": "2.5", + "release": "14.el7", + "installdate": "1603473771", + "arch": "x86_64" + }, + "qrencode-libs": { + "epoch": "0", + "version": "3.4.1", + "release": "3.el7", + "installdate": "1603473771", + "arch": "x86_64" + }, + "cryptsetup-libs": { + "epoch": "0", + "version": "2.0.3", + "release": "6.el7", + "installdate": "1603473772", + "arch": "x86_64" + }, + "chef-workstation": { + "epoch": "0", + "version": "21.10.640", + "release": "1.el7", + "installdate": "1675099280", + "arch": "x86_64" + }, + "perl": { + "epoch": "4", + "version": "5.16.3", + "release": "297.el7", + "installdate": "1603474233", + "arch": "x86_64" + }, + "file": { + "epoch": "0", + "version": "5.11", + "release": "37.el7", + "installdate": "1603474233", + "arch": "x86_64" + }, + "nss-sysinit": { + "epoch": "0", + "version": "3.53.1", + "release": "3.el7_9", + "installdate": "1603474233", + "arch": "x86_64" + }, + "lz4": { + "epoch": "0", + "version": "1.8.3", + "release": "1.el7", + "installdate": "1603474234", + "arch": "x86_64" + }, + "expat": { + "epoch": "0", + "version": "2.1.0", + "release": "12.el7", + "installdate": "1603474234", + "arch": "x86_64" + }, + "python": { + "epoch": "0", + "version": "2.7.5", + "release": "89.0.1.el7", + "installdate": "1603474237", + "arch": "x86_64" + }, + "libxml2-python": { + "epoch": "0", + "version": "2.9.1", + "release": "6.0.1.el7.5", + "installdate": "1603474237", + "arch": "x86_64" + }, + "python-firewall": { + "epoch": "0", + "version": "0.6.3", + "release": "11.0.1.el7", + "installdate": "1603474237", + "arch": "noarch" + }, + "binutils": { + "epoch": "0", + "version": "2.27", + "release": "44.base.0.1.el7", + "installdate": "1603474239", + "arch": "x86_64" + }, + "libcurl": { + "epoch": "0", + "version": "7.29.0", + "release": "59.0.1.el7", + "installdate": "1603474239", + "arch": "x86_64" + }, + "rpm-libs": { + "epoch": "0", + "version": "4.11.3", + "release": "45.el7", + "installdate": "1603474239", + "arch": "x86_64" + }, + "openldap": { + "epoch": "0", + "version": "2.4.44", + "release": "22.el7", + "installdate": "1603474240", + "arch": "x86_64" + }, + "rpm-python": { + "epoch": "0", + "version": "4.11.3", + "release": "45.el7", + "installdate": "1603474240", + "arch": "x86_64" + }, + "yum-utils": { + "epoch": "0", + "version": "1.1.31", + "release": "54.0.1.el7_8", + "installdate": "1603474241", + "arch": "noarch" + }, + "bc": { + "epoch": "0", + "version": "1.06.95", + "release": "13.el7", + "installdate": "1603474241", + "arch": "x86_64" + }, + "kernel-tools-libs": { + "epoch": "0", + "version": "3.10.0", + "release": "1160.2.1.el7", + "installdate": "1603474241", + "arch": "x86_64" + }, + "iptables": { + "epoch": "0", + "version": "1.4.21", + "release": "35.0.1.el7", + "installdate": "1603474241", + "arch": "x86_64" + }, + "kmod-libs": { + "epoch": "0", + "version": "20", + "release": "28.0.3.el7", + "installdate": "1603474241", + "arch": "x86_64" + }, + "device-mapper-libs": { + "epoch": "7", + "version": "1.02.170", + "release": "6.0.3.el7", + "installdate": "1603474242", + "arch": "x86_64" + }, + "util-linux": { + "epoch": "0", + "version": "2.23.2", + "release": "65.0.1.el7", + "installdate": "1603474242", + "arch": "x86_64" + }, + "dracut": { + "epoch": "0", + "version": "033", + "release": "572.0.1.el7", + "installdate": "1603474243", + "arch": "x86_64" + }, + "elfutils-libs": { + "epoch": "0", + "version": "0.176", + "release": "5.el7", + "installdate": "1603474243", + "arch": "x86_64" + }, + "dbus-libs": { + "epoch": "1", + "version": "1.10.24", + "release": "15.0.1.el7", + "installdate": "1603474243", + "arch": "x86_64" + }, + "dbus": { + "epoch": "1", + "version": "1.10.24", + "release": "15.0.1.el7", + "installdate": "1603474246", + "arch": "x86_64" + }, + "initscripts": { + "epoch": "0", + "version": "9.49.53", + "release": "1.0.1.el7", + "installdate": "1603474246", + "arch": "x86_64" + }, + "grub2-tools": { + "epoch": "1", + "version": "2.02", + "release": "0.87.0.1.el7", + "installdate": "1603474247", + "arch": "x86_64" + }, + "NetworkManager": { + "epoch": "1", + "version": "1.18.8", + "release": "1.el7", + "installdate": "1603474247", + "arch": "x86_64" + }, + "dhcp-common": { + "epoch": "12", + "version": "4.2.5", + "release": "82.0.1.el7", + "installdate": "1603474247", + "arch": "x86_64" + }, + "dracut-network": { + "epoch": "0", + "version": "033", + "release": "572.0.1.el7", + "installdate": "1603474248", + "arch": "x86_64" + }, + "grub2-pc": { + "epoch": "1", + "version": "2.02", + "release": "0.87.0.1.el7", + "installdate": "1603474248", + "arch": "x86_64" + }, + "gssproxy": { + "epoch": "0", + "version": "0.7.0", + "release": "29.el7", + "installdate": "1603474249", + "arch": "x86_64" + }, + "plymouth-core-libs": { + "epoch": "0", + "version": "0.8.9", + "release": "0.34.20140113.0.1.el7", + "installdate": "1603474249", + "arch": "x86_64" + }, + "oracle-logos": { + "epoch": "0", + "version": "70.7.0", + "release": "1.0.7.el7", + "installdate": "1603474250", + "arch": "noarch" + }, + "plymouth": { + "epoch": "0", + "version": "0.8.9", + "release": "0.34.20140113.0.1.el7", + "installdate": "1603474250", + "arch": "x86_64" + }, + "firewalld": { + "epoch": "0", + "version": "0.6.3", + "release": "11.0.1.el7", + "installdate": "1603474250", + "arch": "noarch" + }, + "NetworkManager-team": { + "epoch": "1", + "version": "1.18.8", + "release": "1.el7", + "installdate": "1603474250", + "arch": "x86_64" + }, + "lshw": { + "epoch": "0", + "version": "B.02.18", + "release": "17.el7", + "installdate": "1603474251", + "arch": "x86_64" + }, + "kexec-tools": { + "epoch": "0", + "version": "2.0.15", + "release": "51.0.1.el7", + "installdate": "1603474251", + "arch": "x86_64" + }, + "tuned": { + "epoch": "0", + "version": "2.11.0", + "release": "9.0.3.el7", + "installdate": "1603474262", + "arch": "noarch" + }, + "systemd-sysv": { + "epoch": "0", + "version": "219", + "release": "78.0.1.el7", + "installdate": "1603474262", + "arch": "x86_64" + }, + "dracut-config-rescue": { + "epoch": "0", + "version": "033", + "release": "572.0.1.el7", + "installdate": "1603474262", + "arch": "x86_64" + }, + "kernel-tools": { + "epoch": "0", + "version": "3.10.0", + "release": "1160.2.1.el7", + "installdate": "1603474263", + "arch": "x86_64" + }, + "oraclelinux-release-el7": { + "epoch": "0", + "version": "1.0", + "release": "13.1.el7", + "installdate": "1603474263", + "arch": "x86_64" + }, + "libcroco": { + "epoch": "0", + "version": "0.6.12", + "release": "6.el7_9", + "installdate": "1603474265", + "arch": "x86_64" + }, + "mariadb-libs": { + "epoch": "1", + "version": "5.5.68", + "release": "1.el7", + "installdate": "1603474265", + "arch": "x86_64" + }, + "libgomp": { + "epoch": "0", + "version": "4.8.5", + "release": "44.0.3.el7", + "installdate": "1603474265", + "arch": "x86_64" + }, + "dmidecode": { + "epoch": "1", + "version": "3.2", + "release": "5.el7", + "installdate": "1603474266", + "arch": "x86_64" + }, + "selinux-policy-targeted": { + "epoch": "0", + "version": "3.13.1", + "release": "268.0.1.el7", + "installdate": "1603474267", + "arch": "noarch" + }, + "NetworkManager-config-server": { + "epoch": "1", + "version": "1.18.8", + "release": "1.el7", + "installdate": "1603474314", + "arch": "noarch" + }, + "ncurses-base": { + "epoch": "0", + "version": "5.9", + "release": "14.20130511.el7_4", + "installdate": "1603473728", + "arch": "noarch" + }, + "iputils": { + "epoch": "0", + "version": "20160308", + "release": "10.el7", + "installdate": "1603473775", + "arch": "x86_64" + }, + "setup": { + "epoch": "0", + "version": "2.8.71", + "release": "11.el7", + "installdate": "1603473728", + "arch": "noarch" + }, + "rpcbind": { + "epoch": "0", + "version": "0.2.0", + "release": "49.el7", + "installdate": "1603473775", + "arch": "x86_64" + }, + "bash": { + "epoch": "0", + "version": "4.2.46", + "release": "34.el7", + "installdate": "1603473729", + "arch": "x86_64" + }, + "os-prober": { + "epoch": "0", + "version": "1.58", + "release": "9.0.1.el7", + "installdate": "1603473776", + "arch": "x86_64" + }, + "openssh": { + "epoch": "0", + "version": "7.4p1", + "release": "21.0.1.el7", + "installdate": "1603473776", + "arch": "x86_64" + }, + "pcre": { + "epoch": "0", + "version": "8.32", + "release": "17.el7", + "installdate": "1603473733", + "arch": "x86_64" + }, + "xz-libs": { + "epoch": "0", + "version": "5.2.2", + "release": "1.el7", + "installdate": "1603473733", + "arch": "x86_64" + }, + "libpciaccess": { + "epoch": "0", + "version": "0.14", + "release": "1.el7", + "installdate": "1603473777", + "arch": "x86_64" + }, + "popt": { + "epoch": "0", + "version": "1.13", + "release": "16.el7", + "installdate": "1603473733", + "arch": "x86_64" + }, + "ebtables": { + "epoch": "0", + "version": "2.0.10", + "release": "16.el7", + "installdate": "1603473778", + "arch": "x86_64" + }, + "libdb": { + "epoch": "0", + "version": "5.3.21", + "release": "25.el7", + "installdate": "1603473733", + "arch": "x86_64" + }, + "python-slip-dbus": { + "epoch": "0", + "version": "0.4.0", + "release": "4.el7", + "installdate": "1603473794", + "arch": "noarch" + }, + "libcap-ng": { + "epoch": "0", + "version": "0.7.5", + "release": "4.el7", + "installdate": "1603473734", + "arch": "x86_64" + }, + "tcp_wrappers-libs": { + "epoch": "0", + "version": "7.6", + "release": "77.el7", + "installdate": "1603473734", + "arch": "x86_64" + }, + "keyutils-libs": { + "epoch": "0", + "version": "1.5.8", + "release": "3.el7", + "installdate": "1603473734", + "arch": "x86_64" + }, + "rhn-setup": { + "epoch": "0", + "version": "2.0.2", + "release": "24.0.7.el7", + "installdate": "1603473795", + "arch": "x86_64" + }, + "findutils": { + "epoch": "1", + "version": "4.5.11", + "release": "6.el7", + "installdate": "1603473735", + "arch": "x86_64" + }, + "libestr": { + "epoch": "0", + "version": "0.1.9", + "release": "2.el7", + "installdate": "1603473795", + "arch": "x86_64" + }, + "kbd": { + "epoch": "0", + "version": "1.15.5", + "release": "15.el7", + "installdate": "1603473795", + "arch": "x86_64" + }, + "perl-HTTP-Tiny": { + "epoch": "0", + "version": "0.033", + "release": "3.el7", + "installdate": "1603473736", + "arch": "noarch" + }, + "perl-Text-ParseWords": { + "epoch": "0", + "version": "3.29", + "release": "4.el7", + "installdate": "1603473736", + "arch": "noarch" + }, + "perl-Exporter": { + "epoch": "0", + "version": "5.68", + "release": "3.el7", + "installdate": "1603473737", + "arch": "noarch" + }, + "chrony": { + "epoch": "0", + "version": "3.4", + "release": "1.0.1.el7", + "installdate": "1603473810", + "arch": "x86_64" + }, + "perl-threads-shared": { + "epoch": "0", + "version": "1.43", + "release": "6.el7", + "installdate": "1603473737", + "arch": "x86_64" + }, + "biosdevname": { + "epoch": "0", + "version": "0.7.3", + "release": "2.el7", + "installdate": "1603473810", + "arch": "x86_64" + }, + "perl-File-Path": { + "epoch": "0", + "version": "2.09", + "release": "2.el7", + "installdate": "1603473737", + "arch": "noarch" + }, + "man-db": { + "epoch": "0", + "version": "2.6.3", + "release": "11.el7", + "installdate": "1603473810", + "arch": "x86_64" + }, + "perl-Getopt-Long": { + "epoch": "0", + "version": "2.40", + "release": "3.el7", + "installdate": "1603473737", + "arch": "noarch" + }, + "libnl3-cli": { + "epoch": "0", + "version": "3.2.28", + "release": "4.el7", + "installdate": "1603473739", + "arch": "x86_64" + }, + "rootfiles": { + "epoch": "0", + "version": "8.1", + "release": "11.el7", + "installdate": "1603473812", + "arch": "noarch" + }, + "libedit": { + "epoch": "0", + "version": "3.0", + "release": "12.20121213cvs.el7", + "installdate": "1603473740", + "arch": "x86_64" + }, + "redhat-release-server": { + "epoch": "1", + "version": "7.9", + "release": "3.0.1.el7", + "installdate": "1603474175", + "arch": "x86_64" + }, + "libref_array": { + "epoch": "0", + "version": "0.1.5", + "release": "32.el7", + "installdate": "1603473740", + "arch": "x86_64" + }, + "grub2-pc-modules": { + "epoch": "1", + "version": "2.02", + "release": "0.87.0.1.el7", + "installdate": "1603474220", + "arch": "noarch" + }, + "libnfnetlink": { + "epoch": "0", + "version": "1.0.1", + "release": "4.el7", + "installdate": "1603473740", + "arch": "x86_64" + }, + "nss-softokn-freebl": { + "epoch": "0", + "version": "3.53.1", + "release": "6.0.1.el7_9", + "installdate": "1603474227", + "arch": "x86_64" + }, + "elfutils-libelf": { + "epoch": "0", + "version": "0.176", + "release": "5.el7", + "installdate": "1603474229", + "arch": "x86_64" + }, + "less": { + "epoch": "0", + "version": "458", + "release": "9.el7", + "installdate": "1603473741", + "arch": "x86_64" + }, + "libmount": { + "epoch": "0", + "version": "2.23.2", + "release": "65.0.1.el7", + "installdate": "1603474229", + "arch": "x86_64" + }, + "acl": { + "epoch": "0", + "version": "2.2.51", + "release": "15.el7", + "installdate": "1603473741", + "arch": "x86_64" + }, + "perl-libs": { + "epoch": "4", + "version": "5.16.3", + "release": "297.el7", + "installdate": "1603474230", + "arch": "x86_64" + }, + "pinentry": { + "epoch": "0", + "version": "0.8.1", + "release": "17.el7", + "installdate": "1603473741", + "arch": "x86_64" + }, + "grubby": { + "epoch": "0", + "version": "8.28", + "release": "26.0.3.el7", + "installdate": "1603474233", + "arch": "x86_64" + }, + "freetype": { + "epoch": "0", + "version": "2.8", + "release": "14.el7", + "installdate": "1603473741", + "arch": "x86_64" + }, + "nss": { + "epoch": "0", + "version": "3.53.1", + "release": "3.el7_9", + "installdate": "1603474233", + "arch": "x86_64" + }, + "snappy": { + "epoch": "0", + "version": "1.1.0", + "release": "3.el7", + "installdate": "1603473742", + "arch": "x86_64" + }, + "python-libs": { + "epoch": "0", + "version": "2.7.5", + "release": "89.0.1.el7", + "installdate": "1603474237", + "arch": "x86_64" + }, + "libnl": { + "epoch": "0", + "version": "1.1.4", + "release": "3.el7", + "installdate": "1603473742", + "arch": "x86_64" + }, + "python-perf": { + "epoch": "0", + "version": "3.10.0", + "release": "1160.2.1.el7", + "installdate": "1603474237", + "arch": "x86_64" + }, + "libndp": { + "epoch": "0", + "version": "1.2", + "release": "9.el7", + "installdate": "1603473742", + "arch": "x86_64" + }, + "bind-export-libs": { + "epoch": "32", + "version": "9.11.4", + "release": "26.P2.el7", + "installdate": "1603474239", + "arch": "x86_64" + }, + "lsscsi": { + "epoch": "0", + "version": "0.27", + "release": "6.el7", + "installdate": "1603473742", + "arch": "x86_64" + }, + "curl": { + "epoch": "0", + "version": "7.29.0", + "release": "59.0.1.el7", + "installdate": "1603474239", + "arch": "x86_64" + }, + "p11-kit-trust": { + "epoch": "0", + "version": "0.23.5", + "release": "3.el7", + "installdate": "1603473743", + "arch": "x86_64" + }, + "rpm-build-libs": { + "epoch": "0", + "version": "4.11.3", + "release": "45.el7", + "installdate": "1603474240", + "arch": "x86_64" + }, + "libzstd": { + "epoch": "0", + "version": "1.4.4", + "release": "1.el7", + "installdate": "1603474241", + "arch": "x86_64" + }, + "gzip": { + "epoch": "0", + "version": "1.5", + "release": "10.el7", + "installdate": "1603473746", + "arch": "x86_64" + }, + "libteam": { + "epoch": "0", + "version": "1.29", + "release": "3.el7", + "installdate": "1603474241", + "arch": "x86_64" + }, + "cracklib": { + "epoch": "0", + "version": "2.9.0", + "release": "11.el7", + "installdate": "1603473747", + "arch": "x86_64" + }, + "device-mapper": { + "epoch": "7", + "version": "1.02.170", + "release": "6.0.3.el7", + "installdate": "1603474242", + "arch": "x86_64" + }, + "libpwquality": { + "epoch": "0", + "version": "1.2.3", + "release": "5.el7", + "installdate": "1603473747", + "arch": "x86_64" + }, + "procps-ng": { + "epoch": "0", + "version": "3.3.10", + "release": "28.el7", + "installdate": "1603474242", + "arch": "x86_64" + }, + "systemd-libs": { + "epoch": "0", + "version": "219", + "release": "78.0.1.el7", + "installdate": "1603474243", + "arch": "x86_64" + }, + "libtirpc": { + "epoch": "0", + "version": "0.2.4", + "release": "0.16.el7", + "installdate": "1603473748", + "arch": "x86_64" + }, + "elfutils-default-yama-scope": { + "epoch": "0", + "version": "0.176", + "release": "5.el7", + "installdate": "1603474246", + "arch": "noarch" + }, + "libverto-libevent": { + "epoch": "0", + "version": "0.2.5", + "release": "4.el7", + "installdate": "1603473764", + "arch": "x86_64" + }, + "NetworkManager-libnm": { + "epoch": "1", + "version": "1.18.8", + "release": "1.el7", + "installdate": "1603474247", + "arch": "x86_64" + }, + "gettext": { + "epoch": "0", + "version": "0.19.8.1", + "release": "3.el7", + "installdate": "1603473765", + "arch": "x86_64" + }, + "dhclient": { + "epoch": "12", + "version": "4.2.5", + "release": "82.0.1.el7", + "installdate": "1603474248", + "arch": "x86_64" + }, + "yum-metadata-parser": { + "epoch": "0", + "version": "1.1.4", + "release": "10.el7", + "installdate": "1603473765", + "arch": "x86_64" + }, + "hwdata": { + "epoch": "0", + "version": "0.252", + "release": "9.7.el7", + "installdate": "1603474248", + "arch": "x86_64" + }, + "vim-minimal": { + "epoch": "2", + "version": "7.4.629", + "release": "7.0.1.el7", + "installdate": "1603474249", + "arch": "x86_64" + }, + "pyxattr": { + "epoch": "0", + "version": "0.5.1", + "release": "5.el7", + "installdate": "1603473765", + "arch": "x86_64" + }, + "firewalld-filesystem": { + "epoch": "0", + "version": "0.6.3", + "release": "11.0.1.el7", + "installdate": "1603474250", + "arch": "noarch" + }, + "python-ethtool": { + "epoch": "0", + "version": "0.8", + "release": "8.el7", + "installdate": "1603473766", + "arch": "x86_64" + }, + "nfs-utils": { + "epoch": "1", + "version": "1.3.0", + "release": "0.68.0.1.el7", + "installdate": "1603474250", + "arch": "x86_64" + }, + "NetworkManager-tui": { + "epoch": "1", + "version": "1.18.8", + "release": "1.el7", + "installdate": "1603474251", + "arch": "x86_64" + }, + "fipscheck": { + "epoch": "0", + "version": "1.4.1", + "release": "6.el7", + "installdate": "1603473766", + "arch": "x86_64" + }, + "rsyslog": { + "epoch": "0", + "version": "8.24.0", + "release": "57.el7_9", + "installdate": "1603474262", + "arch": "x86_64" + }, + "nss-pem": { + "epoch": "0", + "version": "1.0.3", + "release": "7.el7", + "installdate": "1603473767", + "arch": "x86_64" + }, + "perl-Pod-Escapes": { + "epoch": "1", + "version": "1.04", + "release": "297.el7", + "installdate": "1603474265", + "arch": "noarch" + }, + "pygpgme": { + "epoch": "0", + "version": "0.3", + "release": "9.el7", + "installdate": "1603473769", + "arch": "x86_64" + }, + "libpng": { + "epoch": "2", + "version": "1.5.13", + "release": "8.el7", + "installdate": "1603474266", + "arch": "x86_64" + }, + "libnfsidmap": { + "epoch": "0", + "version": "0.25", + "release": "19.el7", + "installdate": "1603473769", + "arch": "x86_64" + }, + "ca-certificates": { + "epoch": "0", + "version": "2020.2.41", + "release": "70.0.el7_8", + "installdate": "1603474314", + "arch": "noarch" + }, + "fuse-libs": { + "epoch": "0", + "version": "2.9.4", + "release": "1.0.8.el7", + "installdate": "1603474424", + "arch": "x86_64" + }, + "sg3_utils-libs": { + "epoch": "1", + "version": "1.37", + "release": "19.0.1.el7", + "installdate": "1603473770", + "arch": "x86_64" + }, + "xfsprogs": { + "epoch": "0", + "version": "5.4.0", + "release": "1.0.1.el7", + "installdate": "1603474431", + "arch": "x86_64" + }, + "libutempter": { + "epoch": "0", + "version": "1.1.6", + "release": "4.el7", + "installdate": "1603473771", + "arch": "x86_64" + } + }, + "platform": "oracle", + "platform_family": "rhel", + "platform_version": "7.9", + "root_group": "root", + "shard_seed": 7178175, + "shells": [ + "/bin/sh", + "/bin/bash", + "/usr/bin/sh", + "/usr/bin/bash" + ], + "time": { + "timezone": "GMT" + }, + "uptime": "30 days 15 hours 07 minutes 30 seconds", + "uptime_seconds": 2646450, + "virtualization": { + "systems": { + } + } +} \ No newline at end of file diff --git a/lib/fauxhai/platforms/oracle/8.json b/lib/fauxhai/platforms/oracle/8.json new file mode 100644 index 00000000..6f81880d --- /dev/null +++ b/lib/fauxhai/platforms/oracle/8.json @@ -0,0 +1,4883 @@ +{ + "block_device": { + "sda": { + "size": "134217728", + "removable": "0", + "model": "VBOX HARDDISK", + "rev": "1.0", + "state": "running", + "timeout": "30", + "vendor": "ATA", + "queue_depth": "32", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + } + }, + "chef_packages": { + "chef": { + "version": "17.6.18", + "chef_root": "/opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/chef-17.6.18/lib", + "chef_effortless": null + }, + "ohai": { + "version": "17.6.0", + "ohai_root": "/opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/ohai-17.6.0/lib/ohai" + } + }, + "command": { + "ps": "ps -ef" + }, + "counters": { + "network": { + "interfaces": { + "lo": { + "tx": { + "queuelen": "1", + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "carrier": 0, + "collisions": 0 + }, + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0 + } + }, + "eth0": { + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "frame": 0, + "compressed": 0, + "multicast": 0 + }, + "tx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "collisions": 0, + "carrier": 0, + "compressed": 0 + } + } + } + } + }, + "cpu": { + "real": 1, + "total": 1, + "cores": 1 + }, + "current_user": "fauxhai", + "dmi": { + "dmidecode_version": "3.3", + "smbios_version": "2.5", + "structures": { + "count": "10", + "size": "455" + }, + "table_location": "0x000E1000", + "bios": { + "all_records": [ + { + "record_id": "0x0000", + "size": "0", + "application_identifier": "BIOS Information", + "Vendor": "innotek GmbH", + "Version": "VirtualBox", + "Release Date": "12/01/2006", + "Address": "0xE0000", + "Runtime Size": "128 kB", + "ROM Size": "128 kB", + "Characteristics": { + "ACPI is supported": null + } + } + ], + "vendor": "innotek GmbH", + "version": "VirtualBox", + "release_date": "12/01/2006", + "address": "0xE0000", + "runtime_size": "128 kB", + "rom_size": "128 kB" + }, + "system": { + "all_records": [ + { + "record_id": "0x0001", + "size": "1", + "application_identifier": "System Information", + "Manufacturer": "innotek GmbH", + "Product Name": "VirtualBox", + "Version": "1.2", + "Serial Number": "0", + "UUID": "b7c2db17-8e61-9449-9ec2-fd9915bed736", + "Wake-up Type": "Power Switch", + "SKU Number": "Not Specified", + "Family": "Virtual Machine" + } + ], + "manufacturer": "innotek GmbH", + "product_name": "VirtualBox", + "version": "1.2", + "serial_number": "0", + "uuid": "b7c2db17-8e61-9449-9ec2-fd9915bed736", + "wake_up_type": "Power Switch", + "sku_number": "Not Specified", + "family": "Virtual Machine" + }, + "base_board": { + "all_records": [ + { + "record_id": "0x0008", + "size": "2", + "application_identifier": "Base Board Information", + "Manufacturer": "Oracle Corporation", + "Product Name": "VirtualBox", + "Version": "1.2", + "Serial Number": "0", + "Asset Tag": "Not Specified", + "Features": { + "Board is a hosting board": null + }, + "Location In Chassis": "Not Specified", + "Chassis Handle": "0x0003", + "Type": "Motherboard", + "Contained Object Handles": "0" + } + ], + "manufacturer": "Oracle Corporation", + "product_name": "VirtualBox", + "version": "1.2", + "serial_number": "0", + "asset_tag": "Not Specified", + "location_in_chassis": "Not Specified", + "chassis_handle": "0x0003", + "type": "Motherboard", + "contained_object_handles": "0" + }, + "chassis": { + "all_records": [ + { + "record_id": "0x0003", + "size": "3", + "application_identifier": "Chassis Information", + "Manufacturer": "Oracle Corporation", + "Type": "Other", + "Lock": "Not Present", + "Version": "Not Specified", + "Serial Number": "Not Specified", + "Asset Tag": "Not Specified", + "Boot-up State": "Safe", + "Power Supply State": "Safe", + "Thermal State": "Safe", + "Security Status": "None" + } + ], + "manufacturer": "Oracle Corporation", + "type": "Other", + "lock": "Not Present", + "version": "Not Specified", + "serial_number": "Not Specified", + "asset_tag": "Not Specified", + "boot_up_state": "Safe", + "power_supply_state": "Safe", + "thermal_state": "Safe", + "security_status": "None" + }, + "oem_strings": { + "all_records": [ + { + "record_id": "0x0002", + "size": "11", + "application_identifier": "OEM Strings", + "String 1": "vboxVer_7.0.4", + "String 2": "vboxRev_154605" + } + ], + "string_1": "vboxVer_7.0.4", + "string_2": "vboxRev_154605" + } + }, + "domain": "local", + "filesystem": { + "by_device": { + "devtmpfs": { + "kb_size": "848508", + "kb_used": "0", + "kb_available": "848508", + "percent_used": "0%", + "total_inodes": "212127", + "inodes_used": "345", + "inodes_available": "211782", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=848508k", + "nr_inodes=212127", + "mode=755" + ], + "mounts": [ + "/dev" + ] + }, + "tmpfs": { + "kb_size": "173260", + "kb_used": "0", + "kb_available": "173260", + "percent_used": "0%", + "total_inodes": "216577", + "inodes_used": "5", + "inodes_available": "216572", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=173260k", + "mode=700", + "uid=1000", + "gid=1000" + ], + "mounts": [ + "/dev/shm", + "/run", + "/sys/fs/cgroup", + "/run/user/1000" + ] + }, + "/dev/sda2": { + "kb_size": "64837704", + "kb_used": "2855080", + "kb_available": "61982624", + "percent_used": "5%", + "total_inodes": "32434688", + "inodes_used": "77954", + "inodes_available": "32356734", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "8fe9d836-e86b-4719-8c02-b47d9ddab810", + "mounts": [ + "/" + ] + }, + "vagrant": { + "kb_size": "497899516", + "kb_used": "208848496", + "kb_available": "289051020", + "percent_used": "42%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "mounts": [ + "/vagrant" + ] + }, + "sysfs": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys" + ] + }, + "proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/proc" + ] + }, + "securityfs": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/security" + ] + }, + "devpts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "mounts": [ + "/dev/pts" + ] + }, + "cgroup": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "cpu", + "cpuacct" + ], + "mounts": [ + "/sys/fs/cgroup/systemd", + "/sys/fs/cgroup/net_cls,net_prio", + "/sys/fs/cgroup/perf_event", + "/sys/fs/cgroup/devices", + "/sys/fs/cgroup/cpuset", + "/sys/fs/cgroup/pids", + "/sys/fs/cgroup/blkio", + "/sys/fs/cgroup/freezer", + "/sys/fs/cgroup/hugetlb", + "/sys/fs/cgroup/rdma", + "/sys/fs/cgroup/memory", + "/sys/fs/cgroup/cpu,cpuacct" + ] + }, + "pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/fs/pstore" + ] + }, + "none": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/fs/bpf", + "/sys/kernel/tracing" + ] + }, + "configfs": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "relatime" + ], + "mounts": [ + "/sys/kernel/config" + ] + }, + "selinuxfs": { + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "relatime" + ], + "mounts": [ + "/sys/fs/selinux" + ] + }, + "hugetlbfs": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ], + "mounts": [ + "/dev/hugepages" + ] + }, + "systemd-1": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=36", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=18407" + ], + "mounts": [ + "/proc/sys/fs/binfmt_misc" + ] + }, + "mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ], + "mounts": [ + "/dev/mqueue" + ] + }, + "debugfs": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/kernel/debug" + ] + }, + "sunrpc": { + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ], + "mounts": [ + "/var/lib/nfs/rpc_pipefs" + ] + }, + "/dev/sda": { + "mounts": [ + + ] + }, + "/dev/sda1": { + "fs_type": "swap", + "uuid": "b01b6015-8dae-4eca-a005-d76f4d20c752", + "mounts": [ + + ] + } + }, + "by_mountpoint": { + "/dev": { + "kb_size": "848508", + "kb_used": "0", + "kb_available": "848508", + "percent_used": "0%", + "total_inodes": "212127", + "inodes_used": "345", + "inodes_available": "211782", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=848508k", + "nr_inodes=212127", + "mode=755" + ], + "devices": [ + "devtmpfs" + ] + }, + "/dev/shm": { + "kb_size": "866308", + "kb_used": "0", + "kb_available": "866308", + "percent_used": "0%", + "total_inodes": "216577", + "inodes_used": "1", + "inodes_available": "216576", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel" + ], + "devices": [ + "tmpfs" + ] + }, + "/run": { + "kb_size": "866308", + "kb_used": "16780", + "kb_available": "849528", + "percent_used": "2%", + "total_inodes": "216577", + "inodes_used": "457", + "inodes_available": "216120", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "mode=755" + ], + "devices": [ + "tmpfs" + ] + }, + "/sys/fs/cgroup": { + "kb_size": "866308", + "kb_used": "0", + "kb_available": "866308", + "percent_used": "0%", + "total_inodes": "216577", + "inodes_used": "17", + "inodes_available": "216560", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "seclabel", + "mode=755" + ], + "devices": [ + "tmpfs" + ] + }, + "/": { + "kb_size": "64837704", + "kb_used": "2855080", + "kb_available": "61982624", + "percent_used": "5%", + "total_inodes": "32434688", + "inodes_used": "77954", + "inodes_available": "32356734", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "8fe9d836-e86b-4719-8c02-b47d9ddab810", + "devices": [ + "/dev/sda2" + ] + }, + "/run/user/1000": { + "kb_size": "173260", + "kb_used": "0", + "kb_available": "173260", + "percent_used": "0%", + "total_inodes": "216577", + "inodes_used": "5", + "inodes_available": "216572", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=173260k", + "mode=700", + "uid=1000", + "gid=1000" + ], + "devices": [ + "tmpfs" + ] + }, + "/vagrant": { + "kb_size": "497899516", + "kb_used": "208848496", + "kb_available": "289051020", + "percent_used": "42%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "devices": [ + "vagrant" + ] + }, + "/sys": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "sysfs" + ] + }, + "/proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "proc" + ] + }, + "/sys/kernel/security": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "securityfs" + ] + }, + "/dev/pts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "devices": [ + "devpts" + ] + }, + "/sys/fs/cgroup/systemd": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "xattr", + "release_agent=/usr/lib/systemd/systemd-cgroups-agent", + "name=systemd" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "pstore" + ] + }, + "/sys/fs/bpf": { + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "devices": [ + "none" + ] + }, + "/sys/fs/cgroup/net_cls,net_prio": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "net_cls", + "net_prio" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/perf_event": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "perf_event" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/devices": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "devices" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/cpuset": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "cpuset" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/pids": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "pids" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/blkio": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "blkio" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/freezer": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "freezer" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/hugetlb": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "hugetlb" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/rdma": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "rdma" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/memory": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "memory" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/cpu,cpuacct": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "cpu", + "cpuacct" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/kernel/tracing": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ], + "devices": [ + "none" + ] + }, + "/sys/kernel/config": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "relatime" + ], + "devices": [ + "configfs" + ] + }, + "/sys/fs/selinux": { + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "relatime" + ], + "devices": [ + "selinuxfs" + ] + }, + "/dev/hugepages": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ], + "devices": [ + "hugetlbfs" + ] + }, + "/proc/sys/fs/binfmt_misc": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=36", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=18407" + ], + "devices": [ + "systemd-1" + ] + }, + "/dev/mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ], + "devices": [ + "mqueue" + ] + }, + "/sys/kernel/debug": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ], + "devices": [ + "debugfs" + ] + }, + "/var/lib/nfs/rpc_pipefs": { + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ], + "devices": [ + "sunrpc" + ] + } + }, + "by_pair": { + "devtmpfs,/dev": { + "device": "devtmpfs", + "kb_size": "848508", + "kb_used": "0", + "kb_available": "848508", + "percent_used": "0%", + "mount": "/dev", + "total_inodes": "212127", + "inodes_used": "345", + "inodes_available": "211782", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=848508k", + "nr_inodes=212127", + "mode=755" + ] + }, + "tmpfs,/dev/shm": { + "device": "tmpfs", + "kb_size": "866308", + "kb_used": "0", + "kb_available": "866308", + "percent_used": "0%", + "mount": "/dev/shm", + "total_inodes": "216577", + "inodes_used": "1", + "inodes_available": "216576", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel" + ] + }, + "tmpfs,/run": { + "device": "tmpfs", + "kb_size": "866308", + "kb_used": "16780", + "kb_available": "849528", + "percent_used": "2%", + "mount": "/run", + "total_inodes": "216577", + "inodes_used": "457", + "inodes_available": "216120", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "mode=755" + ] + }, + "tmpfs,/sys/fs/cgroup": { + "device": "tmpfs", + "kb_size": "866308", + "kb_used": "0", + "kb_available": "866308", + "percent_used": "0%", + "mount": "/sys/fs/cgroup", + "total_inodes": "216577", + "inodes_used": "17", + "inodes_available": "216560", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "seclabel", + "mode=755" + ] + }, + "/dev/sda2,/": { + "device": "/dev/sda2", + "kb_size": "64837704", + "kb_used": "2855080", + "kb_available": "61982624", + "percent_used": "5%", + "mount": "/", + "total_inodes": "32434688", + "inodes_used": "77954", + "inodes_available": "32356734", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "8fe9d836-e86b-4719-8c02-b47d9ddab810" + }, + "tmpfs,/run/user/1000": { + "device": "tmpfs", + "kb_size": "173260", + "kb_used": "0", + "kb_available": "173260", + "percent_used": "0%", + "mount": "/run/user/1000", + "total_inodes": "216577", + "inodes_used": "5", + "inodes_available": "216572", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=173260k", + "mode=700", + "uid=1000", + "gid=1000" + ] + }, + "vagrant,/vagrant": { + "device": "vagrant", + "kb_size": "497899516", + "kb_used": "208848496", + "kb_available": "289051020", + "percent_used": "42%", + "mount": "/vagrant", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ] + }, + "sysfs,/sys": { + "device": "sysfs", + "mount": "/sys", + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "proc,/proc": { + "device": "proc", + "mount": "/proc", + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "securityfs,/sys/kernel/security": { + "device": "securityfs", + "mount": "/sys/kernel/security", + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "devpts,/dev/pts": { + "device": "devpts", + "mount": "/dev/pts", + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ] + }, + "cgroup,/sys/fs/cgroup/systemd": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/systemd", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "xattr", + "release_agent=/usr/lib/systemd/systemd-cgroups-agent", + "name=systemd" + ] + }, + "pstore,/sys/fs/pstore": { + "device": "pstore", + "mount": "/sys/fs/pstore", + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "none,/sys/fs/bpf": { + "device": "none", + "mount": "/sys/fs/bpf", + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ] + }, + "cgroup,/sys/fs/cgroup/net_cls,net_prio": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/net_cls,net_prio", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "net_cls", + "net_prio" + ] + }, + "cgroup,/sys/fs/cgroup/perf_event": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/perf_event", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "perf_event" + ] + }, + "cgroup,/sys/fs/cgroup/devices": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/devices", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "devices" + ] + }, + "cgroup,/sys/fs/cgroup/cpuset": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/cpuset", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "cpuset" + ] + }, + "cgroup,/sys/fs/cgroup/pids": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/pids", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "pids" + ] + }, + "cgroup,/sys/fs/cgroup/blkio": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/blkio", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "blkio" + ] + }, + "cgroup,/sys/fs/cgroup/freezer": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/freezer", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "freezer" + ] + }, + "cgroup,/sys/fs/cgroup/hugetlb": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/hugetlb", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "hugetlb" + ] + }, + "cgroup,/sys/fs/cgroup/rdma": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/rdma", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "rdma" + ] + }, + "cgroup,/sys/fs/cgroup/memory": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/memory", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "memory" + ] + }, + "cgroup,/sys/fs/cgroup/cpu,cpuacct": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/cpu,cpuacct", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "cpu", + "cpuacct" + ] + }, + "none,/sys/kernel/tracing": { + "device": "none", + "mount": "/sys/kernel/tracing", + "fs_type": "tracefs", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ] + }, + "configfs,/sys/kernel/config": { + "device": "configfs", + "mount": "/sys/kernel/config", + "fs_type": "configfs", + "mount_options": [ + "rw", + "relatime" + ] + }, + "selinuxfs,/sys/fs/selinux": { + "device": "selinuxfs", + "mount": "/sys/fs/selinux", + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "relatime" + ] + }, + "hugetlbfs,/dev/hugepages": { + "device": "hugetlbfs", + "mount": "/dev/hugepages", + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ] + }, + "systemd-1,/proc/sys/fs/binfmt_misc": { + "device": "systemd-1", + "mount": "/proc/sys/fs/binfmt_misc", + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=36", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=18407" + ] + }, + "mqueue,/dev/mqueue": { + "device": "mqueue", + "mount": "/dev/mqueue", + "fs_type": "mqueue", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ] + }, + "debugfs,/sys/kernel/debug": { + "device": "debugfs", + "mount": "/sys/kernel/debug", + "fs_type": "debugfs", + "mount_options": [ + "rw", + "relatime", + "seclabel" + ] + }, + "sunrpc,/var/lib/nfs/rpc_pipefs": { + "device": "sunrpc", + "mount": "/var/lib/nfs/rpc_pipefs", + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ] + }, + "/dev/sda,": { + "device": "/dev/sda" + }, + "/dev/sda1,": { + "device": "/dev/sda1", + "fs_type": "swap", + "uuid": "b01b6015-8dae-4eca-a005-d76f4d20c752" + } + } + }, + "fips": { + "kernel": { + "enabled": true + } + }, + "fqdn": "fauxhai.local", + "hostname": "Fauxhai", + "idle": "30 days 15 hours 07 minutes 30 seconds", + "idletime_seconds": 2646450, + "init_package": "systemd", + "ipaddress": "10.0.0.2", + "kernel": { + "name": "Linux", + "release": "5.4.17-2136.309.5.el8uek.x86_64", + "version": "#2 SMP Sat Jul 16 13:06:22 PDT 2022", + "machine": "x86_64", + "processor": "x86_64", + "os": "GNU/Linux", + "modules": { + "vboxsf": { + "size": "81920", + "refcount": "1", + "version": "6.1.34 r150636" + }, + "rfkill": { + "size": "28672", + "refcount": "1" + }, + "crct10dif_pclmul": { + "size": "16384", + "refcount": "1" + }, + "crc32_pclmul": { + "size": "16384", + "refcount": "0" + }, + "ghash_clmulni_intel": { + "size": "16384", + "refcount": "0" + }, + "sunrpc": { + "size": "397312", + "refcount": "1" + }, + "aesni_intel": { + "size": "372736", + "refcount": "0" + }, + "crypto_simd": { + "size": "16384", + "refcount": "1" + }, + "cryptd": { + "size": "24576", + "refcount": "2" + }, + "glue_helper": { + "size": "16384", + "refcount": "1" + }, + "pcspkr": { + "size": "16384", + "refcount": "0" + }, + "i2c_piix4": { + "size": "28672", + "refcount": "0" + }, + "joydev": { + "size": "24576", + "refcount": "0" + }, + "sch_fq_codel": { + "size": "20480", + "refcount": "2" + }, + "xfs": { + "size": "1454080", + "refcount": "1" + }, + "libcrc32c": { + "size": "16384", + "refcount": "1" + }, + "sd_mod": { + "size": "53248", + "refcount": "3" + }, + "vboxvideo": { + "size": "36864", + "refcount": "1", + "version": "6.1.34 r150636" + }, + "drm_kms_helper": { + "size": "184320", + "refcount": "1" + }, + "sg": { + "size": "36864", + "refcount": "0", + "version": "3.5.36" + }, + "ata_generic": { + "size": "16384", + "refcount": "0", + "version": "0.2.15" + }, + "ttm": { + "size": "106496", + "refcount": "1" + }, + "pata_acpi": { + "size": "16384", + "refcount": "0", + "version": "0.2.3" + }, + "ahci": { + "size": "40960", + "refcount": "2", + "version": "3.0" + }, + "drm": { + "size": "516096", + "refcount": "4" + }, + "libahci": { + "size": "32768", + "refcount": "1" + }, + "ata_piix": { + "size": "36864", + "refcount": "0", + "version": "2.13" + }, + "syscopyarea": { + "size": "16384", + "refcount": "1" + }, + "e1000": { + "size": "147456", + "refcount": "0", + "version": "7.3.21-k8-NAPI" + }, + "sysfillrect": { + "size": "16384", + "refcount": "1" + }, + "libata": { + "size": "241664", + "refcount": "5", + "version": "3.00" + }, + "sysimgblt": { + "size": "16384", + "refcount": "1" + }, + "fb_sys_fops": { + "size": "16384", + "refcount": "1" + }, + "serio_raw": { + "size": "20480", + "refcount": "0" + }, + "vboxguest": { + "size": "339968", + "refcount": "2", + "version": "6.1.34 r150636" + }, + "video": { + "size": "53248", + "refcount": "0" + } + } + }, + "keys": { + "ssh": { + "host_dsa_public": "ssh-dss AAAAB3NzaC1kc3MAAACBAJFo9BLAw4WKEs5hgipk5m423FzBsDXCZSMcC9ca/om/1VYzMqImixGe3uICDzNFUWxFoLJTQAOccyzo6MXZiQqwWJDLFi5qOSr6w2XcMyE+zd4wOyMoDiVM5fizmG8K3FzrqvGjwBcHcBdOQnavSijoj38DN25J9zhrid5BY4WlAAAAFQDxXrCyG52XCzn3FV4ej38wJBkomQAAAIBovGPJ4mP2P6BK8lHl0PPbktwQbWlpJ13oz6REJFDVcUi7vV26bX/BjQX+ohzZQzljdz1SpUbPc/8nuA4darYkVh91eBi307EN8IdxRHj2eBgp/ZG4yshIebG3WHrwJD/xUjjZ1MRfyDT1ermVi4LvjjPgWDxLZnPpMaR6S1nzgQAAAIEAj0Vd6DCWslvlsZ8+N53HWsqPi3gnx35JoLPz9Z2epkKIKqmEHav+93G3hdfztVa4I4t3phoPniQchYryF5+RNg8hqxKzjNtrIqUYCeuf2NJrksNsH7OZygPHZpqt4kTuwAGZxjxEGfAI0y8DhkU2ntp2LnzRnWH106BQBCmcXwo= fauxhai.local", + "host_rsa_public": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCtLCeqtqr/HbnORckw1ukdLhpfGoOPFi5/esKEokzTqq1gsgQ2V8emmyjfq1i6XXfRtSBxkdlHv/GWdP5wBTuE2G85MzBkVSQPvmwQN8lX/JMPEEtKXkeOo0o92/PiSmvY4eRsdF0mw40Uvg7jtE3f3fxj497kzh5fKtkrHnF4x9gXCbVdr3FqXJfggR5IJwAxToerbK7x/uRS+7YuZI9Pip3tt14nv9ezwXcuGb/tvjWOZINiFl8izVIFKi7sxfTX09p4NgamxRS7TD2Yd0jT8nEoF9UZTsgXcJ1kDSx7N7NxFfNfP6rCdOGRRz4gUhXtsUjG/XkxPeCwZ7A9VnOD fauxhai.local" + } + }, + "languages": { + "ruby": { + "platform": "x86_64-linux", + "version": "3.0.2", + "release_date": "2021-07-07", + "target": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_vendor": "pc", + "target_os": "linux", + "host": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux", + "host_vendor": "pc", + "bin_dir": "/usr/local/bin", + "ruby_bin": "/usr/local/bin/ruby", + "gem_bin": "/usr/local/bin/gem", + "gems_dir": "/usr/local/gems" + }, + "powershell": null + }, + "lsb": { + "id": "OracleServer", + "description": "Oracle Linux Server release 8.6", + "release": "8.6", + "codename": "n/a" + }, + "macaddress": "11:11:11:11:11:11", + "machinename": "Fauxhai", + "memory": { + "total": "1048576kB" + }, + "network": { + "interfaces": { + "lo": { + "mtu": "65536", + "flags": [ + "LOOPBACK", + "UP", + "LOWER_UP" + ], + "encapsulation": "Loopback", + "addresses": { + "127.0.0.1": { + "family": "inet", + "prefixlen": "8", + "netmask": "255.0.0.0", + "scope": "Node", + "ip_scope": "LOOPBACK" + }, + "::1": { + "family": "inet6", + "prefixlen": "128", + "scope": "Node", + "tags": [ + + ], + "ip_scope": "LINK LOCAL LOOPBACK" + } + }, + "state": "unknown" + }, + "eth0": { + "type": "eth", + "number": "0", + "mtu": "1500", + "flags": [ + "BROADCAST", + "MULTICAST", + "UP", + "LOWER_UP" + ], + "encapsulation": "Ethernet", + "addresses": { + "11:11:11:11:11:11": { + "family": "lladdr" + }, + "10.0.0.2": { + "family": "inet", + "prefixlen": "24", + "netmask": "255.255.255.0", + "broadcast": "10.0.0.255", + "scope": "Global", + "ip_scope": "RFC1918 PRIVATE" + }, + "fe80::11:1111:1111:1111": { + "family": "inet6", + "prefixlen": "64", + "scope": "Link", + "tags": [ + + ], + "ip_scope": "LINK LOCAL UNICAST" + } + }, + "state": "up", + "arp": { + "10.0.0.1": "fe:ff:ff:ff:ff:ff" + }, + "routes": [ + { + "destination": "default", + "family": "inet", + "via": "10.0.0.1" + }, + { + "destination": "10.0.0.0/24", + "family": "inet", + "scope": "link", + "proto": "kernel", + "src": "10.0.0.2" + }, + { + "destination": "fe80::/64", + "family": "inet6", + "metric": "256", + "proto": "kernel" + } + ], + "ring_params": { + } + } + }, + "default_interface": "eth0", + "default_gateway": "10.0.0.1" + }, + "ohai_time": 1675113504.9881136, + "os": "linux", + "os_version": "5.4.17-2136.309.5.el8uek.x86_64", + "packages": { + "trousers": { + "epoch": "0", + "version": "0.3.15", + "release": "1.el8", + "installdate": "1658414797", + "arch": "x86_64" + }, + "tzdata": { + "epoch": "0", + "version": "2022a", + "release": "1.el8", + "installdate": "1658414779", + "arch": "noarch" + }, + "libevent": { + "epoch": "0", + "version": "2.1.8", + "release": "5.el8", + "installdate": "1658414797", + "arch": "x86_64" + }, + "hwdata": { + "epoch": "0", + "version": "0.314", + "release": "8.12.el8", + "installdate": "1658414779", + "arch": "noarch" + }, + "cronie-anacron": { + "epoch": "0", + "version": "1.5.2", + "release": "6.el8", + "installdate": "1658414797", + "arch": "x86_64" + }, + "oraclelinux-release": { + "epoch": "8", + "version": "8.6", + "release": "1.0.5.el8", + "installdate": "1658414780", + "arch": "x86_64" + }, + "passwd": { + "epoch": "0", + "version": "0.80", + "release": "4.el8", + "installdate": "1658414798", + "arch": "x86_64" + }, + "ncurses-libs": { + "epoch": "0", + "version": "6.1", + "release": "9.20180224.el8", + "installdate": "1658414780", + "arch": "x86_64" + }, + "initscripts": { + "epoch": "0", + "version": "10.00.15", + "release": "1.el8", + "installdate": "1658414800", + "arch": "x86_64" + }, + "polkit": { + "epoch": "0", + "version": "0.115", + "release": "13.0.1.el8_5.2", + "installdate": "1658414801", + "arch": "x86_64" + }, + "zlib": { + "epoch": "0", + "version": "1.2.11", + "release": "18.el8_5", + "installdate": "1658414781", + "arch": "x86_64" + }, + "popt": { + "epoch": "0", + "version": "1.18", + "release": "1.el8", + "installdate": "1658414781", + "arch": "x86_64" + }, + "python3-decorator": { + "epoch": "0", + "version": "4.2.1", + "release": "2.el8", + "installdate": "1658414819", + "arch": "noarch" + }, + "libgpg-error": { + "epoch": "0", + "version": "1.31", + "release": "1.el8", + "installdate": "1658414781", + "arch": "x86_64" + }, + "elfutils-libelf": { + "epoch": "0", + "version": "0.186", + "release": "1.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "network-scripts": { + "epoch": "0", + "version": "10.00.15", + "release": "1.el8", + "installdate": "1658414828", + "arch": "x86_64" + }, + "readline": { + "epoch": "0", + "version": "7.0", + "release": "10.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "util-linux-user": { + "epoch": "0", + "version": "2.32.1", + "release": "35.el8", + "installdate": "1658414828", + "arch": "x86_64" + }, + "libattr": { + "epoch": "0", + "version": "2.4.48", + "release": "3.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "libverto-libevent": { + "epoch": "0", + "version": "0.3.0", + "release": "5.el8", + "installdate": "1658414829", + "arch": "x86_64" + }, + "libidn2": { + "epoch": "0", + "version": "2.2.0", + "release": "1.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "postfix": { + "epoch": "2", + "version": "3.5.8", + "release": "4.el8", + "installdate": "1658414829", + "arch": "x86_64" + }, + "audit-libs": { + "epoch": "0", + "version": "3.0.7", + "release": "2.el8.2", + "installdate": "1658414782", + "arch": "x86_64" + }, + "python3-pyudev": { + "epoch": "0", + "version": "0.21.0", + "release": "7.el8", + "installdate": "1658414831", + "arch": "noarch" + }, + "p11-kit": { + "epoch": "0", + "version": "0.23.22", + "release": "1.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "gobject-introspection": { + "epoch": "0", + "version": "1.56.1", + "release": "1.el8", + "installdate": "1658414832", + "arch": "x86_64" + }, + "diffutils": { + "epoch": "0", + "version": "3.6", + "release": "6.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "pinentry": { + "epoch": "0", + "version": "1.1.0", + "release": "2.el8", + "installdate": "1658414832", + "arch": "x86_64" + }, + "libbasicobjects": { + "epoch": "0", + "version": "0.1.1", + "release": "39.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "lz4-libs": { + "epoch": "0", + "version": "1.8.3", + "release": "3.el8_4", + "installdate": "1658414783", + "arch": "x86_64" + }, + "make": { + "epoch": "1", + "version": "4.2.1", + "release": "11.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "libusbx": { + "epoch": "0", + "version": "1.0.23", + "release": "4.el8", + "installdate": "1658414832", + "arch": "x86_64" + }, + "jansson": { + "epoch": "0", + "version": "2.14", + "release": "1.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "librepo": { + "epoch": "0", + "version": "1.14.2", + "release": "1.el8", + "installdate": "1658414833", + "arch": "x86_64" + }, + "numactl-libs": { + "epoch": "0", + "version": "2.0.12", + "release": "13.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "python3-librepo": { + "epoch": "0", + "version": "1.14.2", + "release": "1.el8", + "installdate": "1658414833", + "arch": "x86_64" + }, + "bc": { + "epoch": "0", + "version": "1.07.1", + "release": "5.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "plymouth-core-libs": { + "epoch": "0", + "version": "0.9.4", + "release": "11.20200615git1e36e30.0.1.el8", + "installdate": "1658414833", + "arch": "x86_64" + }, + "checkpolicy": { + "epoch": "0", + "version": "2.9", + "release": "1.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "man-db": { + "epoch": "0", + "version": "2.7.6.1", + "release": "18.el8", + "installdate": "1658414834", + "arch": "x86_64" + }, + "libnfnetlink": { + "epoch": "0", + "version": "1.0.1", + "release": "13.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "quota": { + "epoch": "1", + "version": "4.04", + "release": "14.el8", + "installdate": "1658414834", + "arch": "x86_64" + }, + "p11-kit-trust": { + "epoch": "0", + "version": "0.23.22", + "release": "1.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "policycoreutils-python-utils": { + "epoch": "0", + "version": "2.9", + "release": "19.0.1.el8", + "installdate": "1658414834", + "arch": "noarch" + }, + "grep": { + "epoch": "0", + "version": "3.1", + "release": "6.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "policycoreutils-devel": { + "epoch": "0", + "version": "2.9", + "release": "19.0.1.el8", + "installdate": "1658414835", + "arch": "x86_64" + }, + "gdbm": { + "epoch": "1", + "version": "1.18", + "release": "1.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "libibverbs": { + "epoch": "0", + "version": "37.2", + "release": "1.el8", + "installdate": "1658414784", + "arch": "x86_64" + }, + "python3-cryptography": { + "epoch": "0", + "version": "3.2.1", + "release": "5.el8", + "installdate": "1658414845", + "arch": "x86_64" + }, + "iptables-ebtables": { + "epoch": "0", + "version": "1.8.4", + "release": "22.0.1.el8", + "installdate": "1658414784", + "arch": "x86_64" + }, + "python3-pyyaml": { + "epoch": "0", + "version": "3.12", + "release": "12.el8", + "installdate": "1658414846", + "arch": "x86_64" + }, + "ipset-libs": { + "epoch": "0", + "version": "7.1", + "release": "1.el8", + "installdate": "1658414784", + "arch": "x86_64" + }, + "python3-netifaces": { + "epoch": "0", + "version": "0.10.6", + "release": "4.el8", + "installdate": "1658414846", + "arch": "x86_64" + }, + "spax": { + "epoch": "0", + "version": "1.5.3", + "release": "13.el8", + "installdate": "1658414784", + "arch": "x86_64" + }, + "python3-dnf-plugin-spacewalk": { + "epoch": "0", + "version": "2.8.5", + "release": "11.0.3.module+el8.3.0+20070+f5719e00", + "installdate": "1658414846", + "arch": "noarch" + }, + "libcomps": { + "epoch": "0", + "version": "0.1.18", + "release": "1.el8", + "installdate": "1658414785", + "arch": "x86_64" + }, + "ncurses-compat-libs": { + "epoch": "0", + "version": "6.1", + "release": "9.20180224.el8", + "installdate": "1658414786", + "arch": "x86_64" + }, + "firewalld": { + "epoch": "0", + "version": "0.9.3", + "release": "13.0.1.el8", + "installdate": "1658414846", + "arch": "noarch" + }, + "coreutils-common": { + "epoch": "0", + "version": "8.30", + "release": "12.0.1.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "tuned": { + "epoch": "0", + "version": "2.18.0", + "release": "2.0.1.el8", + "installdate": "1658414847", + "arch": "noarch" + }, + "freetype": { + "epoch": "0", + "version": "2.9.1", + "release": "4.el8_3.1", + "installdate": "1658414787", + "arch": "x86_64" + }, + "wget": { + "epoch": "0", + "version": "1.19.5", + "release": "10.0.1.el8", + "installdate": "1658414847", + "arch": "x86_64" + }, + "c-ares": { + "epoch": "0", + "version": "1.13.0", + "release": "6.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "authselect": { + "epoch": "0", + "version": "1.2.2", + "release": "3.el8", + "installdate": "1658414847", + "arch": "x86_64" + }, + "libnghttp2": { + "epoch": "0", + "version": "1.33.0", + "release": "3.el8_2.1", + "installdate": "1658414787", + "arch": "x86_64" + }, + "irqbalance": { + "epoch": "2", + "version": "1.4.0", + "release": "6.el8", + "installdate": "1658414853", + "arch": "x86_64" + }, + "parted": { + "epoch": "0", + "version": "3.2", + "release": "39.0.1.el8", + "installdate": "1658414854", + "arch": "x86_64" + }, + "memstrack": { + "epoch": "0", + "version": "0.1.11", + "release": "1.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "prefixdevname": { + "epoch": "0", + "version": "0.1.0", + "release": "6.el8", + "installdate": "1658414855", + "arch": "x86_64" + }, + "libestr": { + "epoch": "0", + "version": "0.1.10", + "release": "1.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "biosdevname": { + "epoch": "0", + "version": "0.7.3", + "release": "2.el8", + "installdate": "1658414855", + "arch": "x86_64" + }, + "libxkbcommon": { + "epoch": "0", + "version": "0.9.1", + "release": "1.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "iprutils": { + "epoch": "0", + "version": "2.4.19", + "release": "1.el8", + "installdate": "1658414855", + "arch": "x86_64" + }, + "rootfiles": { + "epoch": "0", + "version": "8.1", + "release": "22.el8", + "installdate": "1658414856", + "arch": "noarch" + }, + "libssh-config": { + "epoch": "0", + "version": "0.9.6", + "release": "3.el8", + "installdate": "1658414788", + "arch": "noarch" + }, + "glibc-gconv-extra": { + "epoch": "0", + "version": "2.28", + "release": "189.5.0.1.el8_6", + "installdate": "1658415182", + "arch": "x86_64" + }, + "kbd-legacy": { + "epoch": "0", + "version": "2.0.4", + "release": "10.el8", + "installdate": "1658414788", + "arch": "noarch" + }, + "grub2-common": { + "epoch": "1", + "version": "2.02", + "release": "123.0.7.el8_6.8", + "installdate": "1658415183", + "arch": "noarch" + }, + "python3-libs": { + "epoch": "0", + "version": "3.6.8", + "release": "45.0.1.el8", + "installdate": "1658414791", + "arch": "x86_64" + }, + "NetworkManager": { + "epoch": "1", + "version": "1.36.0", + "release": "7.0.1.el8_6", + "installdate": "1658415183", + "arch": "x86_64" + }, + "platform-python": { + "epoch": "0", + "version": "3.6.8", + "release": "45.0.1.el8", + "installdate": "1658414791", + "arch": "x86_64" + }, + "grub2-pc-modules": { + "epoch": "1", + "version": "2.02", + "release": "123.0.7.el8_6.8", + "installdate": "1658415184", + "arch": "noarch" + }, + "libarchive": { + "epoch": "0", + "version": "3.3.3", + "release": "3.el8_5", + "installdate": "1658414791", + "arch": "x86_64" + }, + "cups-libs": { + "epoch": "1", + "version": "2.2.6", + "release": "45.el8_6.2", + "installdate": "1658415184", + "arch": "x86_64" + }, + "openssl": { + "epoch": "1", + "version": "1.1.1k", + "release": "6.el8_5", + "installdate": "1658414791", + "arch": "x86_64" + }, + "kernel-modules": { + "epoch": "0", + "version": "4.18.0", + "release": "372.16.1.0.1.el8_6", + "installdate": "1658415188", + "arch": "x86_64" + }, + "kernel-tools-libs": { + "epoch": "0", + "version": "4.18.0", + "release": "372.16.1.0.1.el8_6", + "installdate": "1658415194", + "arch": "x86_64" + }, + "krb5-libs": { + "epoch": "0", + "version": "1.18.2", + "release": "14.0.1.el8", + "installdate": "1658414792", + "arch": "x86_64" + }, + "sssd-client": { + "epoch": "0", + "version": "2.6.2", + "release": "4.0.2.el8_6.1", + "installdate": "1658415194", + "arch": "x86_64" + }, + "device-mapper": { + "epoch": "8", + "version": "1.02.181", + "release": "3.el8", + "installdate": "1658414792", + "arch": "x86_64" + }, + "sssd-kcm": { + "epoch": "0", + "version": "2.6.2", + "release": "4.0.2.el8_6.1", + "installdate": "1658415194", + "arch": "x86_64" + }, + "rpm": { + "epoch": "0", + "version": "4.14.3", + "release": "23.el8", + "installdate": "1658414792", + "arch": "x86_64" + }, + "kernel": { + "epoch": "0", + "version": "4.18.0", + "release": "372.16.1.0.1.el8_6", + "installdate": "1658415195", + "arch": "x86_64" + }, + "libfdisk": { + "epoch": "0", + "version": "2.32.1", + "release": "35.el8", + "installdate": "1658414792", + "arch": "x86_64" + }, + "python3-libxml2": { + "epoch": "0", + "version": "2.9.7", + "release": "13.el8_6.1", + "installdate": "1658415199", + "arch": "x86_64" + }, + "which": { + "epoch": "0", + "version": "2.21", + "release": "17.el8", + "installdate": "1658414792", + "arch": "x86_64" + }, + "rsyslog": { + "epoch": "0", + "version": "8.2102.0", + "release": "7.el8_6.1", + "installdate": "1658415199", + "arch": "x86_64" + }, + "libblkid": { + "epoch": "0", + "version": "2.32.1", + "release": "35.el8", + "installdate": "1658414793", + "arch": "x86_64" + }, + "libgomp": { + "epoch": "0", + "version": "8.5.0", + "release": "10.1.0.1.el8_6", + "installdate": "1658415200", + "arch": "x86_64" + }, + "libdb": { + "epoch": "0", + "version": "5.3.28", + "release": "42.el8_4", + "installdate": "1658414793", + "arch": "x86_64" + }, + "rhnsd": { + "epoch": "0", + "version": "5.0.35", + "release": "3.0.1.module+el8+5192+3173336a", + "installdate": "1658415200", + "arch": "x86_64" + }, + "cryptsetup-libs": { + "epoch": "0", + "version": "2.3.7", + "release": "2.el8", + "installdate": "1658414794", + "arch": "x86_64" + }, + "kbd": { + "epoch": "0", + "version": "2.0.4", + "release": "10.el8", + "installdate": "1658414794", + "arch": "x86_64" + }, + "systemd-pam": { + "epoch": "0", + "version": "239", + "release": "58.0.1.el8", + "installdate": "1658414795", + "arch": "x86_64" + }, + "dbus": { + "epoch": "1", + "version": "1.12.8", + "release": "18.0.1.el8", + "installdate": "1658414796", + "arch": "x86_64" + }, + "systemd-udev": { + "epoch": "0", + "version": "239", + "release": "58.0.1.el8", + "installdate": "1658414797", + "arch": "x86_64" + }, + "geolite2-city": { + "epoch": "0", + "version": "20180605", + "release": "1.el8", + "installdate": "1658414778", + "arch": "noarch" + }, + "python3-six": { + "epoch": "0", + "version": "1.11.0", + "release": "8.el8", + "installdate": "1658414797", + "arch": "noarch" + }, + "python3-setuptools-wheel": { + "epoch": "0", + "version": "39.2.0", + "release": "6.el8", + "installdate": "1658414779", + "arch": "noarch" + }, + "libmodulemd": { + "epoch": "0", + "version": "2.13.0", + "release": "1.el8", + "installdate": "1658414797", + "arch": "x86_64" + }, + "ncurses-base": { + "epoch": "0", + "version": "6.1", + "release": "9.20180224.el8", + "installdate": "1658414779", + "arch": "noarch" + }, + "python3-libselinux": { + "epoch": "0", + "version": "2.9", + "release": "5.el8", + "installdate": "1658414797", + "arch": "x86_64" + }, + "xkeyboard-config": { + "epoch": "0", + "version": "2.28", + "release": "1.el8", + "installdate": "1658414780", + "arch": "noarch" + }, + "cronie": { + "epoch": "0", + "version": "1.5.2", + "release": "6.el8", + "installdate": "1658414797", + "arch": "x86_64" + }, + "pcre2": { + "epoch": "0", + "version": "10.32", + "release": "2.el8", + "installdate": "1658414780", + "arch": "x86_64" + }, + "libuser": { + "epoch": "0", + "version": "0.62", + "release": "24.el8", + "installdate": "1658414797", + "arch": "x86_64" + }, + "setup": { + "epoch": "0", + "version": "2.12.2", + "release": "6.el8", + "installdate": "1658414780", + "arch": "noarch" + }, + "iproute": { + "epoch": "0", + "version": "5.15.0", + "release": "4.el8", + "installdate": "1658414797", + "arch": "x86_64" + }, + "basesystem": { + "epoch": "0", + "version": "11", + "release": "5.el8", + "installdate": "1658414780", + "arch": "noarch" + }, + "rpm-plugin-selinux": { + "epoch": "0", + "version": "4.14.3", + "release": "23.el8", + "installdate": "1658414798", + "arch": "x86_64" + }, + "libselinux": { + "epoch": "0", + "version": "2.9", + "release": "5.el8", + "installdate": "1658414780", + "arch": "x86_64" + }, + "selinux-policy-targeted": { + "epoch": "0", + "version": "3.14.3", + "release": "95.0.1.el8", + "installdate": "1658414800", + "arch": "noarch" + }, + "polkit-libs": { + "epoch": "0", + "version": "0.115", + "release": "13.0.1.el8_5.2", + "installdate": "1658414801", + "arch": "x86_64" + }, + "libsepol": { + "epoch": "0", + "version": "2.9", + "release": "3.el8", + "installdate": "1658414781", + "arch": "x86_64" + }, + "polkit-pkla-compat": { + "epoch": "0", + "version": "0.1", + "release": "12.el8", + "installdate": "1658414801", + "arch": "x86_64" + }, + "libcom_err": { + "epoch": "0", + "version": "1.45.6", + "release": "4.el8", + "installdate": "1658414781", + "arch": "x86_64" + }, + "logrotate": { + "epoch": "0", + "version": "3.14.0", + "release": "4.el8", + "installdate": "1658414819", + "arch": "x86_64" + }, + "bzip2-libs": { + "epoch": "0", + "version": "1.0.6", + "release": "26.el8", + "installdate": "1658414781", + "arch": "x86_64" + }, + "libnfsidmap": { + "epoch": "1", + "version": "2.3.3", + "release": "51.el8", + "installdate": "1658414819", + "arch": "x86_64" + }, + "sqlite-libs": { + "epoch": "0", + "version": "3.26.0", + "release": "15.el8", + "installdate": "1658414781", + "arch": "x86_64" + }, + "python3-newt": { + "epoch": "0", + "version": "0.52.20", + "release": "11.el8", + "installdate": "1658414820", + "arch": "x86_64" + }, + "libuuid": { + "epoch": "0", + "version": "2.32.1", + "release": "35.el8", + "installdate": "1658414781", + "arch": "x86_64" + }, + "timedatex": { + "epoch": "0", + "version": "0.5", + "release": "3.el8", + "installdate": "1658414828", + "arch": "x86_64" + }, + "libzstd": { + "epoch": "0", + "version": "1.4.4", + "release": "1.0.1.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "network-scripts-team": { + "epoch": "0", + "version": "1.31", + "release": "2.el8", + "installdate": "1658414828", + "arch": "x86_64" + }, + "usermode": { + "epoch": "0", + "version": "1.113", + "release": "2.el8", + "installdate": "1658414828", + "arch": "x86_64" + }, + "libunistring": { + "epoch": "0", + "version": "0.9.9", + "release": "3.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "python3-libsemanage": { + "epoch": "0", + "version": "2.9", + "release": "8.el8", + "installdate": "1658414829", + "arch": "x86_64" + }, + "libacl": { + "epoch": "0", + "version": "2.2.53", + "release": "1.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "python3-slip": { + "epoch": "0", + "version": "0.6.4", + "release": "11.el8", + "installdate": "1658414829", + "arch": "noarch" + }, + "libmnl": { + "epoch": "0", + "version": "1.0.4", + "release": "6.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "gssproxy": { + "epoch": "0", + "version": "0.8.0", + "release": "20.el8", + "installdate": "1658414829", + "arch": "x86_64" + }, + "gmp": { + "epoch": "1", + "version": "6.1.2", + "release": "10.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "python3-unbound": { + "epoch": "0", + "version": "1.7.3", + "release": "17.el8", + "installdate": "1658414829", + "arch": "x86_64" + }, + "libcap-ng": { + "epoch": "0", + "version": "0.7.11", + "release": "1.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "rpcbind": { + "epoch": "0", + "version": "1.2.5", + "release": "8.el8", + "installdate": "1658414831", + "arch": "x86_64" + }, + "libffi": { + "epoch": "0", + "version": "3.1", + "release": "23.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "python3-linux-procfs": { + "epoch": "0", + "version": "0.7.0", + "release": "1.el8", + "installdate": "1658414831", + "arch": "noarch" + }, + "nspr": { + "epoch": "0", + "version": "4.32.0", + "release": "1.el8_4", + "installdate": "1658414782", + "arch": "x86_64" + }, + "at": { + "epoch": "0", + "version": "3.1.20", + "release": "11.el8", + "installdate": "1658414831", + "arch": "x86_64" + }, + "iputils": { + "epoch": "0", + "version": "20180629", + "release": "9.el8", + "installdate": "1658414831", + "arch": "x86_64" + }, + "libtalloc": { + "epoch": "0", + "version": "2.3.3", + "release": "1.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "dbus-glib": { + "epoch": "0", + "version": "0.110", + "release": "2.el8", + "installdate": "1658414831", + "arch": "x86_64" + }, + "nss-util": { + "epoch": "0", + "version": "3.67.0", + "release": "7.el8_5", + "installdate": "1658414782", + "arch": "x86_64" + }, + "python3-slip-dbus": { + "epoch": "0", + "version": "0.6.4", + "release": "11.el8", + "installdate": "1658414831", + "arch": "noarch" + }, + "libassuan": { + "epoch": "0", + "version": "2.5.1", + "release": "3.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "python3-gobject-base": { + "epoch": "0", + "version": "3.28.3", + "release": "2.el8", + "installdate": "1658414832", + "arch": "x86_64" + }, + "file-libs": { + "epoch": "0", + "version": "5.33", + "release": "20.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "libsecret": { + "epoch": "0", + "version": "0.18.6", + "release": "1.el8", + "installdate": "1658414832", + "arch": "x86_64" + }, + "json-c": { + "epoch": "0", + "version": "0.13.1", + "release": "3.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "libcollection": { + "epoch": "0", + "version": "0.7.0", + "release": "39.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "virt-what": { + "epoch": "0", + "version": "1.18", + "release": "13.el8", + "installdate": "1658414832", + "arch": "x86_64" + }, + "libsmartcols": { + "epoch": "0", + "version": "2.32.1", + "release": "35.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "python3-kmod": { + "epoch": "0", + "version": "0.9", + "release": "20.el8", + "installdate": "1658414832", + "arch": "x86_64" + }, + "libtevent": { + "epoch": "0", + "version": "0.11.0", + "release": "0.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "e2fsprogs-libs": { + "epoch": "0", + "version": "1.45.6", + "release": "4.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "mailx": { + "epoch": "0", + "version": "12.5", + "release": "29.el8", + "installdate": "1658414832", + "arch": "x86_64" + }, + "cpio": { + "epoch": "0", + "version": "2.12", + "release": "11.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "ima-evm-utils": { + "epoch": "0", + "version": "1.3.2", + "release": "12.el8", + "installdate": "1658414832", + "arch": "x86_64" + }, + "hostname": { + "epoch": "0", + "version": "3.20", + "release": "6.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "gnupg2-smime": { + "epoch": "0", + "version": "2.2.20", + "release": "2.el8", + "installdate": "1658414832", + "arch": "x86_64" + }, + "libtdb": { + "epoch": "0", + "version": "1.4.4", + "release": "1.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "gpgme": { + "epoch": "0", + "version": "1.13.1", + "release": "11.el8", + "installdate": "1658414833", + "arch": "x86_64" + }, + "lzo": { + "epoch": "0", + "version": "2.08", + "release": "14.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "libdnf": { + "epoch": "0", + "version": "0.63.0", + "release": "8.0.1.el8", + "installdate": "1658414833", + "arch": "x86_64" + }, + "libnl3-cli": { + "epoch": "0", + "version": "3.5.0", + "release": "1.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "python3-hawkey": { + "epoch": "0", + "version": "0.63.0", + "release": "8.0.1.el8", + "installdate": "1658414833", + "arch": "x86_64" + }, + "libnftnl": { + "epoch": "0", + "version": "1.1.5", + "release": "5.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "python3-gpg": { + "epoch": "0", + "version": "1.13.1", + "release": "11.el8", + "installdate": "1658414833", + "arch": "x86_64" + }, + "libksba": { + "epoch": "0", + "version": "1.3.5", + "release": "7.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "python3-rpm": { + "epoch": "0", + "version": "4.14.3", + "release": "23.el8", + "installdate": "1658414833", + "arch": "x86_64" + }, + "m4": { + "epoch": "0", + "version": "1.4.18", + "release": "7.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "plymouth-scripts": { + "epoch": "0", + "version": "0.9.4", + "release": "11.20200615git1e36e30.0.1.el8", + "installdate": "1658414833", + "arch": "x86_64" + }, + "dmidecode": { + "epoch": "1", + "version": "3.3", + "release": "4.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "binutils": { + "epoch": "0", + "version": "2.30", + "release": "113.0.1.el8", + "installdate": "1658414834", + "arch": "x86_64" + }, + "libedit": { + "epoch": "0", + "version": "3.1", + "release": "23.20170329cvs.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "nss-sysinit": { + "epoch": "0", + "version": "3.67.0", + "release": "7.el8_5", + "installdate": "1658414834", + "arch": "x86_64" + }, + "libseccomp": { + "epoch": "0", + "version": "2.5.2", + "release": "1.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "redhat-lsb-submod-security": { + "epoch": "0", + "version": "4.1", + "release": "47.0.1.el8", + "installdate": "1658414834", + "arch": "x86_64" + }, + "libtasn1": { + "epoch": "0", + "version": "4.13", + "release": "3.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "libyaml": { + "epoch": "0", + "version": "0.1.7", + "release": "5.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "python3-policycoreutils": { + "epoch": "0", + "version": "2.9", + "release": "19.0.1.el8", + "installdate": "1658414834", + "arch": "noarch" + }, + "pcre": { + "epoch": "0", + "version": "8.42", + "release": "6.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "python3-libcomps": { + "epoch": "0", + "version": "0.1.18", + "release": "1.el8", + "installdate": "1658414834", + "arch": "x86_64" + }, + "psmisc": { + "epoch": "0", + "version": "23.1", + "release": "5.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "dnf": { + "epoch": "0", + "version": "4.7.0", + "release": "8.0.1.el8", + "installdate": "1658414835", + "arch": "noarch" + }, + "newt": { + "epoch": "0", + "version": "0.52.20", + "release": "11.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "selinux-policy-devel": { + "epoch": "0", + "version": "3.14.3", + "release": "95.0.1.el8", + "installdate": "1658414835", + "arch": "noarch" + }, + "libnetfilter_conntrack": { + "epoch": "0", + "version": "1.0.6", + "release": "5.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "dnf-plugins-core": { + "epoch": "0", + "version": "4.0.21", + "release": "11.0.1.el8", + "installdate": "1658414845", + "arch": "noarch" + }, + "squashfs-tools": { + "epoch": "0", + "version": "4.3", + "release": "20.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "python3-dmidecode": { + "epoch": "0", + "version": "3.12.2", + "release": "15.el8", + "installdate": "1658414845", + "arch": "x86_64" + }, + "nss-softokn-freebl": { + "epoch": "0", + "version": "3.67.0", + "release": "7.el8_5", + "installdate": "1658414783", + "arch": "x86_64" + }, + "python3-firewall": { + "epoch": "0", + "version": "0.9.3", + "release": "13.0.1.el8", + "installdate": "1658414845", + "arch": "noarch" + }, + "python3-ply": { + "epoch": "0", + "version": "3.9", + "release": "9.el8", + "installdate": "1658414845", + "arch": "noarch" + }, + "libpcap": { + "epoch": "14", + "version": "1.9.1", + "release": "5.el8", + "installdate": "1658414784", + "arch": "x86_64" + }, + "python3-cffi": { + "epoch": "0", + "version": "1.11.5", + "release": "5.el8", + "installdate": "1658414845", + "arch": "x86_64" + }, + "iptables": { + "epoch": "0", + "version": "1.8.4", + "release": "22.0.1.el8", + "installdate": "1658414784", + "arch": "x86_64" + }, + "python3-pyOpenSSL": { + "epoch": "0", + "version": "19.0.0", + "release": "1.el8", + "installdate": "1658414846", + "arch": "noarch" + }, + "nftables": { + "epoch": "1", + "version": "0.9.3", + "release": "25.el8", + "installdate": "1658414784", + "arch": "x86_64" + }, + "python3-pyparsing": { + "epoch": "0", + "version": "2.1.10", + "release": "7.el8", + "installdate": "1658414846", + "arch": "noarch" + }, + "mpfr": { + "epoch": "0", + "version": "3.1.6", + "release": "1.el8", + "installdate": "1658414784", + "arch": "x86_64" + }, + "python3-urwid": { + "epoch": "0", + "version": "1.3.1", + "release": "4.el8", + "installdate": "1658414846", + "arch": "x86_64" + }, + "ipset": { + "epoch": "0", + "version": "7.1", + "release": "1.el8", + "installdate": "1658414784", + "arch": "x86_64" + }, + "python3-hwdata": { + "epoch": "0", + "version": "2.3.6", + "release": "3.el8", + "installdate": "1658414846", + "arch": "noarch" + }, + "acl": { + "epoch": "0", + "version": "2.2.53", + "release": "1.el8", + "installdate": "1658414784", + "arch": "x86_64" + }, + "python3-rhn-client-tools": { + "epoch": "0", + "version": "2.8.16", + "release": "13.0.4.module+el8.4.0+20139+94f9e265", + "installdate": "1658414846", + "arch": "x86_64" + }, + "tar": { + "epoch": "2", + "version": "1.30", + "release": "5.el8", + "installdate": "1658414785", + "arch": "x86_64" + }, + "patch": { + "epoch": "0", + "version": "2.7.6", + "release": "11.el8", + "installdate": "1658414785", + "arch": "x86_64" + }, + "libmetalink": { + "epoch": "0", + "version": "0.1.3", + "release": "7.el8", + "installdate": "1658414785", + "arch": "x86_64" + }, + "mozjs60": { + "epoch": "0", + "version": "60.9.0", + "release": "4.0.1.el8", + "installdate": "1658414786", + "arch": "x86_64" + }, + "snappy": { + "epoch": "0", + "version": "1.1.8", + "release": "3.el8", + "installdate": "1658414786", + "arch": "x86_64" + }, + "libss": { + "epoch": "0", + "version": "1.45.6", + "release": "4.el8", + "installdate": "1658414786", + "arch": "x86_64" + }, + "ed": { + "epoch": "0", + "version": "1.14.2", + "release": "4.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "libpng": { + "epoch": "2", + "version": "1.6.34", + "release": "5.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "pigz": { + "epoch": "0", + "version": "2.4", + "release": "4.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "brotli": { + "epoch": "0", + "version": "1.0.6", + "release": "3.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "fuse-libs": { + "epoch": "0", + "version": "2.9.7", + "release": "15.0.2.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "chef-workstation": { + "epoch": "0", + "version": "21.10.640", + "release": "1.el7", + "installdate": "1675113403", + "arch": "x86_64" + }, + "hdparm": { + "epoch": "0", + "version": "9.54", + "release": "4.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "less": { + "epoch": "0", + "version": "530", + "release": "1.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "libndp": { + "epoch": "0", + "version": "1.7", + "release": "6.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "libpath_utils": { + "epoch": "0", + "version": "0.2.1", + "release": "39.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "libpipeline": { + "epoch": "0", + "version": "1.5.0", + "release": "2.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "gawk": { + "epoch": "0", + "version": "4.2.1", + "release": "4.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "lmdb-libs": { + "epoch": "0", + "version": "0.9.24", + "release": "1.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "ncurses": { + "epoch": "0", + "version": "6.1", + "release": "9.20180224.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "sg3_utils-libs": { + "epoch": "0", + "version": "1.44", + "release": "5.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "libfastjson": { + "epoch": "0", + "version": "0.99.9", + "release": "1.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "ipcalc": { + "epoch": "0", + "version": "0.2.4", + "release": "4.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "quota-nls": { + "epoch": "1", + "version": "4.04", + "release": "14.el8", + "installdate": "1658414787", + "arch": "noarch" + }, + "libpsl": { + "epoch": "0", + "version": "0.20.2", + "release": "6.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "libreport-filesystem": { + "epoch": "0", + "version": "2.9.5", + "release": "15.0.3.el8", + "installdate": "1658414788", + "arch": "x86_64" + }, + "kbd-misc": { + "epoch": "0", + "version": "2.0.4", + "release": "10.el8", + "installdate": "1658414788", + "arch": "noarch" + }, + "cyrus-sasl-lib": { + "epoch": "0", + "version": "2.1.27", + "release": "6.el8_5", + "installdate": "1658414788", + "arch": "x86_64" + }, + "platform-python-setuptools": { + "epoch": "0", + "version": "39.2.0", + "release": "6.el8", + "installdate": "1658414789", + "arch": "noarch" + }, + "openldap": { + "epoch": "0", + "version": "2.4.46", + "release": "18.el8", + "installdate": "1658414791", + "arch": "x86_64" + }, + "grubby": { + "epoch": "0", + "version": "8.40", + "release": "42.0.1.el8", + "installdate": "1658414791", + "arch": "x86_64" + }, + "libkcapi-hmaccalc": { + "epoch": "0", + "version": "1.2.0", + "release": "2.0.1.el8", + "installdate": "1658414791", + "arch": "x86_64" + }, + "libdb-utils": { + "epoch": "0", + "version": "5.3.28", + "release": "42.el8_4", + "installdate": "1658414791", + "arch": "x86_64" + }, + "crypto-policies-scripts": { + "epoch": "0", + "version": "20211116", + "release": "1.gitae470d6.el8", + "installdate": "1658414791", + "arch": "noarch" + }, + "elfutils-default-yama-scope": { + "epoch": "0", + "version": "0.186", + "release": "1.el8", + "installdate": "1658414791", + "arch": "noarch" + }, + "cracklib": { + "epoch": "0", + "version": "2.9.6", + "release": "15.el8", + "installdate": "1658414791", + "arch": "x86_64" + }, + "procps-ng": { + "epoch": "0", + "version": "3.3.15", + "release": "6.0.1.el8", + "installdate": "1658414792", + "arch": "x86_64" + }, + "libtirpc": { + "epoch": "0", + "version": "1.1.4", + "release": "6.el8", + "installdate": "1658414792", + "arch": "x86_64" + }, + "kpartx": { + "epoch": "0", + "version": "0.8.4", + "release": "22.el8", + "installdate": "1658414792", + "arch": "x86_64" + }, + "elfutils-debuginfod-client": { + "epoch": "0", + "version": "0.186", + "release": "1.el8", + "installdate": "1658414792", + "arch": "x86_64" + }, + "openssl-pkcs11": { + "epoch": "0", + "version": "0.4.10", + "release": "2.el8", + "installdate": "1658414792", + "arch": "x86_64" + }, + "gettext-libs": { + "epoch": "0", + "version": "0.19.8.1", + "release": "17.el8", + "installdate": "1658414792", + "arch": "x86_64" + }, + "dbus-common": { + "epoch": "1", + "version": "1.12.8", + "release": "18.0.1.el8", + "installdate": "1658414792", + "arch": "noarch" + }, + "libmount": { + "epoch": "0", + "version": "2.32.1", + "release": "35.el8", + "installdate": "1658414792", + "arch": "x86_64" + }, + "dbus-tools": { + "epoch": "1", + "version": "1.12.8", + "release": "18.0.1.el8", + "installdate": "1658414792", + "arch": "x86_64" + }, + "coreutils": { + "epoch": "0", + "version": "8.30", + "release": "12.0.1.el8", + "installdate": "1658414792", + "arch": "x86_64" + }, + "shadow-utils": { + "epoch": "2", + "version": "4.6", + "release": "16.el8", + "installdate": "1658414793", + "arch": "x86_64" + }, + "device-mapper-libs": { + "epoch": "8", + "version": "1.02.181", + "release": "3.el8", + "installdate": "1658414793", + "arch": "x86_64" + }, + "openssl-libs": { + "epoch": "1", + "version": "1.1.1k", + "release": "6.el8_5", + "installdate": "1658414793", + "arch": "x86_64" + }, + "rpm-libs": { + "epoch": "0", + "version": "4.14.3", + "release": "23.el8", + "installdate": "1658414793", + "arch": "x86_64" + }, + "kmod-libs": { + "epoch": "0", + "version": "25", + "release": "19.0.1.el8", + "installdate": "1658414793", + "arch": "x86_64" + }, + "trousers-lib": { + "epoch": "0", + "version": "0.3.15", + "release": "1.el8", + "installdate": "1658414794", + "arch": "x86_64" + }, + "libutempter": { + "epoch": "0", + "version": "1.1.6", + "release": "14.el8", + "installdate": "1658414794", + "arch": "x86_64" + }, + "libpwquality": { + "epoch": "0", + "version": "1.4.4", + "release": "3.el8", + "installdate": "1658414794", + "arch": "x86_64" + }, + "util-linux": { + "epoch": "0", + "version": "2.32.1", + "release": "35.el8", + "installdate": "1658414794", + "arch": "x86_64" + }, + "gettext": { + "epoch": "0", + "version": "0.19.8.1", + "release": "17.el8", + "installdate": "1658414795", + "arch": "x86_64" + }, + "glib2": { + "epoch": "0", + "version": "2.56.4", + "release": "158.el8", + "installdate": "1658414795", + "arch": "x86_64" + }, + "gnutls": { + "epoch": "0", + "version": "3.6.16", + "release": "4.el8", + "installdate": "1658414796", + "arch": "x86_64" + }, + "python3-dnf-plugin-ulninfo": { + "epoch": "0", + "version": "0.3", + "release": "2.module+el8.4.0+20142+f119a2fa", + "installdate": "1658414846", + "arch": "noarch" + }, + "dnf-plugin-spacewalk": { + "epoch": "0", + "version": "2.8.5", + "release": "11.0.3.module+el8.3.0+20070+f5719e00", + "installdate": "1658414846", + "arch": "noarch" + }, + "rhn-check": { + "epoch": "0", + "version": "2.8.16", + "release": "13.0.4.module+el8.4.0+20139+94f9e265", + "installdate": "1658414846", + "arch": "x86_64" + }, + "python3-rhn-setup": { + "epoch": "0", + "version": "2.8.16", + "release": "13.0.4.module+el8.4.0+20139+94f9e265", + "installdate": "1658414846", + "arch": "x86_64" + }, + "firewalld-filesystem": { + "epoch": "0", + "version": "0.9.3", + "release": "13.0.1.el8", + "installdate": "1658414846", + "arch": "noarch" + }, + "nvmetcli": { + "epoch": "0", + "version": "0.7", + "release": "3.0.1.el8", + "installdate": "1658414846", + "arch": "noarch" + }, + "rhnlib": { + "epoch": "0", + "version": "2.8.6", + "release": "8.0.1.module+el8.3.0+7814+aac1f1cb", + "installdate": "1658414847", + "arch": "noarch" + }, + "yum-utils": { + "epoch": "0", + "version": "4.0.21", + "release": "11.0.1.el8", + "installdate": "1658414847", + "arch": "noarch" + }, + "redhat-lsb-core": { + "epoch": "0", + "version": "4.1", + "release": "47.0.1.el8", + "installdate": "1658414847", + "arch": "x86_64" + }, + "openssh-server": { + "epoch": "0", + "version": "8.0p1", + "release": "13.el8", + "installdate": "1658414853", + "arch": "x86_64" + }, + "audit": { + "epoch": "0", + "version": "3.0.7", + "release": "2.el8.2", + "installdate": "1658414853", + "arch": "x86_64" + }, + "net-tools": { + "epoch": "0", + "version": "2.0", + "release": "0.52.20160912git.el8", + "installdate": "1658414853", + "arch": "x86_64" + }, + "sudo": { + "epoch": "0", + "version": "1.8.29", + "release": "8.el8", + "installdate": "1658414854", + "arch": "x86_64" + }, + "e2fsprogs": { + "epoch": "0", + "version": "1.45.6", + "release": "4.el8", + "installdate": "1658414855", + "arch": "x86_64" + }, + "sg3_utils": { + "epoch": "0", + "version": "1.44", + "release": "5.el8", + "installdate": "1658414855", + "arch": "x86_64" + }, + "bzip2": { + "epoch": "0", + "version": "1.0.6", + "release": "26.el8", + "installdate": "1658414855", + "arch": "x86_64" + }, + "libsysfs": { + "epoch": "0", + "version": "2.1.0", + "release": "25.el8", + "installdate": "1658414856", + "arch": "x86_64" + }, + "langpacks-en": { + "epoch": "0", + "version": "1.0", + "release": "12.el8", + "installdate": "1658414856", + "arch": "noarch" + }, + "gpg-pubkey": { + "epoch": "0", + "version": "ad986da3", + "release": "5cabf60d", + "installdate": "1658415171", + "arch": "(none)" + }, + "glibc-langpack-en": { + "epoch": "0", + "version": "2.28", + "release": "189.5.0.1.el8_6", + "installdate": "1658415182", + "arch": "x86_64" + }, + "glibc": { + "epoch": "0", + "version": "2.28", + "release": "189.5.0.1.el8_6", + "installdate": "1658415182", + "arch": "x86_64" + }, + "xz-libs": { + "epoch": "0", + "version": "5.2.4", + "release": "4.el8_6", + "installdate": "1658415183", + "arch": "x86_64" + }, + "libcurl": { + "epoch": "0", + "version": "7.61.1", + "release": "22.el8_6.3", + "installdate": "1658415183", + "arch": "x86_64" + }, + "NetworkManager-libnm": { + "epoch": "1", + "version": "1.36.0", + "release": "7.0.1.el8_6", + "installdate": "1658415183", + "arch": "x86_64" + }, + "libsss_idmap": { + "epoch": "0", + "version": "2.6.2", + "release": "4.0.2.el8_6.1", + "installdate": "1658415184", + "arch": "x86_64" + }, + "curl": { + "epoch": "0", + "version": "7.61.1", + "release": "22.el8_6.3", + "installdate": "1658415184", + "arch": "x86_64" + }, + "libxml2": { + "epoch": "0", + "version": "2.9.7", + "release": "13.el8_6.1", + "installdate": "1658415184", + "arch": "x86_64" + }, + "libstdc++": { + "epoch": "0", + "version": "8.5.0", + "release": "10.1.0.1.el8_6", + "installdate": "1658415184", + "arch": "x86_64" + }, + "gzip": { + "epoch": "0", + "version": "1.9", + "release": "13.el8_5", + "installdate": "1658415184", + "arch": "x86_64" + }, + "kernel-core": { + "epoch": "0", + "version": "4.18.0", + "release": "372.16.1.0.1.el8_6", + "installdate": "1658415187", + "arch": "x86_64" + }, + "dracut-network": { + "epoch": "0", + "version": "049", + "release": "202.git20220511.0.1.el8_6", + "installdate": "1658415193", + "arch": "x86_64" + }, + "grub2-tools": { + "epoch": "1", + "version": "2.02", + "release": "123.0.7.el8_6.8", + "installdate": "1658415194", + "arch": "x86_64" + }, + "libsss_autofs": { + "epoch": "0", + "version": "2.6.2", + "release": "4.0.2.el8_6.1", + "installdate": "1658415194", + "arch": "x86_64" + }, + "libsss_nss_idmap": { + "epoch": "0", + "version": "2.6.2", + "release": "4.0.2.el8_6.1", + "installdate": "1658415194", + "arch": "x86_64" + }, + "libsss_sudo": { + "epoch": "0", + "version": "2.6.2", + "release": "4.0.2.el8_6.1", + "installdate": "1658415194", + "arch": "x86_64" + }, + "sssd-common": { + "epoch": "0", + "version": "2.6.2", + "release": "4.0.2.el8_6.1", + "installdate": "1658415194", + "arch": "x86_64" + }, + "kernel-tools": { + "epoch": "0", + "version": "4.18.0", + "release": "372.16.1.0.1.el8_6", + "installdate": "1658415194", + "arch": "x86_64" + }, + "kexec-tools": { + "epoch": "0", + "version": "2.0.20", + "release": "68.0.3.el8", + "installdate": "1658415194", + "arch": "x86_64" + }, + "kernel-uek": { + "epoch": "0", + "version": "5.4.17", + "release": "2136.309.5.el8uek", + "installdate": "1658415199", + "arch": "x86_64" + }, + "cups-client": { + "epoch": "1", + "version": "2.2.6", + "release": "45.el8_6.2", + "installdate": "1658415199", + "arch": "x86_64" + }, + "oraclelinux-release-el8": { + "epoch": "0", + "version": "1.0", + "release": "25.el8", + "installdate": "1658415199", + "arch": "x86_64" + }, + "NetworkManager-tui": { + "epoch": "1", + "version": "1.36.0", + "release": "7.0.1.el8_6", + "installdate": "1658415199", + "arch": "x86_64" + }, + "libgcrypt": { + "epoch": "0", + "version": "1.8.5", + "release": "7.el8_6", + "installdate": "1658415200", + "arch": "x86_64" + }, + "python3-perf": { + "epoch": "0", + "version": "4.18.0", + "release": "372.16.1.0.1.el8_6", + "installdate": "1658415200", + "arch": "x86_64" + }, + "vim-minimal": { + "epoch": "2", + "version": "8.0.1763", + "release": "19.0.1.el8_6.2", + "installdate": "1658415200", + "arch": "x86_64" + }, + "btrfs-progs": { + "epoch": "0", + "version": "5.15.1", + "release": "0.el8", + "installdate": "1658415200", + "arch": "x86_64" + }, + "systemd": { + "epoch": "0", + "version": "239", + "release": "58.0.1.el8", + "installdate": "1658414796", + "arch": "x86_64" + }, + "geolite2-country": { + "epoch": "0", + "version": "20180605", + "release": "1.el8", + "installdate": "1658414776", + "arch": "noarch" + }, + "policycoreutils": { + "epoch": "0", + "version": "2.9", + "release": "19.0.1.el8", + "installdate": "1658414797", + "arch": "x86_64" + }, + "python3-pip-wheel": { + "epoch": "0", + "version": "9.0.3", + "release": "22.el8", + "installdate": "1658414779", + "arch": "noarch" + }, + "crontabs": { + "epoch": "0", + "version": "1.11", + "release": "17.20190603git.el8", + "installdate": "1658414797", + "arch": "noarch" + }, + "redhat-release": { + "epoch": "2", + "version": "8.6", + "release": "0.1.0.1.el8", + "installdate": "1658414780", + "arch": "x86_64" + }, + "libsolv": { + "epoch": "0", + "version": "0.7.20", + "release": "1.el8", + "installdate": "1658414797", + "arch": "x86_64" + }, + "filesystem": { + "epoch": "0", + "version": "3.8", + "release": "6.el8", + "installdate": "1658414780", + "arch": "x86_64" + }, + "selinux-policy": { + "epoch": "0", + "version": "3.14.3", + "release": "95.0.1.el8", + "installdate": "1658414798", + "arch": "noarch" + }, + "bash": { + "epoch": "0", + "version": "4.4.20", + "release": "3.el8", + "installdate": "1658414780", + "arch": "x86_64" + }, + "openssh": { + "epoch": "0", + "version": "8.0p1", + "release": "13.el8", + "installdate": "1658414801", + "arch": "x86_64" + }, + "info": { + "epoch": "0", + "version": "6.5", + "release": "7.el8", + "installdate": "1658414781", + "arch": "x86_64" + }, + "avahi-libs": { + "epoch": "0", + "version": "0.7", + "release": "20.el8", + "installdate": "1658414819", + "arch": "x86_64" + }, + "libcap": { + "epoch": "0", + "version": "2.48", + "release": "2.el8", + "installdate": "1658414781", + "arch": "x86_64" + }, + "libldb": { + "epoch": "0", + "version": "2.4.1", + "release": "1.el8", + "installdate": "1658414820", + "arch": "x86_64" + }, + "chkconfig": { + "epoch": "0", + "version": "1.19.1", + "release": "1.0.1.el8", + "installdate": "1658414781", + "arch": "x86_64" + }, + "libxcrypt": { + "epoch": "0", + "version": "4.1.1", + "release": "6.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "teamd": { + "epoch": "0", + "version": "1.31", + "release": "2.el8", + "installdate": "1658414828", + "arch": "x86_64" + }, + "findutils": { + "epoch": "1", + "version": "4.6.0", + "release": "20.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "python3-setools": { + "epoch": "0", + "version": "4.3.0", + "release": "3.el8", + "installdate": "1658414829", + "arch": "x86_64" + }, + "sed": { + "epoch": "0", + "version": "4.5", + "release": "5.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "unbound-libs": { + "epoch": "0", + "version": "1.7.3", + "release": "17.el8", + "installdate": "1658414829", + "arch": "x86_64" + }, + "keyutils-libs": { + "epoch": "0", + "version": "1.5.10", + "release": "9.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "python3-dateutil": { + "epoch": "1", + "version": "2.6.1", + "release": "6.el8", + "installdate": "1658414831", + "arch": "noarch" + }, + "lua-libs": { + "epoch": "0", + "version": "5.3.4", + "release": "12.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "authselect-libs": { + "epoch": "0", + "version": "1.2.2", + "release": "3.el8", + "installdate": "1658414831", + "arch": "x86_64" + }, + "libnl3": { + "epoch": "0", + "version": "3.5.0", + "release": "1.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "python3-dbus": { + "epoch": "0", + "version": "1.2.4", + "release": "15.el8", + "installdate": "1658414831", + "arch": "x86_64" + }, + "libsemanage": { + "epoch": "0", + "version": "2.9", + "release": "8.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "libgudev": { + "epoch": "0", + "version": "232", + "release": "4.el8", + "installdate": "1658414832", + "arch": "x86_64" + }, + "file": { + "epoch": "0", + "version": "5.33", + "release": "20.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "libref_array": { + "epoch": "0", + "version": "0.1.5", + "release": "39.el8", + "installdate": "1658414782", + "arch": "x86_64" + }, + "rpm-plugin-systemd-inhibit": { + "epoch": "0", + "version": "4.14.3", + "release": "23.el8", + "installdate": "1658414832", + "arch": "x86_64" + }, + "nettle": { + "epoch": "0", + "version": "3.4.1", + "release": "7.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "tpm2-tss": { + "epoch": "0", + "version": "2.3.2", + "release": "4.el8", + "installdate": "1658414832", + "arch": "x86_64" + }, + "gdbm-libs": { + "epoch": "1", + "version": "1.18", + "release": "1.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "gnupg2": { + "epoch": "0", + "version": "2.2.20", + "release": "2.el8", + "installdate": "1658414833", + "arch": "x86_64" + }, + "libverto": { + "epoch": "0", + "version": "0.3.0", + "release": "5.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "python3-libdnf": { + "epoch": "0", + "version": "0.63.0", + "release": "8.0.1.el8", + "installdate": "1658414833", + "arch": "x86_64" + }, + "ethtool": { + "epoch": "2", + "version": "5.13", + "release": "1.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "rpm-build-libs": { + "epoch": "0", + "version": "4.14.3", + "release": "23.el8", + "installdate": "1658414833", + "arch": "x86_64" + }, + "plymouth": { + "epoch": "0", + "version": "0.9.4", + "release": "11.20200615git1e36e30.0.1.el8", + "installdate": "1658414833", + "arch": "x86_64" + }, + "libdhash": { + "epoch": "0", + "version": "0.5.0", + "release": "39.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "nss": { + "epoch": "0", + "version": "3.67.0", + "release": "7.el8_5", + "installdate": "1658414834", + "arch": "x86_64" + }, + "python3-audit": { + "epoch": "0", + "version": "3.0.7", + "release": "2.el8.2", + "installdate": "1658414834", + "arch": "x86_64" + }, + "pciutils-libs": { + "epoch": "0", + "version": "3.7.0", + "release": "1.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "python3-dnf": { + "epoch": "0", + "version": "4.7.0", + "release": "8.0.1.el8", + "installdate": "1658414835", + "arch": "noarch" + }, + "slang": { + "epoch": "0", + "version": "2.3.2", + "release": "3.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "python3-dnf-plugins-core": { + "epoch": "0", + "version": "4.0.21", + "release": "11.0.1.el8", + "installdate": "1658414845", + "arch": "noarch" + }, + "libteam": { + "epoch": "0", + "version": "1.31", + "release": "2.el8", + "installdate": "1658414783", + "arch": "x86_64" + }, + "python3-nftables": { + "epoch": "1", + "version": "0.9.3", + "release": "25.el8", + "installdate": "1658414845", + "arch": "x86_64" + }, + "nss-softokn": { + "epoch": "0", + "version": "3.67.0", + "release": "7.el8_5", + "installdate": "1658414784", + "arch": "x86_64" + }, + "python3-pycparser": { + "epoch": "0", + "version": "2.14", + "release": "14.el8", + "installdate": "1658414845", + "arch": "noarch" + }, + "iptables-libs": { + "epoch": "0", + "version": "1.8.4", + "release": "22.0.1.el8", + "installdate": "1658414784", + "arch": "x86_64" + }, + "python3-rhnlib": { + "epoch": "0", + "version": "2.8.6", + "release": "8.0.1.module+el8.3.0+7814+aac1f1cb", + "installdate": "1658414846", + "arch": "noarch" + }, + "keyutils": { + "epoch": "0", + "version": "1.5.10", + "release": "9.el8", + "installdate": "1658414784", + "arch": "x86_64" + }, + "python3-configshell": { + "epoch": "1", + "version": "1.1.28", + "release": "1.0.1.el8", + "installdate": "1658414846", + "arch": "noarch" + }, + "groff-base": { + "epoch": "0", + "version": "1.22.3", + "release": "18.el8", + "installdate": "1658414784", + "arch": "x86_64" + }, + "rhn-client-tools": { + "epoch": "0", + "version": "2.8.16", + "release": "13.0.4.module+el8.4.0+20139+94f9e265", + "installdate": "1658414846", + "arch": "x86_64" + }, + "python3-rhn-check": { + "epoch": "0", + "version": "2.8.16", + "release": "13.0.4.module+el8.4.0+20139+94f9e265", + "installdate": "1658414846", + "arch": "x86_64" + }, + "libicu": { + "epoch": "0", + "version": "60.3", + "release": "2.el8_1", + "installdate": "1658414786", + "arch": "x86_64" + }, + "rhn-setup": { + "epoch": "0", + "version": "2.8.16", + "release": "13.0.4.module+el8.4.0+20139+94f9e265", + "installdate": "1658414846", + "arch": "x86_64" + }, + "libbpf": { + "epoch": "0", + "version": "0.4.0", + "release": "3.el8", + "installdate": "1658414786", + "arch": "x86_64" + }, + "nfs-utils": { + "epoch": "1", + "version": "2.3.3", + "release": "51.el8", + "installdate": "1658414847", + "arch": "x86_64" + }, + "time": { + "epoch": "0", + "version": "1.9", + "release": "3.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "yum": { + "epoch": "0", + "version": "4.7.0", + "release": "8.0.1.el8", + "installdate": "1658414847", + "arch": "noarch" + }, + "libselinux-utils": { + "epoch": "0", + "version": "2.9", + "release": "5.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "hardlink": { + "epoch": "1", + "version": "1.3", + "release": "6.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "chrony": { + "epoch": "0", + "version": "4.1", + "release": "1.0.1.el8", + "installdate": "1658414847", + "arch": "x86_64" + }, + "libdaemon": { + "epoch": "0", + "version": "0.14", + "release": "15.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "openssh-clients": { + "epoch": "0", + "version": "8.0p1", + "release": "13.el8", + "installdate": "1658414853", + "arch": "x86_64" + }, + "libini_config": { + "epoch": "0", + "version": "1.3.1", + "release": "39.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "bcache-tools": { + "epoch": "0", + "version": "1.0.8", + "release": "3.101.0.1.el8", + "installdate": "1658414853", + "arch": "x86_64" + }, + "libsigsegv": { + "epoch": "0", + "version": "2.11", + "release": "5.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "nvme-cli": { + "epoch": "0", + "version": "1.16", + "release": "3.el8", + "installdate": "1658414853", + "arch": "x86_64" + }, + "npth": { + "epoch": "0", + "version": "1.5", + "release": "4.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "libmaxminddb": { + "epoch": "0", + "version": "1.2.0", + "release": "10.el8", + "installdate": "1658414787", + "arch": "x86_64" + }, + "lshw": { + "epoch": "0", + "version": "B.02.19.2", + "release": "6.el8", + "installdate": "1658414855", + "arch": "x86_64" + }, + "publicsuffix-list-dafsa": { + "epoch": "0", + "version": "20180723", + "release": "1.el8", + "installdate": "1658414787", + "arch": "noarch" + }, + "lsscsi": { + "epoch": "0", + "version": "0.32", + "release": "3.el8", + "installdate": "1658414856", + "arch": "x86_64" + }, + "glibc-common": { + "epoch": "0", + "version": "2.28", + "release": "189.5.0.1.el8_6", + "installdate": "1658415181", + "arch": "x86_64" + }, + "dnf-data": { + "epoch": "0", + "version": "4.7.0", + "release": "8.0.1.el8", + "installdate": "1658414788", + "arch": "noarch" + }, + "libgcc": { + "epoch": "0", + "version": "8.5.0", + "release": "10.1.0.1.el8_6", + "installdate": "1658415183", + "arch": "x86_64" + }, + "platform-python-pip": { + "epoch": "0", + "version": "9.0.3", + "release": "22.el8", + "installdate": "1658414789", + "arch": "noarch" + }, + "grub2-tools-minimal": { + "epoch": "1", + "version": "2.02", + "release": "123.0.7.el8_6.8", + "installdate": "1658415183", + "arch": "x86_64" + }, + "libssh": { + "epoch": "0", + "version": "0.9.6", + "release": "3.el8", + "installdate": "1658414791", + "arch": "x86_64" + }, + "grub2-tools-extra": { + "epoch": "1", + "version": "2.02", + "release": "123.0.7.el8_6.8", + "installdate": "1658415184", + "arch": "x86_64" + }, + "libkcapi": { + "epoch": "0", + "version": "1.2.0", + "release": "2.0.1.el8", + "installdate": "1658414791", + "arch": "x86_64" + }, + "xz": { + "epoch": "0", + "version": "5.2.4", + "release": "4.el8_6", + "installdate": "1658415184", + "arch": "x86_64" + }, + "dracut": { + "epoch": "0", + "version": "049", + "release": "202.git20220511.0.1.el8_6", + "installdate": "1658415185", + "arch": "x86_64" + }, + "crypto-policies": { + "epoch": "0", + "version": "20211116", + "release": "1.gitae470d6.el8", + "installdate": "1658414791", + "arch": "noarch" + }, + "dracut-squash": { + "epoch": "0", + "version": "049", + "release": "202.git20220511.0.1.el8_6", + "installdate": "1658415193", + "arch": "x86_64" + }, + "cracklib-dicts": { + "epoch": "0", + "version": "2.9.6", + "release": "15.el8", + "installdate": "1658414792", + "arch": "x86_64" + }, + "libsss_certmap": { + "epoch": "0", + "version": "2.6.2", + "release": "4.0.2.el8_6.1", + "installdate": "1658415194", + "arch": "x86_64" + }, + "libnsl2": { + "epoch": "0", + "version": "1.2.0", + "release": "2.20180605git4a062cf.el8", + "installdate": "1658414792", + "arch": "x86_64" + }, + "sssd-nfs-idmap": { + "epoch": "0", + "version": "2.6.2", + "release": "4.0.2.el8_6.1", + "installdate": "1658415194", + "arch": "x86_64" + }, + "elfutils-libs": { + "epoch": "0", + "version": "0.186", + "release": "1.el8", + "installdate": "1658414792", + "arch": "x86_64" + }, + "grub2-pc": { + "epoch": "1", + "version": "2.02", + "release": "123.0.7.el8_6.8", + "installdate": "1658415194", + "arch": "x86_64" + }, + "libcroco": { + "epoch": "0", + "version": "0.6.12", + "release": "4.el8_2.1", + "installdate": "1658414792", + "arch": "x86_64" + }, + "dracut-config-rescue": { + "epoch": "0", + "version": "049", + "release": "202.git20220511.0.1.el8_6", + "installdate": "1658415199", + "arch": "x86_64" + }, + "dbus-libs": { + "epoch": "1", + "version": "1.12.8", + "release": "18.0.1.el8", + "installdate": "1658414792", + "arch": "x86_64" + }, + "NetworkManager-team": { + "epoch": "1", + "version": "1.36.0", + "release": "7.0.1.el8_6", + "installdate": "1658415199", + "arch": "x86_64" + }, + "systemd-libs": { + "epoch": "0", + "version": "239", + "release": "58.0.1.el8", + "installdate": "1658414793", + "arch": "x86_64" + }, + "expat": { + "epoch": "0", + "version": "2.2.5", + "release": "8.0.1.el8_6.2", + "installdate": "1658415200", + "arch": "x86_64" + }, + "ca-certificates": { + "epoch": "0", + "version": "2021.2.50", + "release": "80.0.el8_4", + "installdate": "1658414793", + "arch": "noarch" + }, + "rsync": { + "epoch": "0", + "version": "3.1.3", + "release": "14.el8_6.2", + "installdate": "1658415200", + "arch": "x86_64" + }, + "kmod": { + "epoch": "0", + "version": "25", + "release": "19.0.1.el8", + "installdate": "1658414793", + "arch": "x86_64" + }, + "xfsprogs": { + "epoch": "0", + "version": "5.4.0", + "release": "1.0.1.el8", + "installdate": "1658415200", + "arch": "x86_64" + }, + "dbus-daemon": { + "epoch": "1", + "version": "1.12.8", + "release": "18.0.1.el8", + "installdate": "1658414794", + "arch": "x86_64" + }, + "pam": { + "epoch": "0", + "version": "1.3.1", + "release": "16.el8", + "installdate": "1658414794", + "arch": "x86_64" + }, + "os-prober": { + "epoch": "0", + "version": "1.74", + "release": "9.0.1.el8", + "installdate": "1658414795", + "arch": "x86_64" + }, + "shared-mime-info": { + "epoch": "0", + "version": "1.9", + "release": "3.el8", + "installdate": "1658414795", + "arch": "x86_64" + } + }, + "platform": "oracle", + "platform_family": "rhel", + "platform_version": "8.6", + "root_group": "root", + "shard_seed": 196651031, + "shells": [ + "/bin/sh", + "/bin/bash", + "/usr/bin/sh", + "/usr/bin/bash" + ], + "time": { + "timezone": "GMT" + }, + "uptime": "30 days 15 hours 07 minutes 30 seconds", + "uptime_seconds": 2646450, + "virtualization": { + "systems": { + } + } +} \ No newline at end of file diff --git a/lib/fauxhai/platforms/oracle/9.json b/lib/fauxhai/platforms/oracle/9.json new file mode 100644 index 00000000..89d59cf5 --- /dev/null +++ b/lib/fauxhai/platforms/oracle/9.json @@ -0,0 +1,4352 @@ +{ + "block_device": { + "sda": { + "size": "134217728", + "removable": "0", + "model": "VBOX HARDDISK", + "rev": "1.0", + "state": "running", + "timeout": "30", + "vendor": "ATA", + "queue_depth": "32", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + } + }, + "chef_packages": { + "chef": { + "version": "17.6.18", + "chef_root": "/opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/chef-17.6.18/lib", + "chef_effortless": null + }, + "ohai": { + "version": "17.6.0", + "ohai_root": "/opt/chef-workstation/embedded/lib/ruby/gems/3.0.0/gems/ohai-17.6.0/lib/ohai" + } + }, + "command": { + "ps": "ps -ef" + }, + "counters": { + "network": { + "interfaces": { + "lo": { + "tx": { + "queuelen": "1", + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "carrier": 0, + "collisions": 0 + }, + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0 + } + }, + "eth0": { + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "frame": 0, + "compressed": 0, + "multicast": 0 + }, + "tx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "collisions": 0, + "carrier": 0, + "compressed": 0 + } + } + } + } + }, + "cpu": { + "real": 1, + "total": 1, + "cores": 1 + }, + "current_user": "fauxhai", + "dmi": { + "dmidecode_version": "3.3", + "smbios_version": "2.5", + "structures": { + "count": "10", + "size": "455" + }, + "table_location": "0x000E1000", + "bios": { + "all_records": [ + { + "record_id": "0x0000", + "size": "0", + "application_identifier": "BIOS Information", + "Vendor": "innotek GmbH", + "Version": "VirtualBox", + "Release Date": "12/01/2006", + "Address": "0xE0000", + "Runtime Size": "128 kB", + "ROM Size": "128 kB", + "Characteristics": { + "ACPI is supported": null + } + } + ], + "vendor": "innotek GmbH", + "version": "VirtualBox", + "release_date": "12/01/2006", + "address": "0xE0000", + "runtime_size": "128 kB", + "rom_size": "128 kB" + }, + "system": { + "all_records": [ + { + "record_id": "0x0001", + "size": "1", + "application_identifier": "System Information", + "Manufacturer": "innotek GmbH", + "Product Name": "VirtualBox", + "Version": "1.2", + "Serial Number": "0", + "UUID": "88908aed-cc87-c64c-a32a-e04c86d7a132", + "Wake-up Type": "Power Switch", + "SKU Number": "Not Specified", + "Family": "Virtual Machine" + } + ], + "manufacturer": "innotek GmbH", + "product_name": "VirtualBox", + "version": "1.2", + "serial_number": "0", + "uuid": "88908aed-cc87-c64c-a32a-e04c86d7a132", + "wake_up_type": "Power Switch", + "sku_number": "Not Specified", + "family": "Virtual Machine" + }, + "base_board": { + "all_records": [ + { + "record_id": "0x0008", + "size": "2", + "application_identifier": "Base Board Information", + "Manufacturer": "Oracle Corporation", + "Product Name": "VirtualBox", + "Version": "1.2", + "Serial Number": "0", + "Asset Tag": "Not Specified", + "Features": { + "Board is a hosting board": null + }, + "Location In Chassis": "Not Specified", + "Chassis Handle": "0x0003", + "Type": "Motherboard", + "Contained Object Handles": "0" + } + ], + "manufacturer": "Oracle Corporation", + "product_name": "VirtualBox", + "version": "1.2", + "serial_number": "0", + "asset_tag": "Not Specified", + "location_in_chassis": "Not Specified", + "chassis_handle": "0x0003", + "type": "Motherboard", + "contained_object_handles": "0" + }, + "chassis": { + "all_records": [ + { + "record_id": "0x0003", + "size": "3", + "application_identifier": "Chassis Information", + "Manufacturer": "Oracle Corporation", + "Type": "Other", + "Lock": "Not Present", + "Version": "Not Specified", + "Serial Number": "Not Specified", + "Asset Tag": "Not Specified", + "Boot-up State": "Safe", + "Power Supply State": "Safe", + "Thermal State": "Safe", + "Security Status": "None" + } + ], + "manufacturer": "Oracle Corporation", + "type": "Other", + "lock": "Not Present", + "version": "Not Specified", + "serial_number": "Not Specified", + "asset_tag": "Not Specified", + "boot_up_state": "Safe", + "power_supply_state": "Safe", + "thermal_state": "Safe", + "security_status": "None" + }, + "oem_strings": { + "all_records": [ + { + "record_id": "0x0002", + "size": "11", + "application_identifier": "OEM Strings", + "String 1": "vboxVer_7.0.4", + "String 2": "vboxRev_154605" + } + ], + "string_1": "vboxVer_7.0.4", + "string_2": "vboxRev_154605" + } + }, + "domain": "local", + "filesystem": { + "by_device": { + "devtmpfs": { + "kb_size": "4096", + "kb_used": "0", + "kb_available": "4096", + "percent_used": "0%", + "total_inodes": "1048576", + "inodes_used": "336", + "inodes_available": "1048240", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=4096k", + "nr_inodes=1048576", + "mode=755", + "inode64" + ], + "mounts": [ + "/dev" + ] + }, + "tmpfs": { + "kb_size": "154844", + "kb_used": "0", + "kb_available": "154844", + "percent_used": "0%", + "total_inodes": "38711", + "inodes_used": "14", + "inodes_available": "38697", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=154844k", + "nr_inodes=38711", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ], + "mounts": [ + "/dev/shm", + "/run", + "/run/user/1000" + ] + }, + "/dev/sda1": { + "kb_size": "67075076", + "kb_used": "2629256", + "kb_available": "64445820", + "percent_used": "4%", + "total_inodes": "33553920", + "inodes_used": "75825", + "inodes_available": "33478095", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "fb6dc580-028c-4470-ba93-e2de782363b8", + "mounts": [ + "/" + ] + }, + "vagrant": { + "kb_size": "497899516", + "kb_used": "208840140", + "kb_available": "289059376", + "percent_used": "42%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "mounts": [ + "/vagrant" + ] + }, + "proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/proc" + ] + }, + "sysfs": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys" + ] + }, + "securityfs": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/security" + ] + }, + "devpts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "mounts": [ + "/dev/pts" + ] + }, + "cgroup2": { + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "nsdelegate", + "memory_recursiveprot" + ], + "mounts": [ + "/sys/fs/cgroup" + ] + }, + "pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/fs/pstore" + ] + }, + "bpf": { + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "mounts": [ + "/sys/fs/bpf" + ] + }, + "selinuxfs": { + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/fs/selinux" + ] + }, + "systemd-1": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=36", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=13700" + ], + "mounts": [ + "/proc/sys/fs/binfmt_misc" + ] + }, + "hugetlbfs": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ], + "mounts": [ + "/dev/hugepages" + ] + }, + "mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/dev/mqueue" + ] + }, + "debugfs": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/kernel/debug" + ] + }, + "tracefs": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/kernel/tracing" + ] + }, + "fusectl": { + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/fs/fuse/connections" + ] + }, + "configfs": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/config" + ] + }, + "sunrpc": { + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ], + "mounts": [ + "/var/lib/nfs/rpc_pipefs" + ] + }, + "/dev/sda": { + "mounts": [ + + ] + } + }, + "by_mountpoint": { + "/dev": { + "kb_size": "4096", + "kb_used": "0", + "kb_available": "4096", + "percent_used": "0%", + "total_inodes": "1048576", + "inodes_used": "336", + "inodes_available": "1048240", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=4096k", + "nr_inodes=1048576", + "mode=755", + "inode64" + ], + "devices": [ + "devtmpfs" + ] + }, + "/dev/shm": { + "kb_size": "774236", + "kb_used": "0", + "kb_available": "774236", + "percent_used": "0%", + "total_inodes": "193559", + "inodes_used": "1", + "inodes_available": "193558", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/run": { + "kb_size": "309696", + "kb_used": "8184", + "kb_available": "301512", + "percent_used": "3%", + "total_inodes": "819200", + "inodes_used": "477", + "inodes_available": "818723", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "size=309696k", + "nr_inodes=819200", + "mode=755", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/": { + "kb_size": "67075076", + "kb_used": "2629256", + "kb_available": "64445820", + "percent_used": "4%", + "total_inodes": "33553920", + "inodes_used": "75825", + "inodes_available": "33478095", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "fb6dc580-028c-4470-ba93-e2de782363b8", + "devices": [ + "/dev/sda1" + ] + }, + "/run/user/1000": { + "kb_size": "154844", + "kb_used": "0", + "kb_available": "154844", + "percent_used": "0%", + "total_inodes": "38711", + "inodes_used": "14", + "inodes_available": "38697", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=154844k", + "nr_inodes=38711", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/vagrant": { + "kb_size": "497899516", + "kb_used": "208840140", + "kb_available": "289059376", + "percent_used": "42%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "devices": [ + "vagrant" + ] + }, + "/proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "proc" + ] + }, + "/sys": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "sysfs" + ] + }, + "/sys/kernel/security": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "securityfs" + ] + }, + "/dev/pts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "devices": [ + "devpts" + ] + }, + "/sys/fs/cgroup": { + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "nsdelegate", + "memory_recursiveprot" + ], + "devices": [ + "cgroup2" + ] + }, + "/sys/fs/pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "pstore" + ] + }, + "/sys/fs/bpf": { + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "devices": [ + "bpf" + ] + }, + "/sys/fs/selinux": { + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime" + ], + "devices": [ + "selinuxfs" + ] + }, + "/proc/sys/fs/binfmt_misc": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=36", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=13700" + ], + "devices": [ + "systemd-1" + ] + }, + "/dev/hugepages": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ], + "devices": [ + "hugetlbfs" + ] + }, + "/dev/mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "mqueue" + ] + }, + "/sys/kernel/debug": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "debugfs" + ] + }, + "/sys/kernel/tracing": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "tracefs" + ] + }, + "/sys/fs/fuse/connections": { + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "fusectl" + ] + }, + "/sys/kernel/config": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "configfs" + ] + }, + "/var/lib/nfs/rpc_pipefs": { + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ], + "devices": [ + "sunrpc" + ] + } + }, + "by_pair": { + "devtmpfs,/dev": { + "device": "devtmpfs", + "kb_size": "4096", + "kb_used": "0", + "kb_available": "4096", + "percent_used": "0%", + "mount": "/dev", + "total_inodes": "1048576", + "inodes_used": "336", + "inodes_available": "1048240", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=4096k", + "nr_inodes=1048576", + "mode=755", + "inode64" + ] + }, + "tmpfs,/dev/shm": { + "device": "tmpfs", + "kb_size": "774236", + "kb_used": "0", + "kb_available": "774236", + "percent_used": "0%", + "mount": "/dev/shm", + "total_inodes": "193559", + "inodes_used": "1", + "inodes_available": "193558", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "inode64" + ] + }, + "tmpfs,/run": { + "device": "tmpfs", + "kb_size": "309696", + "kb_used": "8184", + "kb_available": "301512", + "percent_used": "3%", + "mount": "/run", + "total_inodes": "819200", + "inodes_used": "477", + "inodes_available": "818723", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "size=309696k", + "nr_inodes=819200", + "mode=755", + "inode64" + ] + }, + "/dev/sda1,/": { + "device": "/dev/sda1", + "kb_size": "67075076", + "kb_used": "2629256", + "kb_available": "64445820", + "percent_used": "4%", + "mount": "/", + "total_inodes": "33553920", + "inodes_used": "75825", + "inodes_available": "33478095", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "fb6dc580-028c-4470-ba93-e2de782363b8" + }, + "tmpfs,/run/user/1000": { + "device": "tmpfs", + "kb_size": "154844", + "kb_used": "0", + "kb_available": "154844", + "percent_used": "0%", + "mount": "/run/user/1000", + "total_inodes": "38711", + "inodes_used": "14", + "inodes_available": "38697", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=154844k", + "nr_inodes=38711", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ] + }, + "vagrant,/vagrant": { + "device": "vagrant", + "kb_size": "497899516", + "kb_used": "208840140", + "kb_available": "289059376", + "percent_used": "42%", + "mount": "/vagrant", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ] + }, + "proc,/proc": { + "device": "proc", + "mount": "/proc", + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "sysfs,/sys": { + "device": "sysfs", + "mount": "/sys", + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "securityfs,/sys/kernel/security": { + "device": "securityfs", + "mount": "/sys/kernel/security", + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "devpts,/dev/pts": { + "device": "devpts", + "mount": "/dev/pts", + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ] + }, + "cgroup2,/sys/fs/cgroup": { + "device": "cgroup2", + "mount": "/sys/fs/cgroup", + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "nsdelegate", + "memory_recursiveprot" + ] + }, + "pstore,/sys/fs/pstore": { + "device": "pstore", + "mount": "/sys/fs/pstore", + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "bpf,/sys/fs/bpf": { + "device": "bpf", + "mount": "/sys/fs/bpf", + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ] + }, + "selinuxfs,/sys/fs/selinux": { + "device": "selinuxfs", + "mount": "/sys/fs/selinux", + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime" + ] + }, + "systemd-1,/proc/sys/fs/binfmt_misc": { + "device": "systemd-1", + "mount": "/proc/sys/fs/binfmt_misc", + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=36", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=13700" + ] + }, + "hugetlbfs,/dev/hugepages": { + "device": "hugetlbfs", + "mount": "/dev/hugepages", + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ] + }, + "mqueue,/dev/mqueue": { + "device": "mqueue", + "mount": "/dev/mqueue", + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "debugfs,/sys/kernel/debug": { + "device": "debugfs", + "mount": "/sys/kernel/debug", + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "tracefs,/sys/kernel/tracing": { + "device": "tracefs", + "mount": "/sys/kernel/tracing", + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "fusectl,/sys/fs/fuse/connections": { + "device": "fusectl", + "mount": "/sys/fs/fuse/connections", + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "configfs,/sys/kernel/config": { + "device": "configfs", + "mount": "/sys/kernel/config", + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "sunrpc,/var/lib/nfs/rpc_pipefs": { + "device": "sunrpc", + "mount": "/var/lib/nfs/rpc_pipefs", + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ] + }, + "/dev/sda,": { + "device": "/dev/sda" + } + } + }, + "fips": { + "kernel": { + "enabled": true + } + }, + "fqdn": "fauxhai.local", + "hostname": "Fauxhai", + "idle": "30 days 15 hours 07 minutes 30 seconds", + "idletime_seconds": 2646450, + "init_package": "systemd", + "ipaddress": "10.0.0.2", + "kernel": { + "name": "Linux", + "release": "5.15.0-4.70.5.2.el9uek.x86_64", + "version": "#2 SMP Wed Nov 16 05:19:51 PST 2022", + "machine": "x86_64", + "processor": "x86_64", + "os": "GNU/Linux", + "modules": { + "tls": { + "size": "126976", + "refcount": "0" + }, + "vboxsf": { + "size": "98304", + "refcount": "1", + "version": "6.1.40 r154048" + }, + "rfkill": { + "size": "36864", + "refcount": "1" + }, + "intel_rapl_msr": { + "size": "20480", + "refcount": "0" + }, + "intel_rapl_common": { + "size": "32768", + "refcount": "1" + }, + "pcspkr": { + "size": "16384", + "refcount": "0" + }, + "joydev": { + "size": "28672", + "refcount": "0" + }, + "i2c_piix4": { + "size": "36864", + "refcount": "0" + }, + "sunrpc": { + "size": "704512", + "refcount": "1" + }, + "sch_fq_codel": { + "size": "20480", + "refcount": "2" + }, + "fuse": { + "size": "163840", + "refcount": "1" + }, + "xfs": { + "size": "2170880", + "refcount": "1" + }, + "crct10dif_pclmul": { + "size": "16384", + "refcount": "1" + }, + "crc32_pclmul": { + "size": "16384", + "refcount": "0" + }, + "ghash_clmulni_intel": { + "size": "16384", + "refcount": "0" + }, + "sd_mod": { + "size": "69632", + "refcount": "1" + }, + "t10_pi": { + "size": "16384", + "refcount": "1" + }, + "vboxvideo": { + "size": "49152", + "refcount": "1", + "version": "6.1.40 r154048" + }, + "drm_ttm_helper": { + "size": "16384", + "refcount": "1" + }, + "sg": { + "size": "49152", + "refcount": "0", + "version": "3.5.36" + }, + "ata_generic": { + "size": "16384", + "refcount": "0", + "version": "0.2.15" + }, + "ttm": { + "size": "86016", + "refcount": "2" + }, + "drm_kms_helper": { + "size": "339968", + "refcount": "1" + }, + "pata_acpi": { + "size": "16384", + "refcount": "0", + "version": "0.2.3" + }, + "cec": { + "size": "61440", + "refcount": "1" + }, + "ahci": { + "size": "45056", + "refcount": "1", + "version": "3.0" + }, + "libahci": { + "size": "49152", + "refcount": "1" + }, + "ata_piix": { + "size": "40960", + "refcount": "0", + "version": "2.13" + }, + "drm": { + "size": "729088", + "refcount": "5" + }, + "aesni_intel": { + "size": "380928", + "refcount": "0" + }, + "crypto_simd": { + "size": "16384", + "refcount": "1" + }, + "cryptd": { + "size": "28672", + "refcount": "2" + }, + "syscopyarea": { + "size": "16384", + "refcount": "1" + }, + "sysfillrect": { + "size": "16384", + "refcount": "1" + }, + "e1000": { + "size": "180224", + "refcount": "0" + }, + "serio_raw": { + "size": "20480", + "refcount": "0" + }, + "libata": { + "size": "311296", + "refcount": "5", + "version": "3.00" + }, + "sysimgblt": { + "size": "16384", + "refcount": "1" + }, + "vboxguest": { + "size": "442368", + "refcount": "2", + "version": "6.1.40 r154048" + }, + "fb_sys_fops": { + "size": "16384", + "refcount": "1" + }, + "video": { + "size": "61440", + "refcount": "0" + } + } + }, + "keys": { + "ssh": { + "host_dsa_public": "ssh-dss AAAAB3NzaC1kc3MAAACBAJFo9BLAw4WKEs5hgipk5m423FzBsDXCZSMcC9ca/om/1VYzMqImixGe3uICDzNFUWxFoLJTQAOccyzo6MXZiQqwWJDLFi5qOSr6w2XcMyE+zd4wOyMoDiVM5fizmG8K3FzrqvGjwBcHcBdOQnavSijoj38DN25J9zhrid5BY4WlAAAAFQDxXrCyG52XCzn3FV4ej38wJBkomQAAAIBovGPJ4mP2P6BK8lHl0PPbktwQbWlpJ13oz6REJFDVcUi7vV26bX/BjQX+ohzZQzljdz1SpUbPc/8nuA4darYkVh91eBi307EN8IdxRHj2eBgp/ZG4yshIebG3WHrwJD/xUjjZ1MRfyDT1ermVi4LvjjPgWDxLZnPpMaR6S1nzgQAAAIEAj0Vd6DCWslvlsZ8+N53HWsqPi3gnx35JoLPz9Z2epkKIKqmEHav+93G3hdfztVa4I4t3phoPniQchYryF5+RNg8hqxKzjNtrIqUYCeuf2NJrksNsH7OZygPHZpqt4kTuwAGZxjxEGfAI0y8DhkU2ntp2LnzRnWH106BQBCmcXwo= fauxhai.local", + "host_rsa_public": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCtLCeqtqr/HbnORckw1ukdLhpfGoOPFi5/esKEokzTqq1gsgQ2V8emmyjfq1i6XXfRtSBxkdlHv/GWdP5wBTuE2G85MzBkVSQPvmwQN8lX/JMPEEtKXkeOo0o92/PiSmvY4eRsdF0mw40Uvg7jtE3f3fxj497kzh5fKtkrHnF4x9gXCbVdr3FqXJfggR5IJwAxToerbK7x/uRS+7YuZI9Pip3tt14nv9ezwXcuGb/tvjWOZINiFl8izVIFKi7sxfTX09p4NgamxRS7TD2Yd0jT8nEoF9UZTsgXcJ1kDSx7N7NxFfNfP6rCdOGRRz4gUhXtsUjG/XkxPeCwZ7A9VnOD fauxhai.local" + } + }, + "languages": { + "ruby": { + "platform": "x86_64-linux", + "version": "3.0.2", + "release_date": "2021-07-07", + "target": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_vendor": "pc", + "target_os": "linux", + "host": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux", + "host_vendor": "pc", + "bin_dir": "/usr/local/bin", + "ruby_bin": "/usr/local/bin/ruby", + "gem_bin": "/usr/local/bin/gem", + "gems_dir": "/usr/local/gems" + }, + "powershell": null + }, + "lsb": { + }, + "macaddress": "11:11:11:11:11:11", + "machinename": "Fauxhai", + "memory": { + "total": "1048576kB" + }, + "network": { + "interfaces": { + "lo": { + "mtu": "65536", + "flags": [ + "LOOPBACK", + "UP", + "LOWER_UP" + ], + "encapsulation": "Loopback", + "addresses": { + "127.0.0.1": { + "family": "inet", + "prefixlen": "8", + "netmask": "255.0.0.0", + "scope": "Node", + "ip_scope": "LOOPBACK" + }, + "::1": { + "family": "inet6", + "prefixlen": "128", + "scope": "Node", + "tags": [ + + ], + "ip_scope": "LINK LOCAL LOOPBACK" + } + }, + "state": "unknown" + }, + "eth0": { + "type": "eth", + "number": "0", + "mtu": "1500", + "flags": [ + "BROADCAST", + "MULTICAST", + "UP", + "LOWER_UP" + ], + "encapsulation": "Ethernet", + "addresses": { + "11:11:11:11:11:11": { + "family": "lladdr" + }, + "10.0.0.2": { + "family": "inet", + "prefixlen": "24", + "netmask": "255.255.255.0", + "broadcast": "10.0.0.255", + "scope": "Global", + "ip_scope": "RFC1918 PRIVATE" + }, + "fe80::11:1111:1111:1111": { + "family": "inet6", + "prefixlen": "64", + "scope": "Link", + "tags": [ + + ], + "ip_scope": "LINK LOCAL UNICAST" + } + }, + "state": "up", + "arp": { + "10.0.0.1": "fe:ff:ff:ff:ff:ff" + }, + "routes": [ + { + "destination": "default", + "family": "inet", + "via": "10.0.0.1" + }, + { + "destination": "10.0.0.0/24", + "family": "inet", + "scope": "link", + "proto": "kernel", + "src": "10.0.0.2" + }, + { + "destination": "fe80::/64", + "family": "inet6", + "metric": "256", + "proto": "kernel" + } + ], + "ring_params": { + } + } + }, + "default_interface": "eth0", + "default_gateway": "10.0.0.1" + }, + "ohai_time": 1675132835.122758, + "os": "linux", + "os_version": "5.15.0-4.70.5.2.el9uek.x86_64", + "packages": { + "libgcc": { + "epoch": "0", + "version": "11.3.1", + "release": "2.1.0.1.el9", + "installdate": "1670802982", + "arch": "x86_64" + }, + "crypto-policies": { + "epoch": "0", + "version": "20220815", + "release": "1.git0fbe86f.el9", + "installdate": "1670802982", + "arch": "noarch" + }, + "linux-firmware-whence": { + "epoch": "999", + "version": "20220907", + "release": "999.14.git2f2f0181.el9", + "installdate": "1670802983", + "arch": "noarch" + }, + "linux-firmware-core": { + "epoch": "999", + "version": "20220907", + "release": "999.14.git2f2f0181.el9", + "installdate": "1670802984", + "arch": "noarch" + }, + "hwdata": { + "epoch": "0", + "version": "0.348", + "release": "9.5.el9", + "installdate": "1670802984", + "arch": "noarch" + }, + "gawk-all-langpacks": { + "epoch": "0", + "version": "5.1.0", + "release": "6.el9", + "installdate": "1670802984", + "arch": "x86_64" + }, + "redhat-release": { + "epoch": "3", + "version": "9.1", + "release": "1.9.0.1.el9", + "installdate": "1670802984", + "arch": "x86_64" + }, + "quota-nls": { + "epoch": "1", + "version": "4.06", + "release": "6.el9", + "installdate": "1670802984", + "arch": "noarch" + }, + "python3-setuptools-wheel": { + "epoch": "0", + "version": "53.0.0", + "release": "10.el9", + "installdate": "1670802984", + "arch": "noarch" + }, + "publicsuffix-list-dafsa": { + "epoch": "0", + "version": "20210518", + "release": "3.el9", + "installdate": "1670802984", + "arch": "noarch" + }, + "pcre2-syntax": { + "epoch": "0", + "version": "10.40", + "release": "2.0.2.el9", + "installdate": "1670802984", + "arch": "noarch" + }, + "ncurses-base": { + "epoch": "0", + "version": "6.2", + "release": "8.20210508.el9", + "installdate": "1670802984", + "arch": "noarch" + }, + "ncurses-libs": { + "epoch": "0", + "version": "6.2", + "release": "8.20210508.el9", + "installdate": "1670802984", + "arch": "x86_64" + }, + "oraclelinux-release": { + "epoch": "9", + "version": "9.1", + "release": "1.0.6.el9", + "installdate": "1670802984", + "arch": "x86_64" + }, + "setup": { + "epoch": "0", + "version": "2.13.7", + "release": "7.el9", + "installdate": "1670802984", + "arch": "noarch" + }, + "filesystem": { + "epoch": "0", + "version": "3.16", + "release": "2.el9", + "installdate": "1670802984", + "arch": "x86_64" + }, + "basesystem": { + "epoch": "0", + "version": "11", + "release": "13.el9", + "installdate": "1670802984", + "arch": "noarch" + }, + "bash": { + "epoch": "0", + "version": "5.1.8", + "release": "5.el9", + "installdate": "1670802985", + "arch": "x86_64" + }, + "glibc-gconv-extra": { + "epoch": "0", + "version": "2.34", + "release": "40.0.1.el9", + "installdate": "1670802985", + "arch": "x86_64" + }, + "glibc-langpack-en": { + "epoch": "0", + "version": "2.34", + "release": "40.0.1.el9", + "installdate": "1670802986", + "arch": "x86_64" + }, + "glibc-common": { + "epoch": "0", + "version": "2.34", + "release": "40.0.1.el9", + "installdate": "1670802986", + "arch": "x86_64" + }, + "glibc": { + "epoch": "0", + "version": "2.34", + "release": "40.0.1.el9", + "installdate": "1670802986", + "arch": "x86_64" + }, + "zlib": { + "epoch": "0", + "version": "1.2.11", + "release": "34.el9", + "installdate": "1670802986", + "arch": "x86_64" + }, + "xz-libs": { + "epoch": "0", + "version": "5.2.5", + "release": "8.el9_0", + "installdate": "1670802986", + "arch": "x86_64" + }, + "libzstd": { + "epoch": "0", + "version": "1.5.1", + "release": "2.el9", + "installdate": "1670802986", + "arch": "x86_64" + }, + "popt": { + "epoch": "0", + "version": "1.18", + "release": "8.el9", + "installdate": "1670802986", + "arch": "x86_64" + }, + "libcap": { + "epoch": "0", + "version": "2.48", + "release": "8.el9", + "installdate": "1670802986", + "arch": "x86_64" + }, + "libuuid": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1670802986", + "arch": "x86_64" + }, + "bzip2-libs": { + "epoch": "0", + "version": "1.0.8", + "release": "8.el9", + "installdate": "1670802986", + "arch": "x86_64" + }, + "libxcrypt": { + "epoch": "0", + "version": "4.4.18", + "release": "3.el9", + "installdate": "1670802986", + "arch": "x86_64" + }, + "sqlite-libs": { + "epoch": "0", + "version": "3.34.1", + "release": "5.el9", + "installdate": "1670802986", + "arch": "x86_64" + }, + "libcom_err": { + "epoch": "0", + "version": "1.46.5", + "release": "3.el9", + "installdate": "1670802986", + "arch": "x86_64" + }, + "libxml2": { + "epoch": "0", + "version": "2.9.13", + "release": "2.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "elfutils-libelf": { + "epoch": "0", + "version": "0.187", + "release": "5.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "libmnl": { + "epoch": "0", + "version": "1.0.4", + "release": "15.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "libstdc++": { + "epoch": "0", + "version": "11.3.1", + "release": "2.1.0.1.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "libgpg-error": { + "epoch": "0", + "version": "1.42", + "release": "5.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "readline": { + "epoch": "0", + "version": "8.1", + "release": "4.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "alternatives": { + "epoch": "0", + "version": "1.20", + "release": "2.0.3.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "keyutils-libs": { + "epoch": "0", + "version": "1.6.1", + "release": "4.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "libcap-ng": { + "epoch": "0", + "version": "0.8.2", + "release": "7.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "audit-libs": { + "epoch": "0", + "version": "3.0.7", + "release": "103.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "libffi": { + "epoch": "0", + "version": "3.4.2", + "release": "7.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "p11-kit": { + "epoch": "0", + "version": "0.24.1", + "release": "2.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "libunistring": { + "epoch": "0", + "version": "0.9.10", + "release": "15.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "lz4-libs": { + "epoch": "0", + "version": "1.9.3", + "release": "5.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "libidn2": { + "epoch": "0", + "version": "2.3.0", + "release": "7.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "json-c": { + "epoch": "0", + "version": "0.14", + "release": "11.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "libnl3": { + "epoch": "0", + "version": "3.7.0", + "release": "1.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "libsepol": { + "epoch": "0", + "version": "3.4", + "release": "1.1.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "libtalloc": { + "epoch": "0", + "version": "2.3.3", + "release": "1.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "pcre2": { + "epoch": "0", + "version": "10.40", + "release": "2.0.2.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "libselinux": { + "epoch": "0", + "version": "3.4", + "release": "3.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "libsemanage": { + "epoch": "0", + "version": "3.4", + "release": "2.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "file-libs": { + "epoch": "0", + "version": "5.39", + "release": "10.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "gmp": { + "epoch": "1", + "version": "6.2.0", + "release": "10.el9", + "installdate": "1670802987", + "arch": "x86_64" + }, + "libsmartcols": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "findutils": { + "epoch": "1", + "version": "4.8.0", + "release": "5.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "libtevent": { + "epoch": "0", + "version": "0.12.0", + "release": "0.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "libassuan": { + "epoch": "0", + "version": "2.5.5", + "release": "3.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "e2fsprogs-libs": { + "epoch": "0", + "version": "1.46.5", + "release": "3.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "expat": { + "epoch": "0", + "version": "2.4.9", + "release": "1.el9_1", + "installdate": "1670802988", + "arch": "x86_64" + }, + "gdbm-libs": { + "epoch": "1", + "version": "1.19", + "release": "4.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "jansson": { + "epoch": "0", + "version": "2.14", + "release": "1.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "libattr": { + "epoch": "0", + "version": "2.5.1", + "release": "3.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "libacl": { + "epoch": "0", + "version": "2.3.1", + "release": "3.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "sed": { + "epoch": "0", + "version": "4.8", + "release": "9.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "shadow-utils": { + "epoch": "2", + "version": "4.9", + "release": "5.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "libedit": { + "epoch": "0", + "version": "3.1", + "release": "37.20210216cvs.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "libref_array": { + "epoch": "0", + "version": "0.1.5", + "release": "53.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "libtdb": { + "epoch": "0", + "version": "1.4.6", + "release": "1.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "libverto": { + "epoch": "0", + "version": "0.3.2", + "release": "3.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "lzo": { + "epoch": "0", + "version": "2.10", + "release": "7.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "which": { + "epoch": "0", + "version": "2.21", + "release": "28.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "file": { + "epoch": "0", + "version": "5.39", + "release": "10.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "libpsl": { + "epoch": "0", + "version": "0.21.1", + "release": "5.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "libnftnl": { + "epoch": "0", + "version": "1.2.2", + "release": "1.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "fuse-libs": { + "epoch": "0", + "version": "2.9.9", + "release": "15.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "libbasicobjects": { + "epoch": "0", + "version": "0.1.1", + "release": "53.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "libcollection": { + "epoch": "0", + "version": "0.7.0", + "release": "53.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "libdb": { + "epoch": "0", + "version": "5.3.28", + "release": "53.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "libdhash": { + "epoch": "0", + "version": "0.5.0", + "release": "53.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "libgomp": { + "epoch": "0", + "version": "11.3.1", + "release": "2.1.0.1.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "libseccomp": { + "epoch": "0", + "version": "2.5.2", + "release": "2.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "libsigsegv": { + "epoch": "0", + "version": "2.13", + "release": "4.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "libtasn1": { + "epoch": "0", + "version": "4.16.0", + "release": "7.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "p11-kit-trust": { + "epoch": "0", + "version": "0.24.1", + "release": "2.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "libyaml": { + "epoch": "0", + "version": "0.2.5", + "release": "7.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "make": { + "epoch": "1", + "version": "4.3", + "release": "7.el9", + "installdate": "1670802988", + "arch": "x86_64" + }, + "nettle": { + "epoch": "0", + "version": "3.8", + "release": "3.el9_0", + "installdate": "1670802988", + "arch": "x86_64" + }, + "gnutls": { + "epoch": "0", + "version": "3.7.6", + "release": "12.0.1.el9_0", + "installdate": "1670802989", + "arch": "x86_64" + }, + "numactl-libs": { + "epoch": "0", + "version": "2.0.14", + "release": "8.el9", + "installdate": "1670802989", + "arch": "x86_64" + }, + "pcre": { + "epoch": "0", + "version": "8.44", + "release": "3.el9.3", + "installdate": "1670802989", + "arch": "x86_64" + }, + "grep": { + "epoch": "0", + "version": "3.6", + "release": "5.el9", + "installdate": "1670802989", + "arch": "x86_64" + }, + "checkpolicy": { + "epoch": "0", + "version": "3.4", + "release": "1.el9", + "installdate": "1670802989", + "arch": "x86_64" + }, + "xz": { + "epoch": "0", + "version": "5.2.5", + "release": "8.el9_0", + "installdate": "1670802989", + "arch": "x86_64" + }, + "squashfs-tools": { + "epoch": "0", + "version": "4.4", + "release": "8.git1.el9", + "installdate": "1670802989", + "arch": "x86_64" + }, + "libutempter": { + "epoch": "0", + "version": "1.2.1", + "release": "6.el9", + "installdate": "1670802989", + "arch": "x86_64" + }, + "acl": { + "epoch": "0", + "version": "2.3.1", + "release": "3.el9", + "installdate": "1670802989", + "arch": "x86_64" + }, + "gettext-libs": { + "epoch": "0", + "version": "0.21", + "release": "7.el9", + "installdate": "1670802989", + "arch": "x86_64" + }, + "gettext": { + "epoch": "0", + "version": "0.21", + "release": "7.el9", + "installdate": "1670802989", + "arch": "x86_64" + }, + "libcomps": { + "epoch": "0", + "version": "0.1.18", + "release": "1.el9", + "installdate": "1670802989", + "arch": "x86_64" + }, + "mpfr": { + "epoch": "0", + "version": "4.1.0", + "release": "7.el9", + "installdate": "1670802989", + "arch": "x86_64" + }, + "gawk": { + "epoch": "0", + "version": "5.1.0", + "release": "6.el9", + "installdate": "1670802989", + "arch": "x86_64" + }, + "chkconfig": { + "epoch": "0", + "version": "1.20", + "release": "2.0.3.el9", + "installdate": "1670802989", + "arch": "x86_64" + }, + "libselinux-utils": { + "epoch": "0", + "version": "3.4", + "release": "3.el9", + "installdate": "1670802989", + "arch": "x86_64" + }, + "libibverbs": { + "epoch": "0", + "version": "41.0", + "release": "3.el9", + "installdate": "1670802990", + "arch": "x86_64" + }, + "libpcap": { + "epoch": "14", + "version": "1.10.0", + "release": "4.el9", + "installdate": "1670802990", + "arch": "x86_64" + }, + "libnl3-cli": { + "epoch": "0", + "version": "3.7.0", + "release": "1.el9", + "installdate": "1670802990", + "arch": "x86_64" + }, + "libteam": { + "epoch": "0", + "version": "1.31", + "release": "14.el9", + "installdate": "1670802990", + "arch": "x86_64" + }, + "zstd": { + "epoch": "0", + "version": "1.5.1", + "release": "2.el9", + "installdate": "1670802990", + "arch": "x86_64" + }, + "keyutils": { + "epoch": "0", + "version": "1.6.1", + "release": "4.el9", + "installdate": "1670802990", + "arch": "x86_64" + }, + "groff-base": { + "epoch": "0", + "version": "1.22.4", + "release": "10.el9", + "installdate": "1670802990", + "arch": "x86_64" + }, + "snappy": { + "epoch": "0", + "version": "1.1.8", + "release": "8.el9", + "installdate": "1670802990", + "arch": "x86_64" + }, + "ethtool": { + "epoch": "2", + "version": "5.16", + "release": "1.el9", + "installdate": "1670802990", + "arch": "x86_64" + }, + "ipset-libs": { + "epoch": "0", + "version": "7.11", + "release": "6.el9", + "installdate": "1670802990", + "arch": "x86_64" + }, + "ipset": { + "epoch": "0", + "version": "7.11", + "release": "6.el9", + "installdate": "1670802990", + "arch": "x86_64" + }, + "libss": { + "epoch": "0", + "version": "1.46.5", + "release": "3.el9", + "installdate": "1670802990", + "arch": "x86_64" + }, + "libxcrypt-compat": { + "epoch": "0", + "version": "4.4.18", + "release": "3.el9", + "installdate": "1670802990", + "arch": "x86_64" + }, + "pigz": { + "epoch": "0", + "version": "2.5", + "release": "4.el9", + "installdate": "1670802990", + "arch": "x86_64" + }, + "c-ares": { + "epoch": "0", + "version": "1.17.1", + "release": "5.el9", + "installdate": "1670802990", + "arch": "x86_64" + }, + "cpio": { + "epoch": "0", + "version": "2.13", + "release": "16.el9", + "installdate": "1670802991", + "arch": "x86_64" + }, + "diffutils": { + "epoch": "0", + "version": "3.7", + "release": "12.el9", + "installdate": "1670802991", + "arch": "x86_64" + }, + "dmidecode": { + "epoch": "1", + "version": "3.3", + "release": "7.el9", + "installdate": "1670802991", + "arch": "x86_64" + }, + "hostname": { + "epoch": "0", + "version": "3.23", + "release": "6.el9", + "installdate": "1670802991", + "arch": "x86_64" + }, + "inih": { + "epoch": "0", + "version": "49", + "release": "6.el9", + "installdate": "1670802991", + "arch": "x86_64" + }, + "kernel-tools-libs": { + "epoch": "0", + "version": "5.14.0", + "release": "162.6.1.el9_1", + "installdate": "1670802991", + "arch": "x86_64" + }, + "less": { + "epoch": "0", + "version": "590", + "release": "1.el9_0", + "installdate": "1670802991", + "arch": "x86_64" + }, + "libbrotli": { + "epoch": "0", + "version": "1.0.9", + "release": "6.el9", + "installdate": "1670802991", + "arch": "x86_64" + }, + "libcbor": { + "epoch": "0", + "version": "0.7.0", + "release": "5.el9", + "installdate": "1670802991", + "arch": "x86_64" + }, + "libdaemon": { + "epoch": "0", + "version": "0.14", + "release": "23.el9", + "installdate": "1670802991", + "arch": "x86_64" + }, + "libeconf": { + "epoch": "0", + "version": "0.4.1", + "release": "2.el9", + "installdate": "1670802991", + "arch": "x86_64" + }, + "libev": { + "epoch": "0", + "version": "4.33", + "release": "5.el9", + "installdate": "1670802991", + "arch": "x86_64" + }, + "libverto-libev": { + "epoch": "0", + "version": "0.3.2", + "release": "3.el9", + "installdate": "1670802991", + "arch": "x86_64" + }, + "libndp": { + "epoch": "0", + "version": "1.8", + "release": "4.el9", + "installdate": "1670802991", + "arch": "x86_64" + }, + "libnfnetlink": { + "epoch": "0", + "version": "1.0.1", + "release": "21.el9", + "installdate": "1670802991", + "arch": "x86_64" + }, + "libnetfilter_conntrack": { + "epoch": "0", + "version": "1.0.8", + "release": "4.el9", + "installdate": "1670802991", + "arch": "x86_64" + }, + "iptables-libs": { + "epoch": "0", + "version": "1.8.8", + "release": "4.el9", + "installdate": "1670802991", + "arch": "x86_64" + }, + "nftables": { + "epoch": "1", + "version": "1.0.4", + "release": "2.el9", + "installdate": "1670802992", + "arch": "x86_64" + }, + "libnghttp2": { + "epoch": "0", + "version": "1.43.0", + "release": "5.el9", + "installdate": "1670802992", + "arch": "x86_64" + }, + "libpath_utils": { + "epoch": "0", + "version": "0.2.1", + "release": "53.el9", + "installdate": "1670802992", + "arch": "x86_64" + }, + "libini_config": { + "epoch": "0", + "version": "1.3.1", + "release": "53.el9", + "installdate": "1670802992", + "arch": "x86_64" + }, + "libpipeline": { + "epoch": "0", + "version": "1.5.3", + "release": "4.el9", + "installdate": "1670802992", + "arch": "x86_64" + }, + "lmdb-libs": { + "epoch": "0", + "version": "0.9.29", + "release": "3.el9", + "installdate": "1670802992", + "arch": "x86_64" + }, + "npth": { + "epoch": "0", + "version": "1.6", + "release": "8.el9", + "installdate": "1670802992", + "arch": "x86_64" + }, + "pciutils-libs": { + "epoch": "0", + "version": "3.7.0", + "release": "5.el9", + "installdate": "1670802992", + "arch": "x86_64" + }, + "psmisc": { + "epoch": "0", + "version": "23.4", + "release": "3.el9", + "installdate": "1670802992", + "arch": "x86_64" + }, + "iproute": { + "epoch": "0", + "version": "5.18.0", + "release": "1.el9", + "installdate": "1670802992", + "arch": "x86_64" + }, + "sg3_utils-libs": { + "epoch": "0", + "version": "1.47", + "release": "9.el9", + "installdate": "1670802992", + "arch": "x86_64" + }, + "slang": { + "epoch": "0", + "version": "2.3.2", + "release": "11.el9", + "installdate": "1670802992", + "arch": "x86_64" + }, + "newt": { + "epoch": "0", + "version": "0.52.21", + "release": "11.el9", + "installdate": "1670802992", + "arch": "x86_64" + }, + "userspace-rcu": { + "epoch": "0", + "version": "0.12.1", + "release": "6.el9", + "installdate": "1670802992", + "arch": "x86_64" + }, + "libestr": { + "epoch": "0", + "version": "0.1.11", + "release": "4.el9", + "installdate": "1670802992", + "arch": "x86_64" + }, + "libfastjson": { + "epoch": "0", + "version": "0.99.9", + "release": "3.el9", + "installdate": "1670802992", + "arch": "x86_64" + }, + "m4": { + "epoch": "0", + "version": "1.4.19", + "release": "1.el9", + "installdate": "1670802992", + "arch": "x86_64" + }, + "systemd-rpm-macros": { + "epoch": "0", + "version": "250", + "release": "12.0.1.el9_1", + "installdate": "1670802992", + "arch": "noarch" + }, + "libssh-config": { + "epoch": "0", + "version": "0.9.6", + "release": "3.el9", + "installdate": "1670802992", + "arch": "noarch" + }, + "libreport-filesystem": { + "epoch": "0", + "version": "2.15.2", + "release": "6.0.3.el9", + "installdate": "1670802992", + "arch": "noarch" + }, + "dnf-data": { + "epoch": "0", + "version": "4.12.0", + "release": "4.0.1.el9", + "installdate": "1670802992", + "arch": "noarch" + }, + "kbd-misc": { + "epoch": "0", + "version": "2.4.0", + "release": "8.el9", + "installdate": "1670802994", + "arch": "noarch" + }, + "fonts-filesystem": { + "epoch": "1", + "version": "2.0.5", + "release": "7.el9.1", + "installdate": "1670802994", + "arch": "noarch" + }, + "dejavu-sans-fonts": { + "epoch": "0", + "version": "2.37", + "release": "18.el9", + "installdate": "1670802994", + "arch": "noarch" + }, + "langpacks-core-font-en": { + "epoch": "0", + "version": "3.0", + "release": "16.el9", + "installdate": "1670802994", + "arch": "noarch" + }, + "langpacks-core-en": { + "epoch": "0", + "version": "3.0", + "release": "16.el9", + "installdate": "1670802994", + "arch": "noarch" + }, + "firewalld-filesystem": { + "epoch": "0", + "version": "1.1.1", + "release": "3.0.1.el9", + "installdate": "1670802994", + "arch": "noarch" + }, + "coreutils-common": { + "epoch": "0", + "version": "8.32", + "release": "32.0.1.el9", + "installdate": "1670802994", + "arch": "x86_64" + }, + "openssl-pkcs11": { + "epoch": "0", + "version": "0.4.11", + "release": "7.el9", + "installdate": "1670802994", + "arch": "x86_64" + }, + "openssl-libs": { + "epoch": "1", + "version": "3.0.1", + "release": "43.0.1.el9_0", + "installdate": "1670802994", + "arch": "x86_64" + }, + "coreutils": { + "epoch": "0", + "version": "8.32", + "release": "32.0.1.el9", + "installdate": "1670802995", + "arch": "x86_64" + }, + "ca-certificates": { + "epoch": "0", + "version": "2022.2.54", + "release": "90.2.el9_0", + "installdate": "1670802995", + "arch": "noarch" + }, + "systemd-libs": { + "epoch": "0", + "version": "250", + "release": "12.0.1.el9_1", + "installdate": "1670802998", + "arch": "x86_64" + }, + "libblkid": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1670802998", + "arch": "x86_64" + }, + "libmount": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1670802998", + "arch": "x86_64" + }, + "glib2": { + "epoch": "0", + "version": "2.68.4", + "release": "5.el9", + "installdate": "1670802999", + "arch": "x86_64" + }, + "dbus-libs": { + "epoch": "1", + "version": "1.12.20", + "release": "6.0.1.el9", + "installdate": "1670802999", + "arch": "x86_64" + }, + "kmod": { + "epoch": "0", + "version": "28", + "release": "7.0.1.el9", + "installdate": "1670802999", + "arch": "x86_64" + }, + "kmod-libs": { + "epoch": "0", + "version": "28", + "release": "7.0.1.el9", + "installdate": "1670802999", + "arch": "x86_64" + }, + "libtirpc": { + "epoch": "0", + "version": "1.3.3", + "release": "0.el9", + "installdate": "1670802999", + "arch": "x86_64" + }, + "gzip": { + "epoch": "0", + "version": "1.12", + "release": "1.el9", + "installdate": "1670802999", + "arch": "x86_64" + }, + "cracklib": { + "epoch": "0", + "version": "2.9.6", + "release": "27.el9", + "installdate": "1670802999", + "arch": "x86_64" + }, + "NetworkManager-libnm": { + "epoch": "1", + "version": "1.40.0", + "release": "1.0.2.el9", + "installdate": "1670802999", + "arch": "x86_64" + }, + "util-linux-core": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1670802999", + "arch": "x86_64" + }, + "libfdisk": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1670802999", + "arch": "x86_64" + }, + "linux-firmware": { + "epoch": "999", + "version": "20220907", + "release": "999.14.git2f2f0181.el9", + "installdate": "1670803012", + "arch": "noarch" + }, + "libevent": { + "epoch": "0", + "version": "2.1.12", + "release": "6.el9", + "installdate": "1670803012", + "arch": "x86_64" + }, + "cracklib-dicts": { + "epoch": "0", + "version": "2.9.6", + "release": "27.el9", + "installdate": "1670803012", + "arch": "x86_64" + }, + "quota": { + "epoch": "1", + "version": "4.06", + "release": "6.el9", + "installdate": "1670803012", + "arch": "x86_64" + }, + "gobject-introspection": { + "epoch": "0", + "version": "1.68.0", + "release": "10.el9", + "installdate": "1670803012", + "arch": "x86_64" + }, + "libgudev": { + "epoch": "0", + "version": "237", + "release": "1.el9", + "installdate": "1670803012", + "arch": "x86_64" + }, + "libsecret": { + "epoch": "0", + "version": "0.20.4", + "release": "4.el9", + "installdate": "1670803012", + "arch": "x86_64" + }, + "pinentry": { + "epoch": "0", + "version": "1.1.1", + "release": "8.el9", + "installdate": "1670803012", + "arch": "x86_64" + }, + "cyrus-sasl-lib": { + "epoch": "0", + "version": "2.1.27", + "release": "20.el9", + "installdate": "1670803012", + "arch": "x86_64" + }, + "openldap": { + "epoch": "0", + "version": "2.6.2", + "release": "3.el9", + "installdate": "1670803013", + "arch": "x86_64" + }, + "gnupg2": { + "epoch": "0", + "version": "2.3.3", + "release": "2.el9_0", + "installdate": "1670803013", + "arch": "x86_64" + }, + "gpgme": { + "epoch": "0", + "version": "1.15.1", + "release": "6.el9", + "installdate": "1670803013", + "arch": "x86_64" + }, + "libldb": { + "epoch": "0", + "version": "2.5.2", + "release": "1.el9", + "installdate": "1670803013", + "arch": "x86_64" + }, + "libnfsidmap": { + "epoch": "1", + "version": "2.5.4", + "release": "15.el9", + "installdate": "1670803013", + "arch": "x86_64" + }, + "openldap-compat": { + "epoch": "0", + "version": "2.6.2", + "release": "3.el9", + "installdate": "1670803013", + "arch": "x86_64" + }, + "libssh": { + "epoch": "0", + "version": "0.9.6", + "release": "3.el9", + "installdate": "1670803013", + "arch": "x86_64" + }, + "libcurl": { + "epoch": "0", + "version": "7.76.1", + "release": "19.el9", + "installdate": "1670803013", + "arch": "x86_64" + }, + "librepo": { + "epoch": "0", + "version": "1.14.2", + "release": "3.el9", + "installdate": "1670803013", + "arch": "x86_64" + }, + "curl": { + "epoch": "0", + "version": "7.76.1", + "release": "19.el9", + "installdate": "1670803013", + "arch": "x86_64" + }, + "tpm2-tss": { + "epoch": "0", + "version": "3.0.3", + "release": "8.el9", + "installdate": "1670803014", + "arch": "x86_64" + }, + "ima-evm-utils": { + "epoch": "0", + "version": "1.4", + "release": "4.el9", + "installdate": "1670803014", + "arch": "x86_64" + }, + "procps-ng": { + "epoch": "0", + "version": "3.3.17", + "release": "8.el9", + "installdate": "1670803014", + "arch": "x86_64" + }, + "python3-pip-wheel": { + "epoch": "0", + "version": "21.2.3", + "release": "6.el9", + "installdate": "1670803014", + "arch": "noarch" + }, + "python3-dbus": { + "epoch": "0", + "version": "1.2.18", + "release": "2.el9", + "installdate": "1670803020", + "arch": "x86_64" + }, + "python3-six": { + "epoch": "0", + "version": "1.15.0", + "release": "9.0.1.el9", + "installdate": "1670803020", + "arch": "noarch" + }, + "python3-gobject-base": { + "epoch": "0", + "version": "3.40.1", + "release": "6.el9", + "installdate": "1670803020", + "arch": "x86_64" + }, + "python3-gobject-base-noarch": { + "epoch": "0", + "version": "3.40.1", + "release": "6.el9", + "installdate": "1670803020", + "arch": "noarch" + }, + "python3-libselinux": { + "epoch": "0", + "version": "3.4", + "release": "3.el9", + "installdate": "1670803020", + "arch": "x86_64" + }, + "python3-newt": { + "epoch": "0", + "version": "0.52.21", + "release": "11.el9", + "installdate": "1670803020", + "arch": "x86_64" + }, + "python3-libsemanage": { + "epoch": "0", + "version": "3.4", + "release": "2.el9", + "installdate": "1670803020", + "arch": "x86_64" + }, + "python3-dateutil": { + "epoch": "1", + "version": "2.8.1", + "release": "6.el9", + "installdate": "1670803020", + "arch": "noarch" + }, + "python3-libcomps": { + "epoch": "0", + "version": "0.1.18", + "release": "1.el9", + "installdate": "1670803020", + "arch": "x86_64" + }, + "python3-librepo": { + "epoch": "0", + "version": "1.14.2", + "release": "3.el9", + "installdate": "1670803020", + "arch": "x86_64" + }, + "python3-gpg": { + "epoch": "0", + "version": "1.15.1", + "release": "6.el9", + "installdate": "1670803020", + "arch": "x86_64" + }, + "python3-kmod": { + "epoch": "0", + "version": "0.9", + "release": "32.el9", + "installdate": "1670803020", + "arch": "x86_64" + }, + "python3-libxml2": { + "epoch": "0", + "version": "2.9.13", + "release": "2.el9", + "installdate": "1670803020", + "arch": "x86_64" + }, + "python3-dmidecode": { + "epoch": "0", + "version": "3.12.2", + "release": "27.el9", + "installdate": "1670803020", + "arch": "x86_64" + }, + "python3-nftables": { + "epoch": "1", + "version": "1.0.4", + "release": "2.el9", + "installdate": "1670803020", + "arch": "x86_64" + }, + "python3-firewall": { + "epoch": "0", + "version": "1.1.1", + "release": "3.0.1.el9", + "installdate": "1670803021", + "arch": "noarch" + }, + "python3-pyparsing": { + "epoch": "0", + "version": "2.4.7", + "release": "9.el9", + "installdate": "1670803021", + "arch": "noarch" + }, + "python3-pyyaml": { + "epoch": "0", + "version": "5.4.1", + "release": "6.0.1.el9", + "installdate": "1670803021", + "arch": "x86_64" + }, + "python3-setuptools": { + "epoch": "0", + "version": "53.0.0", + "release": "10.el9", + "installdate": "1670803022", + "arch": "noarch" + }, + "python3-setools": { + "epoch": "0", + "version": "4.4.0", + "release": "5.el9", + "installdate": "1670803022", + "arch": "x86_64" + }, + "python3-urwid": { + "epoch": "0", + "version": "2.1.2", + "release": "4.el9", + "installdate": "1670803023", + "arch": "x86_64" + }, + "python3-configshell": { + "epoch": "1", + "version": "1.1.28", + "release": "7.0.1.el9", + "installdate": "1670803023", + "arch": "noarch" + }, + "teamd": { + "epoch": "0", + "version": "1.31", + "release": "14.el9", + "installdate": "1670803023", + "arch": "x86_64" + }, + "libcap-ng-python3": { + "epoch": "0", + "version": "0.8.2", + "release": "7.el9", + "installdate": "1670803023", + "arch": "x86_64" + }, + "python3-audit": { + "epoch": "0", + "version": "3.0.7", + "release": "103.el9", + "installdate": "1670803023", + "arch": "x86_64" + }, + "python3-hwdata": { + "epoch": "0", + "version": "2.3.6", + "release": "3.el9", + "installdate": "1670803023", + "arch": "noarch" + }, + "python3-netifaces": { + "epoch": "0", + "version": "0.10.6", + "release": "15.el9", + "installdate": "1670803023", + "arch": "x86_64" + }, + "python3-ply": { + "epoch": "0", + "version": "3.11", + "release": "14.0.1.el9", + "installdate": "1670803023", + "arch": "noarch" + }, + "python3-pycparser": { + "epoch": "0", + "version": "2.20", + "release": "6.0.1.el9", + "installdate": "1670803023", + "arch": "noarch" + }, + "python3-cffi": { + "epoch": "0", + "version": "1.14.5", + "release": "5.0.1.el9", + "installdate": "1670803023", + "arch": "x86_64" + }, + "python3-cryptography": { + "epoch": "0", + "version": "36.0.1", + "release": "2.el9", + "installdate": "1670803024", + "arch": "x86_64" + }, + "python3-pyOpenSSL": { + "epoch": "0", + "version": "19.0.0", + "release": "1.0.1.el9", + "installdate": "1670803024", + "arch": "noarch" + }, + "python3-rhnlib": { + "epoch": "0", + "version": "2.8.6", + "release": "8.0.1.el9", + "installdate": "1670803024", + "arch": "noarch" + }, + "iptables-nft": { + "epoch": "0", + "version": "1.8.8", + "release": "4.el9", + "installdate": "1670803024", + "arch": "x86_64" + }, + "openssl": { + "epoch": "1", + "version": "3.0.1", + "release": "43.0.1.el9_0", + "installdate": "1670803024", + "arch": "x86_64" + }, + "libpwquality": { + "epoch": "0", + "version": "1.4.4", + "release": "8.el9", + "installdate": "1670803024", + "arch": "x86_64" + }, + "pam": { + "epoch": "0", + "version": "1.5.1", + "release": "12.el9", + "installdate": "1670803024", + "arch": "x86_64" + }, + "util-linux": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1670803025", + "arch": "x86_64" + }, + "grub2-common": { + "epoch": "1", + "version": "2.06", + "release": "46.0.2.el9", + "installdate": "1670803025", + "arch": "noarch" + }, + "openssh": { + "epoch": "0", + "version": "8.7p1", + "release": "24.el9_1", + "installdate": "1670803025", + "arch": "x86_64" + }, + "libuser": { + "epoch": "0", + "version": "0.63", + "release": "11.el9", + "installdate": "1670803025", + "arch": "x86_64" + }, + "passwd": { + "epoch": "0", + "version": "0.80", + "release": "12.el9", + "installdate": "1670803025", + "arch": "x86_64" + }, + "usermode": { + "epoch": "0", + "version": "1.114", + "release": "4.el9", + "installdate": "1670803025", + "arch": "x86_64" + }, + "grub2-pc-modules": { + "epoch": "1", + "version": "2.06", + "release": "46.0.2.el9", + "installdate": "1670803026", + "arch": "noarch" + }, + "device-mapper": { + "epoch": "9", + "version": "1.02.185", + "release": "3.el9", + "installdate": "1670803026", + "arch": "x86_64" + }, + "device-mapper-libs": { + "epoch": "9", + "version": "1.02.185", + "release": "3.el9", + "installdate": "1670803026", + "arch": "x86_64" + }, + "cryptsetup-libs": { + "epoch": "0", + "version": "2.4.3", + "release": "5.el9", + "installdate": "1670803026", + "arch": "x86_64" + }, + "dbus": { + "epoch": "1", + "version": "1.12.20", + "release": "6.0.1.el9", + "installdate": "1670803026", + "arch": "x86_64" + }, + "systemd-pam": { + "epoch": "0", + "version": "250", + "release": "12.0.1.el9_1", + "installdate": "1670803026", + "arch": "x86_64" + }, + "systemd": { + "epoch": "0", + "version": "250", + "release": "12.0.1.el9_1", + "installdate": "1670803028", + "arch": "x86_64" + }, + "dbus-common": { + "epoch": "1", + "version": "1.12.20", + "release": "6.0.1.el9", + "installdate": "1670803028", + "arch": "noarch" + }, + "dbus-broker": { + "epoch": "0", + "version": "28", + "release": "7.el9", + "installdate": "1670803029", + "arch": "x86_64" + }, + "grub2-tools-minimal": { + "epoch": "1", + "version": "2.06", + "release": "46.0.2.el9", + "installdate": "1670803029", + "arch": "x86_64" + }, + "cronie-anacron": { + "epoch": "0", + "version": "1.5.7", + "release": "8.el9", + "installdate": "1670803029", + "arch": "x86_64" + }, + "cronie": { + "epoch": "0", + "version": "1.5.7", + "release": "8.el9", + "installdate": "1670803029", + "arch": "x86_64" + }, + "crontabs": { + "epoch": "0", + "version": "1.11", + "release": "27.20190603git.el9_0", + "installdate": "1670803029", + "arch": "noarch" + }, + "authselect-libs": { + "epoch": "0", + "version": "1.2.5", + "release": "1.el9", + "installdate": "1670803029", + "arch": "x86_64" + }, + "elfutils-default-yama-scope": { + "epoch": "0", + "version": "0.187", + "release": "5.el9", + "installdate": "1670803029", + "arch": "noarch" + }, + "elfutils-libs": { + "epoch": "0", + "version": "0.187", + "release": "5.el9", + "installdate": "1670803029", + "arch": "x86_64" + }, + "elfutils-debuginfod-client": { + "epoch": "0", + "version": "0.187", + "release": "5.el9", + "installdate": "1670803029", + "arch": "x86_64" + }, + "gssproxy": { + "epoch": "0", + "version": "0.8.4", + "release": "4.el9", + "installdate": "1670803029", + "arch": "x86_64" + }, + "initscripts-service": { + "epoch": "0", + "version": "10.11.5", + "release": "1.el9", + "installdate": "1670803029", + "arch": "noarch" + }, + "iputils": { + "epoch": "0", + "version": "20210202", + "release": "7.el9", + "installdate": "1670803029", + "arch": "x86_64" + }, + "libkcapi": { + "epoch": "0", + "version": "1.3.1", + "release": "3.0.1.el9", + "installdate": "1670803029", + "arch": "x86_64" + }, + "libkcapi-hmaccalc": { + "epoch": "0", + "version": "1.3.1", + "release": "3.0.1.el9", + "installdate": "1670803029", + "arch": "x86_64" + }, + "logrotate": { + "epoch": "0", + "version": "3.18.0", + "release": "7.el9", + "installdate": "1670803029", + "arch": "x86_64" + }, + "rsyslog-logrotate": { + "epoch": "0", + "version": "8.2102.0", + "release": "105.el9", + "installdate": "1670803030", + "arch": "x86_64" + }, + "rsyslog": { + "epoch": "0", + "version": "8.2102.0", + "release": "105.el9", + "installdate": "1670803030", + "arch": "x86_64" + }, + "virt-what": { + "epoch": "0", + "version": "1.25", + "release": "1.el9", + "installdate": "1670803030", + "arch": "x86_64" + }, + "kbd": { + "epoch": "0", + "version": "2.4.0", + "release": "8.el9", + "installdate": "1670803030", + "arch": "x86_64" + }, + "systemd-udev": { + "epoch": "0", + "version": "250", + "release": "12.0.1.el9_1", + "installdate": "1670803031", + "arch": "x86_64" + }, + "dracut": { + "epoch": "0", + "version": "057", + "release": "13.git20220816.0.2.el9", + "installdate": "1670803033", + "arch": "x86_64" + }, + "NetworkManager": { + "epoch": "1", + "version": "1.40.0", + "release": "1.0.2.el9", + "installdate": "1670803033", + "arch": "x86_64" + }, + "kernel-core": { + "epoch": "0", + "version": "5.14.0", + "release": "162.6.1.el9_1", + "installdate": "1670803040", + "arch": "x86_64" + }, + "kernel-modules": { + "epoch": "0", + "version": "5.14.0", + "release": "162.6.1.el9_1", + "installdate": "1670803044", + "arch": "x86_64" + }, + "dracut-network": { + "epoch": "0", + "version": "057", + "release": "13.git20220816.0.2.el9", + "installdate": "1670803066", + "arch": "x86_64" + }, + "dracut-squash": { + "epoch": "0", + "version": "057", + "release": "13.git20220816.0.2.el9", + "installdate": "1670803066", + "arch": "x86_64" + }, + "libfido2": { + "epoch": "0", + "version": "1.6.0", + "release": "7.el9", + "installdate": "1670803066", + "arch": "x86_64" + }, + "os-prober": { + "epoch": "0", + "version": "1.77", + "release": "9.0.1.el9", + "installdate": "1670803066", + "arch": "x86_64" + }, + "libarchive": { + "epoch": "0", + "version": "3.5.3", + "release": "3.el9", + "installdate": "1670803066", + "arch": "x86_64" + }, + "policycoreutils": { + "epoch": "0", + "version": "3.4", + "release": "4.el9", + "installdate": "1670803067", + "arch": "x86_64" + }, + "selinux-policy": { + "epoch": "0", + "version": "34.1.43", + "release": "1.0.1.el9", + "installdate": "1670803067", + "arch": "noarch" + }, + "selinux-policy-targeted": { + "epoch": "0", + "version": "34.1.43", + "release": "1.0.1.el9", + "installdate": "1670803069", + "arch": "noarch" + }, + "grub2-tools": { + "epoch": "1", + "version": "2.06", + "release": "46.0.2.el9", + "installdate": "1670803069", + "arch": "x86_64" + }, + "grubby": { + "epoch": "0", + "version": "8.40", + "release": "61.0.2.el9", + "installdate": "1670803069", + "arch": "x86_64" + }, + "libmodulemd": { + "epoch": "0", + "version": "2.13.0", + "release": "2.el9", + "installdate": "1670803069", + "arch": "x86_64" + }, + "libsolv": { + "epoch": "0", + "version": "0.7.22", + "release": "1.el9", + "installdate": "1670803069", + "arch": "x86_64" + }, + "libdnf": { + "epoch": "0", + "version": "0.67.0", + "release": "3.0.1.el9", + "installdate": "1670803070", + "arch": "x86_64" + }, + "python3-libdnf": { + "epoch": "0", + "version": "0.67.0", + "release": "3.0.1.el9", + "installdate": "1670803072", + "arch": "x86_64" + }, + "python3-hawkey": { + "epoch": "0", + "version": "0.67.0", + "release": "3.0.1.el9", + "installdate": "1670803073", + "arch": "x86_64" + }, + "rpcbind": { + "epoch": "0", + "version": "1.2.6", + "release": "5.el9", + "installdate": "1670803099", + "arch": "x86_64" + }, + "python3-policycoreutils": { + "epoch": "0", + "version": "3.4", + "release": "4.el9", + "installdate": "1670803099", + "arch": "noarch" + }, + "policycoreutils-python-utils": { + "epoch": "0", + "version": "3.4", + "release": "4.el9", + "installdate": "1670803099", + "arch": "noarch" + }, + "python3-dnf": { + "epoch": "0", + "version": "4.12.0", + "release": "4.0.1.el9", + "installdate": "1670803100", + "arch": "noarch" + }, + "dnf": { + "epoch": "0", + "version": "4.12.0", + "release": "4.0.1.el9", + "installdate": "1670803100", + "arch": "noarch" + }, + "rhn-client-tools": { + "epoch": "0", + "version": "2.8.16", + "release": "13.0.7.el9_0", + "installdate": "1670803100", + "arch": "x86_64" + }, + "python3-rhn-client-tools": { + "epoch": "0", + "version": "2.8.16", + "release": "13.0.7.el9_0", + "installdate": "1670803100", + "arch": "x86_64" + }, + "policycoreutils-devel": { + "epoch": "0", + "version": "3.4", + "release": "4.el9", + "installdate": "1670803100", + "arch": "x86_64" + }, + "selinux-policy-devel": { + "epoch": "0", + "version": "34.1.43", + "release": "1.0.1.el9", + "installdate": "1670803102", + "arch": "noarch" + }, + "python3-dnf-plugins-core": { + "epoch": "0", + "version": "4.1.0", + "release": "3.0.1.el9", + "installdate": "1670803121", + "arch": "noarch" + }, + "dnf-plugins-core": { + "epoch": "0", + "version": "4.1.0", + "release": "3.0.1.el9", + "installdate": "1670803121", + "arch": "noarch" + }, + "dnf-plugin-spacewalk": { + "epoch": "0", + "version": "2.8.5", + "release": "11.0.3.el9", + "installdate": "1670803121", + "arch": "noarch" + }, + "python3-dnf-plugin-ulninfo": { + "epoch": "0", + "version": "0.3", + "release": "3.el9", + "installdate": "1670803121", + "arch": "noarch" + }, + "python3-dnf-plugin-spacewalk": { + "epoch": "0", + "version": "2.8.5", + "release": "11.0.3.el9", + "installdate": "1670803121", + "arch": "noarch" + }, + "python3-rhn-check": { + "epoch": "0", + "version": "2.8.16", + "release": "13.0.7.el9_0", + "installdate": "1670803121", + "arch": "x86_64" + }, + "rhn-check": { + "epoch": "0", + "version": "2.8.16", + "release": "13.0.7.el9_0", + "installdate": "1670803121", + "arch": "x86_64" + }, + "rhnsd": { + "epoch": "0", + "version": "5.0.35", + "release": "3.0.1.el9", + "installdate": "1670803121", + "arch": "x86_64" + }, + "python3-rhn-setup": { + "epoch": "0", + "version": "2.8.16", + "release": "13.0.7.el9_0", + "installdate": "1670803121", + "arch": "x86_64" + }, + "rhn-setup": { + "epoch": "0", + "version": "2.8.16", + "release": "13.0.7.el9_0", + "installdate": "1670803121", + "arch": "x86_64" + }, + "libnvme": { + "epoch": "0", + "version": "1.0", + "release": "5.el9", + "installdate": "1670803121", + "arch": "x86_64" + }, + "nvme-cli": { + "epoch": "0", + "version": "2.0", + "release": "4.el9", + "installdate": "1670803122", + "arch": "x86_64" + }, + "yum-utils": { + "epoch": "0", + "version": "4.1.0", + "release": "3.0.1.el9", + "installdate": "1670803122", + "arch": "noarch" + }, + "yum": { + "epoch": "0", + "version": "4.12.0", + "release": "4.0.1.el9", + "installdate": "1670803122", + "arch": "noarch" + }, + "nfs-utils": { + "epoch": "1", + "version": "2.5.4", + "release": "15.el9", + "installdate": "1670803123", + "arch": "x86_64" + }, + "crypto-policies-scripts": { + "epoch": "0", + "version": "20220815", + "release": "1.git0fbe86f.el9", + "installdate": "1670803123", + "arch": "noarch" + }, + "kexec-tools": { + "epoch": "0", + "version": "2.0.24", + "release": "5.0.1.el9", + "installdate": "1670803123", + "arch": "x86_64" + }, + "grub2-pc": { + "epoch": "1", + "version": "2.06", + "release": "46.0.2.el9", + "installdate": "1670803123", + "arch": "x86_64" + }, + "openssh-clients": { + "epoch": "0", + "version": "8.7p1", + "release": "24.el9_1", + "installdate": "1670803123", + "arch": "x86_64" + }, + "kernel": { + "epoch": "0", + "version": "5.14.0", + "release": "162.6.1.el9_1", + "installdate": "1670803123", + "arch": "x86_64" + }, + "NetworkManager-team": { + "epoch": "1", + "version": "1.40.0", + "release": "1.0.2.el9", + "installdate": "1670803123", + "arch": "x86_64" + }, + "NetworkManager-tui": { + "epoch": "1", + "version": "1.40.0", + "release": "1.0.2.el9", + "installdate": "1670803123", + "arch": "x86_64" + }, + "bcache-tools": { + "epoch": "0", + "version": "1.0.8", + "release": "3.101.0.1.el9", + "installdate": "1670803124", + "arch": "x86_64" + }, + "dracut-config-rescue": { + "epoch": "0", + "version": "057", + "release": "13.git20220816.0.2.el9", + "installdate": "1670803124", + "arch": "x86_64" + }, + "audit": { + "epoch": "0", + "version": "3.0.7", + "release": "103.el9", + "installdate": "1670803124", + "arch": "x86_64" + }, + "authselect": { + "epoch": "0", + "version": "1.2.5", + "release": "1.el9", + "installdate": "1670803124", + "arch": "x86_64" + }, + "chrony": { + "epoch": "0", + "version": "4.2", + "release": "1.0.1.el9", + "installdate": "1670803124", + "arch": "x86_64" + }, + "firewalld": { + "epoch": "0", + "version": "1.1.1", + "release": "3.0.1.el9", + "installdate": "1670803125", + "arch": "noarch" + }, + "net-tools": { + "epoch": "0", + "version": "2.0", + "release": "0.62.20160912git.el9", + "installdate": "1670803125", + "arch": "x86_64" + }, + "nvmetcli": { + "epoch": "0", + "version": "0.7", + "release": "3.0.1.el9", + "installdate": "1670803125", + "arch": "noarch" + }, + "openssh-server": { + "epoch": "0", + "version": "8.7p1", + "release": "24.el9_1", + "installdate": "1670803125", + "arch": "x86_64" + }, + "parted": { + "epoch": "0", + "version": "3.5", + "release": "2.el9", + "installdate": "1670803125", + "arch": "x86_64" + }, + "sudo": { + "epoch": "0", + "version": "1.9.5p2", + "release": "7.el9", + "installdate": "1670803126", + "arch": "x86_64" + }, + "rhnlib": { + "epoch": "0", + "version": "2.8.6", + "release": "8.0.1.el9", + "installdate": "1670803126", + "arch": "noarch" + }, + "oraclelinux-release-el9": { + "epoch": "0", + "version": "1.0", + "release": "8.el9", + "installdate": "1670803126", + "arch": "x86_64" + }, + "man-db": { + "epoch": "0", + "version": "2.9.3", + "release": "6.el9", + "installdate": "1670803128", + "arch": "x86_64" + }, + "initscripts-rename-device": { + "epoch": "0", + "version": "10.11.5", + "release": "1.el9", + "installdate": "1670803128", + "arch": "x86_64" + }, + "irqbalance": { + "epoch": "2", + "version": "1.9.0", + "release": "3.el9", + "installdate": "1670803128", + "arch": "x86_64" + }, + "btrfs-progs": { + "epoch": "0", + "version": "5.15.1", + "release": "0.el9", + "installdate": "1670803128", + "arch": "x86_64" + }, + "e2fsprogs": { + "epoch": "0", + "version": "1.46.5", + "release": "3.el9", + "installdate": "1670803128", + "arch": "x86_64" + }, + "prefixdevname": { + "epoch": "0", + "version": "0.1.0", + "release": "8.el9", + "installdate": "1670803128", + "arch": "x86_64" + }, + "rsync": { + "epoch": "0", + "version": "3.2.3", + "release": "18.el9", + "installdate": "1670803128", + "arch": "x86_64" + }, + "langpacks-en": { + "epoch": "0", + "version": "3.0", + "release": "16.el9", + "installdate": "1670803128", + "arch": "noarch" + }, + "sg3_utils": { + "epoch": "0", + "version": "1.47", + "release": "9.el9", + "installdate": "1670803129", + "arch": "x86_64" + }, + "iproute-tc": { + "epoch": "0", + "version": "5.18.0", + "release": "1.el9", + "installdate": "1670803129", + "arch": "x86_64" + }, + "kernel-tools": { + "epoch": "0", + "version": "5.14.0", + "release": "162.6.1.el9_1", + "installdate": "1670803129", + "arch": "x86_64" + }, + "wget": { + "epoch": "0", + "version": "1.21.1", + "release": "7.el9", + "installdate": "1670803129", + "arch": "x86_64" + }, + "tar": { + "epoch": "2", + "version": "1.34", + "release": "5.el9", + "installdate": "1670803129", + "arch": "x86_64" + }, + "vim-minimal": { + "epoch": "2", + "version": "8.2.2637", + "release": "16.0.1.el9_0.3", + "installdate": "1670803129", + "arch": "x86_64" + }, + "lshw": { + "epoch": "0", + "version": "B.02.19.2", + "release": "9.el9", + "installdate": "1670803129", + "arch": "x86_64" + }, + "bzip2": { + "epoch": "0", + "version": "1.0.8", + "release": "8.el9", + "installdate": "1670803129", + "arch": "x86_64" + }, + "libsysfs": { + "epoch": "0", + "version": "2.1.1", + "release": "10.el9", + "installdate": "1670803129", + "arch": "x86_64" + }, + "lsscsi": { + "epoch": "0", + "version": "0.32", + "release": "6.el9", + "installdate": "1670803129", + "arch": "x86_64" + }, + "ncurses": { + "epoch": "0", + "version": "6.2", + "release": "8.20210508.el9", + "installdate": "1670803129", + "arch": "x86_64" + }, + "rootfiles": { + "epoch": "0", + "version": "8.1", + "release": "31.el9", + "installdate": "1670803129", + "arch": "noarch" + }, + "gpg-pubkey": { + "epoch": "0", + "version": "8b4efbe6", + "release": "629ec292", + "installdate": "1670803599", + "arch": "(none)", + "versions": [ + { + "epoch": "0", + "version": "8d8b756f", + "release": "629e59ec", + "installdate": "1670803599", + "arch": "(none)" + }, + { + "epoch": "0", + "version": "8b4efbe6", + "release": "629ec292", + "installdate": "1670803599", + "arch": "(none)" + } + ] + }, + "lua-libs": { + "epoch": "0", + "version": "5.4.2", + "release": "4.el9_0.3", + "installdate": "1670803607", + "arch": "x86_64" + }, + "rpm": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.0.1.el9_1", + "installdate": "1670803607", + "arch": "x86_64" + }, + "rpm-libs": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.0.1.el9_1", + "installdate": "1670803607", + "arch": "x86_64" + }, + "krb5-libs": { + "epoch": "0", + "version": "1.19.1", + "release": "24.0.1.el9_1", + "installdate": "1670803607", + "arch": "x86_64" + }, + "libsss_idmap": { + "epoch": "0", + "version": "2.7.3", + "release": "4.0.1.el9_1.1", + "installdate": "1670803607", + "arch": "x86_64" + }, + "kernel-uek-core": { + "epoch": "0", + "version": "5.15.0", + "release": "4.70.5.2.el9uek", + "installdate": "1670803608", + "arch": "x86_64" + }, + "kernel-uek-modules": { + "epoch": "0", + "version": "5.15.0", + "release": "4.70.5.2.el9uek", + "installdate": "1670803612", + "arch": "x86_64" + }, + "rpm-build-libs": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.0.1.el9_1", + "installdate": "1670803621", + "arch": "x86_64" + }, + "rpm-sign-libs": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.0.1.el9_1", + "installdate": "1670803621", + "arch": "x86_64" + }, + "tzdata": { + "epoch": "0", + "version": "2022g", + "release": "1.el9_1", + "installdate": "1670803622", + "arch": "noarch" + }, + "python3-libs": { + "epoch": "0", + "version": "3.9.14", + "release": "1.el9_1.1", + "installdate": "1670803625", + "arch": "x86_64" + }, + "python-unversioned-command": { + "epoch": "0", + "version": "3.9.14", + "release": "1.el9_1.1", + "installdate": "1670803625", + "arch": "noarch" + }, + "python3": { + "epoch": "0", + "version": "3.9.14", + "release": "1.el9_1.1", + "installdate": "1670803625", + "arch": "x86_64" + }, + "sssd-nfs-idmap": { + "epoch": "0", + "version": "2.7.3", + "release": "4.0.1.el9_1.1", + "installdate": "1670803625", + "arch": "x86_64" + }, + "libsss_sudo": { + "epoch": "0", + "version": "2.7.3", + "release": "4.0.1.el9_1.1", + "installdate": "1670803625", + "arch": "x86_64" + }, + "libsss_nss_idmap": { + "epoch": "0", + "version": "2.7.3", + "release": "4.0.1.el9_1.1", + "installdate": "1670803625", + "arch": "x86_64" + }, + "sssd-client": { + "epoch": "0", + "version": "2.7.3", + "release": "4.0.1.el9_1.1", + "installdate": "1670803625", + "arch": "x86_64" + }, + "libsss_certmap": { + "epoch": "0", + "version": "2.7.3", + "release": "4.0.1.el9_1.1", + "installdate": "1670803625", + "arch": "x86_64" + }, + "sssd-common": { + "epoch": "0", + "version": "2.7.3", + "release": "4.0.1.el9_1.1", + "installdate": "1670803625", + "arch": "x86_64" + }, + "sssd-kcm": { + "epoch": "0", + "version": "2.7.3", + "release": "4.0.1.el9_1.1", + "installdate": "1670803626", + "arch": "x86_64" + }, + "python3-rpm": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.0.1.el9_1", + "installdate": "1670803626", + "arch": "x86_64" + }, + "kernel-uek": { + "epoch": "0", + "version": "5.15.0", + "release": "4.70.5.2.el9uek", + "installdate": "1670803626", + "arch": "x86_64" + }, + "rpm-plugin-audit": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.0.1.el9_1", + "installdate": "1670803626", + "arch": "x86_64" + }, + "rpm-plugin-selinux": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.0.1.el9_1", + "installdate": "1670803626", + "arch": "x86_64" + }, + "rpm-plugin-ima": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.0.1.el9_1", + "installdate": "1670803626", + "arch": "x86_64" + }, + "rpm-plugin-systemd-inhibit": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.0.1.el9_1", + "installdate": "1670803626", + "arch": "x86_64" + }, + "xfsprogs": { + "epoch": "0", + "version": "5.15.0", + "release": "1.0.1.el9", + "installdate": "1670803626", + "arch": "x86_64" + }, + "libbpf": { + "epoch": "2", + "version": "0.6.0", + "release": "6.el9", + "installdate": "1670803626", + "arch": "x86_64" + }, + "libksba": { + "epoch": "0", + "version": "1.5.1", + "release": "5.el9_0", + "installdate": "1670803626", + "arch": "x86_64" + }, + "libgcrypt": { + "epoch": "0", + "version": "1.10.0", + "release": "8.el9_0", + "installdate": "1670803626", + "arch": "x86_64" + }, + "kpartx": { + "epoch": "0", + "version": "0.8.7", + "release": "12.el9_1.1", + "installdate": "1670803626", + "arch": "x86_64" + }, + "chef-workstation": { + "epoch": "0", + "version": "21.10.640", + "release": "1.el7", + "installdate": "1675130128", + "arch": "x86_64" + } + }, + "platform": "oracle", + "platform_family": "rhel", + "platform_version": "9.1", + "root_group": "root", + "shard_seed": 43220310, + "shells": [ + "/bin/sh", + "/bin/bash", + "/usr/bin/sh", + "/usr/bin/bash" + ], + "time": { + "timezone": "GMT" + }, + "uptime": "30 days 15 hours 07 minutes 30 seconds", + "uptime_seconds": 2646450, + "virtualization": { + "systems": { + } + } +} \ No newline at end of file diff --git a/lib/fauxhai/platforms/redhat/9.json b/lib/fauxhai/platforms/redhat/9.json new file mode 100644 index 00000000..df8dc5f4 --- /dev/null +++ b/lib/fauxhai/platforms/redhat/9.json @@ -0,0 +1,4860 @@ +{ + "block_device": { + "xvda": { + "size": "33554432", + "removable": "0", + "state": "Connected", + "rotational": "0", + "physical_block_size": "512", + "logical_block_size": "512" + } + }, + "chef_packages": { + "chef": { + "version": "17.9.26", + "chef_root": "/opt/chef/embedded/lib/ruby/gems/3.0.0/gems/chef-17.9.26/lib", + "chef_effortless": null + }, + "ohai": { + "version": "17.9.1", + "ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.0.0/gems/ohai-17.9.1/lib/ohai" + } + }, + "command": { + "ps": "ps -ef" + }, + "counters": { + "network": { + "interfaces": { + "lo": { + "tx": { + "queuelen": "1", + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "carrier": 0, + "collisions": 0 + }, + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0 + } + }, + "eth0": { + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "frame": 0, + "compressed": 0, + "multicast": 0 + }, + "tx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "collisions": 0, + "carrier": 0, + "compressed": 0 + } + } + } + } + }, + "cpu": { + "real": 1, + "total": 1, + "cores": 1 + }, + "current_user": "fauxhai", + "dmi": { + "dmidecode_version": "3.5", + "smbios_version": "2.7", + "structures": { + "count": "12", + "size": "426" + }, + "bios": { + "all_records": [ + { + "record_id": "0x0000", + "size": "0", + "application_identifier": "BIOS Information", + "Vendor": "Xen", + "Version": "4.11.amazon", + "Release Date": "08/24/2006", + "Address": "0xE8000", + "Runtime Size": "96 kB", + "ROM Size": "64 kB", + "Characteristics": { + "Targeted content distribution is supported": null + }, + "BIOS Revision": "4.11" + } + ], + "vendor": "Xen", + "version": "4.11.amazon", + "release_date": "08/24/2006", + "address": "0xE8000", + "runtime_size": "96 kB", + "rom_size": "64 kB", + "bios_revision": "4.11" + }, + "system": { + "all_records": [ + { + "record_id": "0x0100", + "size": "1", + "application_identifier": "System Information", + "Manufacturer": "Xen", + "Product Name": "HVM domU", + "Version": "4.11.amazon", + "Serial Number": "ec2c333a-7944-691f-056f-b6ea5cbfce80", + "UUID": "ec2c333a-7944-691f-056f-b6ea5cbfce80", + "Wake-up Type": "Power Switch", + "SKU Number": "Not Specified", + "Family": "Not Specified" + } + ], + "manufacturer": "Xen", + "product_name": "HVM domU", + "version": "4.11.amazon", + "serial_number": "ec2c333a-7944-691f-056f-b6ea5cbfce80", + "uuid": "ec2c333a-7944-691f-056f-b6ea5cbfce80", + "wake_up_type": "Power Switch", + "sku_number": "Not Specified", + "family": "Not Specified" + }, + "chassis": { + "all_records": [ + { + "record_id": "0x0300", + "size": "3", + "application_identifier": "Chassis Information", + "Manufacturer": "Xen", + "Type": "Other", + "Lock": "Not Present", + "Version": "Not Specified", + "Serial Number": "Not Specified", + "Asset Tag": "Not Specified", + "Boot-up State": "Safe", + "Power Supply State": "Safe", + "Thermal State": "Safe", + "Security Status": "Unknown", + "OEM Information": "0x00000000", + "Height": "Unspecified", + "Number Of Power Cords": "Unspecified", + "Contained Elements": "0" + } + ], + "manufacturer": "Xen", + "type": "Other", + "lock": "Not Present", + "version": "Not Specified", + "serial_number": "Not Specified", + "asset_tag": "Not Specified", + "boot_up_state": "Safe", + "power_supply_state": "Safe", + "thermal_state": "Safe", + "security_status": "Unknown", + "oem_information": "0x00000000", + "height": "Unspecified", + "number_of_power_cords": "Unspecified", + "contained_elements": "0" + }, + "processor": { + "all_records": [ + { + "record_id": "0x0401", + "size": "4", + "application_identifier": "Processor Information", + "Socket Designation": "CPU 1", + "Type": "Central Processor", + "Family": "Other", + "Manufacturer": "Intel", + "ID": "F1 06 04 00 FF FB 8B 17", + "Version": "Not Specified", + "Voltage": "Unknown", + "External Clock": "Unknown", + "Max Speed": "2300 MHz", + "Current Speed": "2300 MHz", + "Status": "Populated, Enabled", + "Upgrade": "Other", + "L1 Cache Handle": "Not Provided", + "L2 Cache Handle": "Not Provided", + "L3 Cache Handle": "Not Provided", + "Serial Number": "Not Specified", + "Asset Tag": "Not Specified", + "Part Number": "Not Specified" + }, + { + "record_id": "0x0402", + "size": "4", + "application_identifier": "Processor Information", + "Socket Designation": "CPU 2", + "Type": "Central Processor", + "Family": "Other", + "Manufacturer": "Intel", + "ID": "F1 06 04 00 FF FB 8B 17", + "Version": "Not Specified", + "Voltage": "Unknown", + "External Clock": "Unknown", + "Max Speed": "2300 MHz", + "Current Speed": "2300 MHz", + "Status": "Populated, Enabled", + "Upgrade": "Other", + "L1 Cache Handle": "Not Provided", + "L2 Cache Handle": "Not Provided", + "L3 Cache Handle": "Not Provided", + "Serial Number": "Not Specified", + "Asset Tag": "Not Specified", + "Part Number": "Not Specified" + } + ], + "type": "Central Processor", + "family": "Other", + "manufacturer": "Intel", + "id": "F1 06 04 00 FF FB 8B 17", + "version": "Not Specified", + "voltage": "Unknown", + "external_clock": "Unknown", + "max_speed": "2300 MHz", + "current_speed": "2300 MHz", + "status": "Populated, Enabled", + "upgrade": "Other", + "l1_cache_handle": "Not Provided", + "l2_cache_handle": "Not Provided", + "l3_cache_handle": "Not Provided", + "serial_number": "Not Specified", + "asset_tag": "Not Specified", + "part_number": "Not Specified" + }, + "oem_strings": { + "all_records": [ + { + "record_id": "0x0B00", + "size": "11", + "application_identifier": "OEM Strings", + "String 1": "Xen" + } + ], + "string_1": "Xen" + } + }, + "domain": "local", + "filesystem": { + "by_device": { + "devtmpfs": { + "kb_size": "4096", + "kb_used": "0", + "kb_available": "4096", + "percent_used": "0%", + "total_inodes": "456617", + "inodes_used": "305", + "inodes_available": "456312", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=4096k", + "nr_inodes=456617", + "mode=755", + "inode64" + ], + "mounts": [ + "/dev" + ] + }, + "tmpfs": { + "kb_size": "373224", + "kb_used": "0", + "kb_available": "373224", + "percent_used": "0%", + "total_inodes": "93306", + "inodes_used": "14", + "inodes_available": "93292", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=373224k", + "nr_inodes=93306", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ], + "mounts": [ + "/dev/shm", + "/run", + "/run/user/1000" + ] + }, + "/dev/xvda4": { + "kb_size": "15890412", + "kb_used": "1630072", + "kb_available": "14260340", + "percent_used": "11%", + "total_inodes": "7977968", + "inodes_used": "46240", + "inodes_available": "7931728", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "2cfdcca4-d3e3-40cb-b58e-0bed76bdceec", + "label": "root", + "mounts": [ + "/" + ] + }, + "/dev/xvda3": { + "kb_size": "548864", + "kb_used": "164608", + "kb_available": "384256", + "percent_used": "30%", + "total_inodes": "307200", + "inodes_used": "307", + "inodes_available": "306893", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "1dde521c-d910-4d8f-a14a-2704a5d4dbd4", + "label": "boot", + "mounts": [ + "/boot" + ] + }, + "/dev/xvda2": { + "kb_size": "204580", + "kb_used": "7128", + "kb_available": "197452", + "percent_used": "4%", + "fs_type": "vfat", + "mount_options": [ + "rw", + "relatime", + "fmask=0077", + "dmask=0077", + "codepage=437", + "iocharset=ascii", + "shortname=winnt", + "errors=remount-ro" + ], + "uuid": "7B77-95E7", + "mounts": [ + "/efi", + "/boot/efi" + ] + }, + "proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/proc" + ] + }, + "sysfs": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys" + ] + }, + "securityfs": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/security" + ] + }, + "devpts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "mounts": [ + "/dev/pts" + ] + }, + "cgroup2": { + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "nsdelegate", + "memory_recursiveprot" + ], + "mounts": [ + "/sys/fs/cgroup" + ] + }, + "pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/fs/pstore" + ] + }, + "bpf": { + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "mounts": [ + "/sys/fs/bpf" + ] + }, + "selinuxfs": { + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/fs/selinux" + ] + }, + "systemd-1": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=37", + "pgrp=1", + "timeout=120", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=14915" + ], + "mounts": [ + "/proc/sys/fs/binfmt_misc", + "/efi" + ] + }, + "hugetlbfs": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ], + "mounts": [ + "/dev/hugepages" + ] + }, + "mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/dev/mqueue" + ] + }, + "debugfs": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/kernel/debug" + ] + }, + "tracefs": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/kernel/tracing" + ] + }, + "fusectl": { + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/fs/fuse/connections" + ] + }, + "configfs": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/config" + ] + }, + "none": { + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "mode=700" + ], + "mounts": [ + "/run/credentials/systemd-sysctl.service", + "/run/credentials/systemd-sysusers.service", + "/run/credentials/systemd-tmpfiles-setup-dev.service", + "/run/credentials/systemd-tmpfiles-setup.service" + ] + }, + "/dev/xvda": { + "mounts": [] + }, + "/dev/xvda1": { + "mounts": [] + } + }, + "by_mountpoint": { + "/dev": { + "kb_size": "4096", + "kb_used": "0", + "kb_available": "4096", + "percent_used": "0%", + "total_inodes": "456617", + "inodes_used": "305", + "inodes_available": "456312", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=4096k", + "nr_inodes=456617", + "mode=755", + "inode64" + ], + "devices": [ + "devtmpfs" + ] + }, + "/dev/shm": { + "kb_size": "1866128", + "kb_used": "0", + "kb_available": "1866128", + "percent_used": "0%", + "total_inodes": "466532", + "inodes_used": "1", + "inodes_available": "466531", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/run": { + "kb_size": "746452", + "kb_used": "16916", + "kb_available": "729536", + "percent_used": "3%", + "total_inodes": "819200", + "inodes_used": "520", + "inodes_available": "818680", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "size=746452k", + "nr_inodes=819200", + "mode=755", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/": { + "kb_size": "15890412", + "kb_used": "1630072", + "kb_available": "14260340", + "percent_used": "11%", + "total_inodes": "7977968", + "inodes_used": "46240", + "inodes_available": "7931728", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "2cfdcca4-d3e3-40cb-b58e-0bed76bdceec", + "label": "root", + "devices": [ + "/dev/xvda4" + ] + }, + "/boot": { + "kb_size": "548864", + "kb_used": "164608", + "kb_available": "384256", + "percent_used": "30%", + "total_inodes": "307200", + "inodes_used": "307", + "inodes_available": "306893", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "1dde521c-d910-4d8f-a14a-2704a5d4dbd4", + "label": "boot", + "devices": [ + "/dev/xvda3" + ] + }, + "/efi": { + "kb_size": "204580", + "kb_used": "7128", + "kb_available": "197452", + "percent_used": "4%", + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=37", + "pgrp=1", + "timeout=120", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=14915" + ], + "uuid": "7B77-95E7", + "devices": [ + "/dev/xvda2", + "systemd-1" + ] + }, + "/run/user/1000": { + "kb_size": "373224", + "kb_used": "0", + "kb_available": "373224", + "percent_used": "0%", + "total_inodes": "93306", + "inodes_used": "14", + "inodes_available": "93292", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=373224k", + "nr_inodes=93306", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "proc" + ] + }, + "/sys": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "sysfs" + ] + }, + "/sys/kernel/security": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "securityfs" + ] + }, + "/dev/pts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "devices": [ + "devpts" + ] + }, + "/sys/fs/cgroup": { + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "nsdelegate", + "memory_recursiveprot" + ], + "devices": [ + "cgroup2" + ] + }, + "/sys/fs/pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "pstore" + ] + }, + "/sys/fs/bpf": { + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "devices": [ + "bpf" + ] + }, + "/sys/fs/selinux": { + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime" + ], + "devices": [ + "selinuxfs" + ] + }, + "/proc/sys/fs/binfmt_misc": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=29", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=19623" + ], + "devices": [ + "systemd-1" + ] + }, + "/dev/hugepages": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ], + "devices": [ + "hugetlbfs" + ] + }, + "/dev/mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "mqueue" + ] + }, + "/sys/kernel/debug": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "debugfs" + ] + }, + "/sys/kernel/tracing": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "tracefs" + ] + }, + "/sys/fs/fuse/connections": { + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "fusectl" + ] + }, + "/sys/kernel/config": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "configfs" + ] + }, + "/run/credentials/systemd-sysctl.service": { + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "mode=700" + ], + "devices": [ + "none" + ] + }, + "/run/credentials/systemd-sysusers.service": { + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "mode=700" + ], + "devices": [ + "none" + ] + }, + "/run/credentials/systemd-tmpfiles-setup-dev.service": { + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "mode=700" + ], + "devices": [ + "none" + ] + }, + "/boot/efi": { + "fs_type": "vfat", + "mount_options": [ + "rw", + "relatime", + "fmask=0077", + "dmask=0077", + "codepage=437", + "iocharset=ascii", + "shortname=winnt", + "errors=remount-ro" + ], + "uuid": "7B77-95E7", + "devices": [ + "/dev/xvda2" + ] + }, + "/run/credentials/systemd-tmpfiles-setup.service": { + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "mode=700" + ], + "devices": [ + "none" + ] + } + }, + "by_pair": { + "devtmpfs,/dev": { + "device": "devtmpfs", + "kb_size": "4096", + "kb_used": "0", + "kb_available": "4096", + "percent_used": "0%", + "mount": "/dev", + "total_inodes": "456617", + "inodes_used": "305", + "inodes_available": "456312", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=4096k", + "nr_inodes=456617", + "mode=755", + "inode64" + ] + }, + "tmpfs,/dev/shm": { + "device": "tmpfs", + "kb_size": "1866128", + "kb_used": "0", + "kb_available": "1866128", + "percent_used": "0%", + "mount": "/dev/shm", + "total_inodes": "466532", + "inodes_used": "1", + "inodes_available": "466531", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "inode64" + ] + }, + "tmpfs,/run": { + "device": "tmpfs", + "kb_size": "746452", + "kb_used": "16916", + "kb_available": "729536", + "percent_used": "3%", + "mount": "/run", + "total_inodes": "819200", + "inodes_used": "520", + "inodes_available": "818680", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "size=746452k", + "nr_inodes=819200", + "mode=755", + "inode64" + ] + }, + "/dev/xvda4,/": { + "device": "/dev/xvda4", + "kb_size": "15890412", + "kb_used": "1630072", + "kb_available": "14260340", + "percent_used": "11%", + "mount": "/", + "total_inodes": "7977968", + "inodes_used": "46240", + "inodes_available": "7931728", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "2cfdcca4-d3e3-40cb-b58e-0bed76bdceec", + "label": "root" + }, + "/dev/xvda3,/boot": { + "device": "/dev/xvda3", + "kb_size": "548864", + "kb_used": "164608", + "kb_available": "384256", + "percent_used": "30%", + "mount": "/boot", + "total_inodes": "307200", + "inodes_used": "307", + "inodes_available": "306893", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "1dde521c-d910-4d8f-a14a-2704a5d4dbd4", + "label": "boot" + }, + "/dev/xvda2,/efi": { + "device": "/dev/xvda2", + "kb_size": "204580", + "kb_used": "7128", + "kb_available": "197452", + "percent_used": "4%", + "mount": "/efi", + "fs_type": "vfat", + "mount_options": [ + "rw", + "relatime", + "fmask=0077", + "dmask=0077", + "codepage=437", + "iocharset=ascii", + "shortname=winnt", + "errors=remount-ro" + ], + "uuid": "7B77-95E7" + }, + "tmpfs,/run/user/1000": { + "device": "tmpfs", + "kb_size": "373224", + "kb_used": "0", + "kb_available": "373224", + "percent_used": "0%", + "mount": "/run/user/1000", + "total_inodes": "93306", + "inodes_used": "14", + "inodes_available": "93292", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=373224k", + "nr_inodes=93306", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ] + }, + "proc,/proc": { + "device": "proc", + "mount": "/proc", + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "sysfs,/sys": { + "device": "sysfs", + "mount": "/sys", + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "securityfs,/sys/kernel/security": { + "device": "securityfs", + "mount": "/sys/kernel/security", + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "devpts,/dev/pts": { + "device": "devpts", + "mount": "/dev/pts", + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ] + }, + "cgroup2,/sys/fs/cgroup": { + "device": "cgroup2", + "mount": "/sys/fs/cgroup", + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "nsdelegate", + "memory_recursiveprot" + ] + }, + "pstore,/sys/fs/pstore": { + "device": "pstore", + "mount": "/sys/fs/pstore", + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "bpf,/sys/fs/bpf": { + "device": "bpf", + "mount": "/sys/fs/bpf", + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ] + }, + "selinuxfs,/sys/fs/selinux": { + "device": "selinuxfs", + "mount": "/sys/fs/selinux", + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime" + ] + }, + "systemd-1,/proc/sys/fs/binfmt_misc": { + "device": "systemd-1", + "mount": "/proc/sys/fs/binfmt_misc", + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=29", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=19623" + ] + }, + "hugetlbfs,/dev/hugepages": { + "device": "hugetlbfs", + "mount": "/dev/hugepages", + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ] + }, + "mqueue,/dev/mqueue": { + "device": "mqueue", + "mount": "/dev/mqueue", + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "debugfs,/sys/kernel/debug": { + "device": "debugfs", + "mount": "/sys/kernel/debug", + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "tracefs,/sys/kernel/tracing": { + "device": "tracefs", + "mount": "/sys/kernel/tracing", + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "fusectl,/sys/fs/fuse/connections": { + "device": "fusectl", + "mount": "/sys/fs/fuse/connections", + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "configfs,/sys/kernel/config": { + "device": "configfs", + "mount": "/sys/kernel/config", + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "none,/run/credentials/systemd-sysctl.service": { + "device": "none", + "mount": "/run/credentials/systemd-sysctl.service", + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "mode=700" + ] + }, + "none,/run/credentials/systemd-sysusers.service": { + "device": "none", + "mount": "/run/credentials/systemd-sysusers.service", + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "mode=700" + ] + }, + "none,/run/credentials/systemd-tmpfiles-setup-dev.service": { + "device": "none", + "mount": "/run/credentials/systemd-tmpfiles-setup-dev.service", + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "mode=700" + ] + }, + "systemd-1,/efi": { + "device": "systemd-1", + "mount": "/efi", + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=37", + "pgrp=1", + "timeout=120", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=14915" + ] + }, + "/dev/xvda2,/boot/efi": { + "device": "/dev/xvda2", + "mount": "/boot/efi", + "fs_type": "vfat", + "mount_options": [ + "rw", + "relatime", + "fmask=0077", + "dmask=0077", + "codepage=437", + "iocharset=ascii", + "shortname=winnt", + "errors=remount-ro" + ], + "uuid": "7B77-95E7" + }, + "none,/run/credentials/systemd-tmpfiles-setup.service": { + "device": "none", + "mount": "/run/credentials/systemd-tmpfiles-setup.service", + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "mode=700" + ] + }, + "/dev/xvda,": { + "device": "/dev/xvda" + }, + "/dev/xvda1,": { + "device": "/dev/xvda1" + } + } + }, + "fips": { + "kernel": { + "enabled": true + } + }, + "fqdn": "fauxhai.local", + "hostname": "Fauxhai", + "idle": "30 days 15 hours 07 minutes 30 seconds", + "idletime_seconds": 2646450, + "init_package": "systemd", + "ipaddress": "10.0.0.2", + "kernel": { + "name": "Linux", + "release": "5.14.0-362.8.1.el9_3.x86_64", + "version": "#1 SMP PREEMPT_DYNAMIC Tue Oct 3 11:12:36 EDT 2023", + "machine": "x86_64", + "processor": "x86_64", + "os": "GNU/Linux", + "modules": { + "tls": { + "size": "151552", + "refcount": "0" + }, + "rfkill": { + "size": "40960", + "refcount": "1" + }, + "vfat": { + "size": "20480", + "refcount": "1" + }, + "fat": { + "size": "102400", + "refcount": "1" + }, + "intel_rapl_msr": { + "size": "20480", + "refcount": "0" + }, + "cirrus": { + "size": "16384", + "refcount": "0" + }, + "intel_rapl_common": { + "size": "36864", + "refcount": "1" + }, + "drm_shmem_helper": { + "size": "28672", + "refcount": "1" + }, + "rapl": { + "size": "28672", + "refcount": "0" + }, + "drm_kms_helper": { + "size": "245760", + "refcount": "3" + }, + "syscopyarea": { + "size": "16384", + "refcount": "1" + }, + "sysfillrect": { + "size": "16384", + "refcount": "1" + }, + "pcspkr": { + "size": "16384", + "refcount": "0" + }, + "sysimgblt": { + "size": "16384", + "refcount": "1" + }, + "i2c_piix4": { + "size": "32768", + "refcount": "0" + }, + "fuse": { + "size": "212992", + "refcount": "1" + }, + "drm": { + "size": "704512", + "refcount": "4" + }, + "xfs": { + "size": "2473984", + "refcount": "2" + }, + "libcrc32c": { + "size": "16384", + "refcount": "1" + }, + "ata_generic": { + "size": "16384", + "refcount": "0", + "version": "0.2.15" + }, + "crct10dif_pclmul": { + "size": "16384", + "refcount": "1" + }, + "crc32_pclmul": { + "size": "16384", + "refcount": "0" + }, + "ata_piix": { + "size": "45056", + "refcount": "0", + "version": "2.13" + }, + "crc32c_intel": { + "size": "24576", + "refcount": "1" + }, + "libata": { + "size": "479232", + "refcount": "2", + "version": "3.00" + }, + "xen_netfront": { + "size": "49152", + "refcount": "1" + }, + "xen_blkfront": { + "size": "57344", + "refcount": "4" + }, + "ghash_clmulni_intel": { + "size": "16384", + "refcount": "0" + }, + "serio_raw": { + "size": "20480", + "refcount": "0" + }, + "dm_mirror": { + "size": "32768", + "refcount": "0" + }, + "dm_region_hash": { + "size": "28672", + "refcount": "1" + }, + "dm_log": { + "size": "28672", + "refcount": "2" + }, + "dm_mod": { + "size": "237568", + "refcount": "2" + } + } + }, + "keys": { + "ssh": { + "host_dsa_public": "ssh-dss AAAAB3NzaC1kc3MAAACBAJFo9BLAw4WKEs5hgipk5m423FzBsDXCZSMcC9ca/om/1VYzMqImixGe3uICDzNFUWxFoLJTQAOccyzo6MXZiQqwWJDLFi5qOSr6w2XcMyE+zd4wOyMoDiVM5fizmG8K3FzrqvGjwBcHcBdOQnavSijoj38DN25J9zhrid5BY4WlAAAAFQDxXrCyG52XCzn3FV4ej38wJBkomQAAAIBovGPJ4mP2P6BK8lHl0PPbktwQbWlpJ13oz6REJFDVcUi7vV26bX/BjQX+ohzZQzljdz1SpUbPc/8nuA4darYkVh91eBi307EN8IdxRHj2eBgp/ZG4yshIebG3WHrwJD/xUjjZ1MRfyDT1ermVi4LvjjPgWDxLZnPpMaR6S1nzgQAAAIEAj0Vd6DCWslvlsZ8+N53HWsqPi3gnx35JoLPz9Z2epkKIKqmEHav+93G3hdfztVa4I4t3phoPniQchYryF5+RNg8hqxKzjNtrIqUYCeuf2NJrksNsH7OZygPHZpqt4kTuwAGZxjxEGfAI0y8DhkU2ntp2LnzRnWH106BQBCmcXwo= fauxhai.local", + "host_rsa_public": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCtLCeqtqr/HbnORckw1ukdLhpfGoOPFi5/esKEokzTqq1gsgQ2V8emmyjfq1i6XXfRtSBxkdlHv/GWdP5wBTuE2G85MzBkVSQPvmwQN8lX/JMPEEtKXkeOo0o92/PiSmvY4eRsdF0mw40Uvg7jtE3f3fxj497kzh5fKtkrHnF4x9gXCbVdr3FqXJfggR5IJwAxToerbK7x/uRS+7YuZI9Pip3tt14nv9ezwXcuGb/tvjWOZINiFl8izVIFKi7sxfTX09p4NgamxRS7TD2Yd0jT8nEoF9UZTsgXcJ1kDSx7N7NxFfNfP6rCdOGRRz4gUhXtsUjG/XkxPeCwZ7A9VnOD fauxhai.local" + } + }, + "languages": { + "ruby": { + "platform": "x86_64-linux", + "version": "3.0.3", + "release_date": "2021-11-24", + "target": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_vendor": "pc", + "target_os": "linux", + "host": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux", + "host_vendor": "pc", + "bin_dir": "/usr/local/bin", + "ruby_bin": "/usr/local/bin/ruby", + "gem_bin": "/usr/local/bin/gem", + "gems_dir": "/usr/local/gems" + }, + "powershell": null + }, + "lsb": {}, + "macaddress": "11:11:11:11:11:11", + "machinename": "Fauxhai", + "memory": { + "total": "1048576kB" + }, + "network": { + "interfaces": { + "lo": { + "mtu": "65536", + "flags": [ + "LOOPBACK", + "UP", + "LOWER_UP" + ], + "encapsulation": "Loopback", + "addresses": { + "127.0.0.1": { + "family": "inet", + "prefixlen": "8", + "netmask": "255.0.0.0", + "scope": "Node", + "ip_scope": "LOOPBACK" + }, + "::1": { + "family": "inet6", + "prefixlen": "128", + "scope": "Node", + "tags": [], + "ip_scope": "LINK LOCAL LOOPBACK" + } + }, + "state": "unknown" + }, + "eth0": { + "type": "eth", + "number": "0", + "mtu": "1500", + "flags": [ + "BROADCAST", + "MULTICAST", + "UP", + "LOWER_UP" + ], + "encapsulation": "Ethernet", + "addresses": { + "11:11:11:11:11:11": { + "family": "lladdr" + }, + "10.0.0.2": { + "family": "inet", + "prefixlen": "24", + "netmask": "255.255.255.0", + "broadcast": "10.0.0.255", + "scope": "Global", + "ip_scope": "RFC1918 PRIVATE" + }, + "fe80::11:1111:1111:1111": { + "family": "inet6", + "prefixlen": "64", + "scope": "Link", + "tags": [], + "ip_scope": "LINK LOCAL UNICAST" + } + }, + "state": "up", + "arp": { + "10.0.0.1": "fe:ff:ff:ff:ff:ff" + }, + "routes": [ + { + "destination": "default", + "family": "inet", + "via": "10.0.0.1" + }, + { + "destination": "10.0.0.0/24", + "family": "inet", + "scope": "link", + "proto": "kernel", + "src": "10.0.0.2" + }, + { + "destination": "fe80::/64", + "family": "inet6", + "metric": "256", + "proto": "kernel" + } + ], + "ring_params": {} + } + }, + "default_interface": "eth0", + "default_gateway": "10.0.0.1" + }, + "ohai_time": 1699972797.286854, + "os": "linux", + "os_release": { + "name": "Red Hat Enterprise Linux", + "version": "9.3 (Plow)", + "id": "rhel", + "id_like": [ + "fedora" + ], + "version_id": "9.3", + "platform_id": "platform:el9", + "pretty_name": "Red Hat Enterprise Linux 9.3 (Plow)", + "ansi_color": "0;31", + "logo": "fedora-logo-icon", + "cpe_name": "cpe:/o:redhat:enterprise_linux:9::baseos", + "home_url": "https://www.redhat.com/", + "documentation_url": "https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/9", + "bug_report_url": "https://bugzilla.redhat.com/", + "redhat_bugzilla_product": "Red Hat Enterprise Linux 9", + "redhat_bugzilla_product_version": "9.3", + "redhat_support_product": "Red Hat Enterprise Linux", + "redhat_support_product_version": "9.3" + }, + "os_version": "5.14.0-362.8.1.el9_3.x86_64", + "packages": { + "libgcc": { + "epoch": "0", + "version": "11.4.1", + "release": "2.1.el9", + "installdate": "1699429312", + "arch": "x86_64" + }, + "crypto-policies": { + "epoch": "0", + "version": "20230731", + "release": "1.git94f0e2c.el9_3.1", + "installdate": "1699429312", + "arch": "noarch" + }, + "tzdata": { + "epoch": "0", + "version": "2023c", + "release": "1.el9", + "installdate": "1699429312", + "arch": "noarch" + }, + "subscription-manager-rhsm-certificates": { + "epoch": "0", + "version": "20220623", + "release": "1.el9", + "installdate": "1699429312", + "arch": "noarch" + }, + "libreport-filesystem": { + "epoch": "0", + "version": "2.15.2", + "release": "6.el9", + "installdate": "1699429312", + "arch": "noarch" + }, + "hwdata": { + "epoch": "0", + "version": "0.348", + "release": "9.11.el9", + "installdate": "1699429312", + "arch": "noarch" + }, + "dnf-data": { + "epoch": "0", + "version": "4.14.0", + "release": "8.el9", + "installdate": "1699429312", + "arch": "noarch" + }, + "geolite2-country": { + "epoch": "0", + "version": "20191217", + "release": "6.el9", + "installdate": "1699429312", + "arch": "noarch" + }, + "geolite2-city": { + "epoch": "0", + "version": "20191217", + "release": "6.el9", + "installdate": "1699429312", + "arch": "noarch" + }, + "gawk-all-langpacks": { + "epoch": "0", + "version": "5.1.0", + "release": "6.el9", + "installdate": "1699429312", + "arch": "x86_64" + }, + "redhat-release-eula": { + "epoch": "0", + "version": "9.3", + "release": "0.5.el9", + "installdate": "1699429312", + "arch": "x86_64" + }, + "redhat-release": { + "epoch": "0", + "version": "9.3", + "release": "0.5.el9", + "installdate": "1699429312", + "arch": "x86_64" + }, + "setup": { + "epoch": "0", + "version": "2.13.7", + "release": "9.el9", + "installdate": "1699429312", + "arch": "noarch" + }, + "filesystem": { + "epoch": "0", + "version": "3.16", + "release": "2.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "efi-filesystem": { + "epoch": "0", + "version": "6", + "release": "2.el9_0", + "installdate": "1699429313", + "arch": "noarch" + }, + "basesystem": { + "epoch": "0", + "version": "11", + "release": "13.el9", + "installdate": "1699429313", + "arch": "noarch" + }, + "python3-setuptools-wheel": { + "epoch": "0", + "version": "53.0.0", + "release": "12.el9", + "installdate": "1699429313", + "arch": "noarch" + }, + "publicsuffix-list-dafsa": { + "epoch": "0", + "version": "20210518", + "release": "3.el9", + "installdate": "1699429313", + "arch": "noarch" + }, + "pcre2-syntax": { + "epoch": "0", + "version": "10.40", + "release": "2.el9", + "installdate": "1699429313", + "arch": "noarch" + }, + "ncurses-base": { + "epoch": "0", + "version": "6.2", + "release": "10.20210508.el9", + "installdate": "1699429313", + "arch": "noarch" + }, + "glibc-gconv-extra": { + "epoch": "0", + "version": "2.34", + "release": "83.el9_3.7", + "installdate": "1699429313", + "arch": "x86_64" + }, + "glibc-langpack-en": { + "epoch": "0", + "version": "2.34", + "release": "83.el9_3.7", + "installdate": "1699429313", + "arch": "x86_64" + }, + "glibc-common": { + "epoch": "0", + "version": "2.34", + "release": "83.el9_3.7", + "installdate": "1699429313", + "arch": "x86_64" + }, + "glibc": { + "epoch": "0", + "version": "2.34", + "release": "83.el9_3.7", + "installdate": "1699429313", + "arch": "x86_64" + }, + "ncurses-libs": { + "epoch": "0", + "version": "6.2", + "release": "10.20210508.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "bash": { + "epoch": "0", + "version": "5.1.8", + "release": "6.el9_1", + "installdate": "1699429313", + "arch": "x86_64" + }, + "zlib": { + "epoch": "0", + "version": "1.2.11", + "release": "40.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "xz-libs": { + "epoch": "0", + "version": "5.2.5", + "release": "8.el9_0", + "installdate": "1699429313", + "arch": "x86_64" + }, + "popt": { + "epoch": "0", + "version": "1.18", + "release": "8.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libzstd": { + "epoch": "0", + "version": "1.5.1", + "release": "2.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libcap": { + "epoch": "0", + "version": "2.48", + "release": "9.el9_2", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libuuid": { + "epoch": "0", + "version": "2.37.4", + "release": "15.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libxcrypt": { + "epoch": "0", + "version": "4.4.18", + "release": "3.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "bzip2-libs": { + "epoch": "0", + "version": "1.0.8", + "release": "8.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "sqlite-libs": { + "epoch": "0", + "version": "3.34.1", + "release": "6.el9_1", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libstdc++": { + "epoch": "0", + "version": "11.4.1", + "release": "2.1.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libcom_err": { + "epoch": "0", + "version": "1.46.5", + "release": "3.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libxml2": { + "epoch": "0", + "version": "2.9.13", + "release": "4.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "elfutils-libelf": { + "epoch": "0", + "version": "0.189", + "release": "3.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libcap-ng": { + "epoch": "0", + "version": "0.8.2", + "release": "7.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "audit-libs": { + "epoch": "0", + "version": "3.0.7", + "release": "104.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "nspr": { + "epoch": "0", + "version": "4.35.0", + "release": "3.el9_2", + "installdate": "1699429313", + "arch": "x86_64" + }, + "nss-util": { + "epoch": "0", + "version": "3.90.0", + "release": "3.el9_2", + "installdate": "1699429313", + "arch": "x86_64" + }, + "readline": { + "epoch": "0", + "version": "8.1", + "release": "4.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libgpg-error": { + "epoch": "0", + "version": "1.42", + "release": "5.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libunistring": { + "epoch": "0", + "version": "0.9.10", + "release": "15.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "lua-libs": { + "epoch": "0", + "version": "5.4.4", + "release": "4.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "alternatives": { + "epoch": "0", + "version": "1.24", + "release": "1.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "dmidecode": { + "epoch": "1", + "version": "3.5", + "release": "1.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "expat": { + "epoch": "0", + "version": "2.5.0", + "release": "1.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libffi": { + "epoch": "0", + "version": "3.4.2", + "release": "8.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "p11-kit": { + "epoch": "0", + "version": "0.24.1", + "release": "2.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libnl3": { + "epoch": "0", + "version": "3.7.0", + "release": "1.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libsepol": { + "epoch": "0", + "version": "3.5", + "release": "1.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libtalloc": { + "epoch": "0", + "version": "2.4.0", + "release": "2.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "lz4-libs": { + "epoch": "0", + "version": "1.9.3", + "release": "5.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "pcre2": { + "epoch": "0", + "version": "10.40", + "release": "2.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libselinux": { + "epoch": "0", + "version": "3.5", + "release": "1.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "findutils": { + "epoch": "1", + "version": "4.8.0", + "release": "6.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libsemanage": { + "epoch": "0", + "version": "3.5", + "release": "2.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libidn2": { + "epoch": "0", + "version": "2.3.0", + "release": "7.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "gmp": { + "epoch": "1", + "version": "6.2.0", + "release": "13.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "json-c": { + "epoch": "0", + "version": "0.14", + "release": "11.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "keyutils-libs": { + "epoch": "0", + "version": "1.6.3", + "release": "1.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libmnl": { + "epoch": "0", + "version": "1.0.4", + "release": "15.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libsmartcols": { + "epoch": "0", + "version": "2.37.4", + "release": "15.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libtevent": { + "epoch": "0", + "version": "0.14.1", + "release": "2.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libgcrypt": { + "epoch": "0", + "version": "1.10.0", + "release": "10.el9_2", + "installdate": "1699429313", + "arch": "x86_64" + }, + "gdisk": { + "epoch": "0", + "version": "1.0.7", + "release": "5.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "file-libs": { + "epoch": "0", + "version": "5.39", + "release": "14.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "file": { + "epoch": "0", + "version": "5.39", + "release": "14.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libedit": { + "epoch": "0", + "version": "3.1", + "release": "38.20210216cvs.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "psmisc": { + "epoch": "0", + "version": "23.4", + "release": "3.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "efivar-libs": { + "epoch": "0", + "version": "38", + "release": "3.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "gdbm-libs": { + "epoch": "1", + "version": "1.19", + "release": "4.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libattr": { + "epoch": "0", + "version": "2.5.1", + "release": "3.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libacl": { + "epoch": "0", + "version": "2.3.1", + "release": "3.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "sed": { + "epoch": "0", + "version": "4.8", + "release": "9.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "shadow-utils": { + "epoch": "2", + "version": "4.9", + "release": "8.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libtdb": { + "epoch": "0", + "version": "1.4.8", + "release": "2.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "pciutils-libs": { + "epoch": "0", + "version": "3.7.0", + "release": "5.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "which": { + "epoch": "0", + "version": "2.21", + "release": "29.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "ethtool": { + "epoch": "2", + "version": "6.2", + "release": "1.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "mpfr": { + "epoch": "0", + "version": "4.1.0", + "release": "7.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "chkconfig": { + "epoch": "0", + "version": "1.24", + "release": "1.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libassuan": { + "epoch": "0", + "version": "2.5.5", + "release": "3.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libbpf": { + "epoch": "2", + "version": "1.2.0", + "release": "1.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "fuse-libs": { + "epoch": "0", + "version": "2.9.9", + "release": "15.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "jansson": { + "epoch": "0", + "version": "2.14", + "release": "1.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libbasicobjects": { + "epoch": "0", + "version": "0.1.1", + "release": "53.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libcollection": { + "epoch": "0", + "version": "0.7.0", + "release": "53.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libdb": { + "epoch": "0", + "version": "5.3.28", + "release": "53.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "iproute": { + "epoch": "0", + "version": "6.2.0", + "release": "5.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libdhash": { + "epoch": "0", + "version": "0.5.0", + "release": "53.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libgomp": { + "epoch": "0", + "version": "11.4.1", + "release": "2.1.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libref_array": { + "epoch": "0", + "version": "0.1.5", + "release": "53.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libseccomp": { + "epoch": "0", + "version": "2.5.2", + "release": "2.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libsigsegv": { + "epoch": "0", + "version": "2.13", + "release": "4.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "gawk": { + "epoch": "0", + "version": "5.1.0", + "release": "6.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libsss_idmap": { + "epoch": "0", + "version": "2.9.1", + "release": "4.el9_3", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libtasn1": { + "epoch": "0", + "version": "4.16.0", + "release": "8.el9_1", + "installdate": "1699429313", + "arch": "x86_64" + }, + "p11-kit-trust": { + "epoch": "0", + "version": "0.24.1", + "release": "2.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libyaml": { + "epoch": "0", + "version": "0.2.5", + "release": "7.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "lzo": { + "epoch": "0", + "version": "2.10", + "release": "7.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "numactl-libs": { + "epoch": "0", + "version": "2.0.16", + "release": "1.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "pcre": { + "epoch": "0", + "version": "8.44", + "release": "3.el9.3", + "installdate": "1699429313", + "arch": "x86_64" + }, + "grep": { + "epoch": "0", + "version": "3.6", + "release": "5.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "xz": { + "epoch": "0", + "version": "5.2.5", + "release": "8.el9_0", + "installdate": "1699429313", + "arch": "x86_64" + }, + "squashfs-tools": { + "epoch": "0", + "version": "4.4", + "release": "8.git1.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libbytesize": { + "epoch": "0", + "version": "2.5", + "release": "3.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libutempter": { + "epoch": "0", + "version": "1.2.1", + "release": "6.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "acl": { + "epoch": "0", + "version": "2.3.1", + "release": "3.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "gettext-libs": { + "epoch": "0", + "version": "0.21", + "release": "8.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "gettext": { + "epoch": "0", + "version": "0.21", + "release": "8.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "tar": { + "epoch": "2", + "version": "1.34", + "release": "6.el9_1", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libpsl": { + "epoch": "0", + "version": "0.21.1", + "release": "5.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libselinux-utils": { + "epoch": "0", + "version": "3.5", + "release": "1.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libibverbs": { + "epoch": "0", + "version": "46.0", + "release": "1.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libpcap": { + "epoch": "14", + "version": "1.10.0", + "release": "4.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libnl3-cli": { + "epoch": "0", + "version": "3.7.0", + "release": "1.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libteam": { + "epoch": "0", + "version": "1.31", + "release": "16.el9_1", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libcomps": { + "epoch": "0", + "version": "0.1.18", + "release": "1.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libksba": { + "epoch": "0", + "version": "1.5.1", + "release": "6.el9_1", + "installdate": "1699429313", + "arch": "x86_64" + }, + "nss-softokn-freebl": { + "epoch": "0", + "version": "3.90.0", + "release": "3.el9_2", + "installdate": "1699429313", + "arch": "x86_64" + }, + "nss-softokn": { + "epoch": "0", + "version": "3.90.0", + "release": "3.el9_2", + "installdate": "1699429313", + "arch": "x86_64" + }, + "e2fsprogs-libs": { + "epoch": "0", + "version": "1.46.5", + "release": "3.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libss": { + "epoch": "0", + "version": "1.46.5", + "release": "3.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "groff-base": { + "epoch": "0", + "version": "1.22.4", + "release": "10.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "snappy": { + "epoch": "0", + "version": "1.1.8", + "release": "8.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "libxcrypt-compat": { + "epoch": "0", + "version": "4.4.18", + "release": "3.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "pigz": { + "epoch": "0", + "version": "2.5", + "release": "4.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "hostname": { + "epoch": "0", + "version": "3.23", + "release": "6.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "kernel-tools-libs": { + "epoch": "0", + "version": "5.14.0", + "release": "362.8.1.el9_3", + "installdate": "1699429313", + "arch": "x86_64" + }, + "less": { + "epoch": "0", + "version": "590", + "release": "2.el9_2", + "installdate": "1699429313", + "arch": "x86_64" + }, + "systemd-rpm-macros": { + "epoch": "0", + "version": "252", + "release": "18.el9", + "installdate": "1699429313", + "arch": "noarch" + }, + "c-ares": { + "epoch": "0", + "version": "1.19.1", + "release": "1.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "cpio": { + "epoch": "0", + "version": "2.13", + "release": "16.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "diffutils": { + "epoch": "0", + "version": "3.7", + "release": "12.el9", + "installdate": "1699429313", + "arch": "x86_64" + }, + "dosfstools": { + "epoch": "0", + "version": "4.2", + "release": "3.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "hdparm": { + "epoch": "0", + "version": "9.62", + "release": "2.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "inih": { + "epoch": "0", + "version": "49", + "release": "6.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "libbrotli": { + "epoch": "0", + "version": "1.0.9", + "release": "6.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "libcbor": { + "epoch": "0", + "version": "0.7.0", + "release": "5.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "libdaemon": { + "epoch": "0", + "version": "0.14", + "release": "23.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "libeconf": { + "epoch": "0", + "version": "0.4.1", + "release": "3.el9_2", + "installdate": "1699429314", + "arch": "x86_64" + }, + "libndp": { + "epoch": "0", + "version": "1.8", + "release": "4.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "libnfnetlink": { + "epoch": "0", + "version": "1.0.1", + "release": "21.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "libnetfilter_conntrack": { + "epoch": "0", + "version": "1.0.9", + "release": "1.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "iptables-libs": { + "epoch": "0", + "version": "1.8.8", + "release": "6.el9_1", + "installdate": "1699429314", + "arch": "x86_64" + }, + "libnghttp2": { + "epoch": "0", + "version": "1.43.0", + "release": "5.el9_3.1", + "installdate": "1699429314", + "arch": "x86_64" + }, + "libpath_utils": { + "epoch": "0", + "version": "0.2.1", + "release": "53.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "libini_config": { + "epoch": "0", + "version": "1.3.1", + "release": "53.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "libpipeline": { + "epoch": "0", + "version": "1.5.3", + "release": "4.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "libsmbios": { + "epoch": "0", + "version": "2.4.3", + "release": "4.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "libsss_nss_idmap": { + "epoch": "0", + "version": "2.9.1", + "release": "4.el9_3", + "installdate": "1699429314", + "arch": "x86_64" + }, + "libsss_sudo": { + "epoch": "0", + "version": "2.9.1", + "release": "4.el9_3", + "installdate": "1699429314", + "arch": "x86_64" + }, + "libtraceevent": { + "epoch": "0", + "version": "1.5.3", + "release": "3.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "libverto": { + "epoch": "0", + "version": "0.3.2", + "release": "3.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "lmdb-libs": { + "epoch": "0", + "version": "0.9.29", + "release": "3.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "nettle": { + "epoch": "0", + "version": "3.8", + "release": "3.el9_0", + "installdate": "1699429314", + "arch": "x86_64" + }, + "gnutls": { + "epoch": "0", + "version": "3.7.6", + "release": "23.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "npth": { + "epoch": "0", + "version": "1.6", + "release": "8.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "sg3_utils-libs": { + "epoch": "0", + "version": "1.47", + "release": "9.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "slang": { + "epoch": "0", + "version": "2.3.2", + "release": "11.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "newt": { + "epoch": "0", + "version": "0.52.21", + "release": "11.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "userspace-rcu": { + "epoch": "0", + "version": "0.12.1", + "release": "6.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "checkpolicy": { + "epoch": "0", + "version": "3.5", + "release": "1.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "libestr": { + "epoch": "0", + "version": "0.1.11", + "release": "4.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "libfastjson": { + "epoch": "0", + "version": "0.99.9", + "release": "5.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "libmaxminddb": { + "epoch": "0", + "version": "1.5.2", + "release": "3.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "ipcalc": { + "epoch": "0", + "version": "1.0.0", + "release": "5.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "linux-firmware-whence": { + "epoch": "0", + "version": "20230814", + "release": "140.el9_3", + "installdate": "1699429314", + "arch": "noarch" + }, + "linux-firmware": { + "epoch": "0", + "version": "20230814", + "release": "140.el9_3", + "installdate": "1699429314", + "arch": "noarch" + }, + "libssh-config": { + "epoch": "0", + "version": "0.10.4", + "release": "11.el9", + "installdate": "1699429314", + "arch": "noarch" + }, + "kbd-misc": { + "epoch": "0", + "version": "2.4.0", + "release": "9.el9", + "installdate": "1699429314", + "arch": "noarch" + }, + "kbd-legacy": { + "epoch": "0", + "version": "2.4.0", + "release": "9.el9", + "installdate": "1699429314", + "arch": "noarch" + }, + "fonts-filesystem": { + "epoch": "1", + "version": "2.0.5", + "release": "7.el9.1", + "installdate": "1699429314", + "arch": "noarch" + }, + "dejavu-sans-fonts": { + "epoch": "0", + "version": "2.37", + "release": "18.el9", + "installdate": "1699429314", + "arch": "noarch" + }, + "langpacks-core-font-en": { + "epoch": "0", + "version": "3.0", + "release": "16.el9", + "installdate": "1699429314", + "arch": "noarch" + }, + "langpacks-core-en": { + "epoch": "0", + "version": "3.0", + "release": "16.el9", + "installdate": "1699429314", + "arch": "noarch" + }, + "dhcp-common": { + "epoch": "12", + "version": "4.4.2", + "release": "19.b1.el9", + "installdate": "1699429314", + "arch": "noarch" + }, + "coreutils-common": { + "epoch": "0", + "version": "8.32", + "release": "34.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "openssl-libs": { + "epoch": "1", + "version": "3.0.7", + "release": "24.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "coreutils": { + "epoch": "0", + "version": "8.32", + "release": "34.el9", + "installdate": "1699429314", + "arch": "x86_64" + }, + "ca-certificates": { + "epoch": "0", + "version": "2023.2.60_v7.0.306", + "release": "90.1.el9_2", + "installdate": "1699429314", + "arch": "noarch" + }, + "systemd-libs": { + "epoch": "0", + "version": "252", + "release": "18.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "libblkid": { + "epoch": "0", + "version": "2.37.4", + "release": "15.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "kmod-libs": { + "epoch": "0", + "version": "28", + "release": "9.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "krb5-libs": { + "epoch": "0", + "version": "1.21.1", + "release": "1.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "dbus-libs": { + "epoch": "1", + "version": "1.12.20", + "release": "8.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "libmount": { + "epoch": "0", + "version": "2.37.4", + "release": "15.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "glib2": { + "epoch": "0", + "version": "2.68.4", + "release": "11.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "json-glib": { + "epoch": "0", + "version": "1.6.6", + "release": "1.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "polkit-libs": { + "epoch": "0", + "version": "0.117", + "release": "11.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "kmod": { + "epoch": "0", + "version": "28", + "release": "9.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "NetworkManager-libnm": { + "epoch": "1", + "version": "1.44.0", + "release": "3.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "util-linux-core": { + "epoch": "0", + "version": "2.37.4", + "release": "15.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "libfdisk": { + "epoch": "0", + "version": "2.37.4", + "release": "15.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "procps-ng": { + "epoch": "0", + "version": "3.3.17", + "release": "13.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "gzip": { + "epoch": "0", + "version": "1.12", + "release": "1.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "cracklib": { + "epoch": "0", + "version": "2.9.6", + "release": "27.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "libgudev": { + "epoch": "0", + "version": "237", + "release": "1.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "shared-mime-info": { + "epoch": "0", + "version": "2.1", + "release": "5.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "e2fsprogs": { + "epoch": "0", + "version": "1.46.5", + "release": "3.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "libusbx": { + "epoch": "0", + "version": "1.0.26", + "release": "1.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "openssl": { + "epoch": "1", + "version": "3.0.7", + "release": "24.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "libarchive": { + "epoch": "0", + "version": "3.5.3", + "release": "4.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "libgusb": { + "epoch": "0", + "version": "0.3.8", + "release": "2.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "libxmlb": { + "epoch": "0", + "version": "0.3.10", + "release": "1.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "cracklib-dicts": { + "epoch": "0", + "version": "2.9.6", + "release": "27.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "libpwquality": { + "epoch": "0", + "version": "1.4.4", + "release": "8.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "pam": { + "epoch": "0", + "version": "1.5.1", + "release": "15.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "util-linux": { + "epoch": "0", + "version": "2.37.4", + "release": "15.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "dbus": { + "epoch": "1", + "version": "1.12.20", + "release": "8.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "systemd-pam": { + "epoch": "0", + "version": "252", + "release": "18.el9", + "installdate": "1699429315", + "arch": "x86_64" + }, + "systemd": { + "epoch": "0", + "version": "252", + "release": "18.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "dbus-common": { + "epoch": "1", + "version": "1.12.20", + "release": "8.el9", + "installdate": "1699429316", + "arch": "noarch" + }, + "dbus-broker": { + "epoch": "0", + "version": "28", + "release": "7.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "grub2-common": { + "epoch": "1", + "version": "2.06", + "release": "70.el9_3.1", + "installdate": "1699429316", + "arch": "noarch" + }, + "polkit": { + "epoch": "0", + "version": "0.117", + "release": "11.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "polkit-pkla-compat": { + "epoch": "0", + "version": "0.1", + "release": "21.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "cronie-anacron": { + "epoch": "0", + "version": "1.5.7", + "release": "8.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "cronie": { + "epoch": "0", + "version": "1.5.7", + "release": "8.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "crontabs": { + "epoch": "0", + "version": "1.11", + "release": "27.20190603git.el9_0", + "installdate": "1699429316", + "arch": "noarch" + }, + "initscripts-service": { + "epoch": "0", + "version": "10.11.5", + "release": "1.el9", + "installdate": "1699429316", + "arch": "noarch" + }, + "iputils": { + "epoch": "0", + "version": "20210202", + "release": "9.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "dhcp-client": { + "epoch": "12", + "version": "4.4.2", + "release": "19.b1.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "openssh": { + "epoch": "0", + "version": "8.7p1", + "release": "34.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "virt-what": { + "epoch": "0", + "version": "1.25", + "release": "5.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "grub2-pc-modules": { + "epoch": "1", + "version": "2.06", + "release": "70.el9_3.1", + "installdate": "1699429316", + "arch": "noarch" + }, + "authselect-libs": { + "epoch": "0", + "version": "1.2.6", + "release": "2.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "device-mapper-libs": { + "epoch": "9", + "version": "1.02.195", + "release": "3.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "device-mapper": { + "epoch": "9", + "version": "1.02.195", + "release": "3.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "grub2-tools-minimal": { + "epoch": "1", + "version": "2.06", + "release": "70.el9_3.1", + "installdate": "1699429316", + "arch": "x86_64" + }, + "cryptsetup-libs": { + "epoch": "0", + "version": "2.6.0", + "release": "3.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "parted": { + "epoch": "0", + "version": "3.5", + "release": "2.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "libblockdev-utils": { + "epoch": "0", + "version": "2.28", + "release": "7.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "xfsprogs": { + "epoch": "0", + "version": "5.19.0", + "release": "4.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "libblockdev": { + "epoch": "0", + "version": "2.28", + "release": "7.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "libblockdev-fs": { + "epoch": "0", + "version": "2.28", + "release": "7.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "libblockdev-loop": { + "epoch": "0", + "version": "2.28", + "release": "7.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "libblockdev-part": { + "epoch": "0", + "version": "2.28", + "release": "7.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "libblockdev-swap": { + "epoch": "0", + "version": "2.28", + "release": "7.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "kpartx": { + "epoch": "0", + "version": "0.8.7", + "release": "22.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "elfutils-default-yama-scope": { + "epoch": "0", + "version": "0.189", + "release": "3.el9", + "installdate": "1699429316", + "arch": "noarch" + }, + "elfutils-libs": { + "epoch": "0", + "version": "0.189", + "release": "3.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "libkcapi": { + "epoch": "0", + "version": "1.3.1", + "release": "3.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "libkcapi-hmaccalc": { + "epoch": "0", + "version": "1.3.1", + "release": "3.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "logrotate": { + "epoch": "0", + "version": "3.18.0", + "release": "8.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "mdadm": { + "epoch": "0", + "version": "4.2", + "release": "9.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "libblockdev-mdraid": { + "epoch": "0", + "version": "2.28", + "release": "7.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "oddjob": { + "epoch": "0", + "version": "0.34.7", + "release": "7.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "kbd": { + "epoch": "0", + "version": "2.4.0", + "release": "9.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "sssd-client": { + "epoch": "0", + "version": "2.9.1", + "release": "4.el9_3", + "installdate": "1699429316", + "arch": "x86_64" + }, + "librhsm": { + "epoch": "0", + "version": "0.0.3", + "release": "7.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "gobject-introspection": { + "epoch": "0", + "version": "1.68.0", + "release": "11.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "initscripts-rename-device": { + "epoch": "0", + "version": "10.11.5", + "release": "1.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "initscripts": { + "epoch": "0", + "version": "10.11.5", + "release": "1.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "libgcab1": { + "epoch": "0", + "version": "1.4", + "release": "6.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "libudisks2": { + "epoch": "0", + "version": "2.9.4", + "release": "9.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "dbus-tools": { + "epoch": "1", + "version": "1.12.20", + "release": "8.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "oddjob-mkhomedir": { + "epoch": "0", + "version": "0.34.7", + "release": "7.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "authselect": { + "epoch": "0", + "version": "1.2.6", + "release": "2.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "cyrus-sasl-lib": { + "epoch": "0", + "version": "2.1.27", + "release": "21.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "libssh": { + "epoch": "0", + "version": "0.10.4", + "release": "11.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "pciutils": { + "epoch": "0", + "version": "3.7.0", + "release": "5.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "libatasmart": { + "epoch": "0", + "version": "0.19", + "release": "22.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "python3-pip-wheel": { + "epoch": "0", + "version": "21.2.3", + "release": "7.el9", + "installdate": "1699429316", + "arch": "noarch" + }, + "python-unversioned-command": { + "epoch": "0", + "version": "3.9.18", + "release": "1.el9_3", + "installdate": "1699429316", + "arch": "noarch" + }, + "python3": { + "epoch": "0", + "version": "3.9.18", + "release": "1.el9_3", + "installdate": "1699429316", + "arch": "x86_64" + }, + "python3-libs": { + "epoch": "0", + "version": "3.9.18", + "release": "1.el9_3", + "installdate": "1699429316", + "arch": "x86_64" + }, + "python3-setuptools": { + "epoch": "0", + "version": "53.0.0", + "release": "12.el9", + "installdate": "1699429316", + "arch": "noarch" + }, + "python3-six": { + "epoch": "0", + "version": "1.15.0", + "release": "9.el9", + "installdate": "1699429316", + "arch": "noarch" + }, + "python3-dbus": { + "epoch": "0", + "version": "1.2.18", + "release": "2.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "python3-dateutil": { + "epoch": "1", + "version": "2.8.1", + "release": "7.el9", + "installdate": "1699429316", + "arch": "noarch" + }, + "python3-gobject-base-noarch": { + "epoch": "0", + "version": "3.40.1", + "release": "6.el9", + "installdate": "1699429316", + "arch": "noarch" + }, + "python3-gobject-base": { + "epoch": "0", + "version": "3.40.1", + "release": "6.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "python3-libselinux": { + "epoch": "0", + "version": "3.5", + "release": "1.el9", + "installdate": "1699429316", + "arch": "x86_64" + }, + "python3-iniparse": { + "epoch": "0", + "version": "0.4", + "release": "45.el9", + "installdate": "1699429316", + "arch": "noarch" + }, + "python3-distro": { + "epoch": "0", + "version": "1.5.0", + "release": "7.el9", + "installdate": "1699429317", + "arch": "noarch" + }, + "python3-idna": { + "epoch": "0", + "version": "2.10", + "release": "7.el9", + "installdate": "1699429317", + "arch": "noarch" + }, + "python3-pyyaml": { + "epoch": "0", + "version": "5.4.1", + "release": "6.el9", + "installdate": "1699429317", + "arch": "x86_64" + }, + "python3-libsemanage": { + "epoch": "0", + "version": "3.5", + "release": "2.el9", + "installdate": "1699429317", + "arch": "x86_64" + }, + "python3-linux-procfs": { + "epoch": "0", + "version": "0.7.1", + "release": "1.el9", + "installdate": "1699429317", + "arch": "noarch" + }, + "python3-pyudev": { + "epoch": "0", + "version": "0.22.0", + "release": "6.el9", + "installdate": "1699429317", + "arch": "noarch" + }, + "python3-configobj": { + "epoch": "0", + "version": "5.0.6", + "release": "25.el9", + "installdate": "1699429317", + "arch": "noarch" + }, + "python3-inotify": { + "epoch": "0", + "version": "0.9.6", + "release": "25.el9", + "installdate": "1699429317", + "arch": "noarch" + }, + "python3-setools": { + "epoch": "0", + "version": "4.4.3", + "release": "1.el9", + "installdate": "1699429317", + "arch": "x86_64" + }, + "python3-libcomps": { + "epoch": "0", + "version": "0.1.18", + "release": "1.el9", + "installdate": "1699429317", + "arch": "x86_64" + }, + "kernel-tools": { + "epoch": "0", + "version": "5.14.0", + "release": "362.8.1.el9_3", + "installdate": "1699429317", + "arch": "x86_64" + }, + "python3-chardet": { + "epoch": "0", + "version": "4.0.0", + "release": "5.el9", + "installdate": "1699429317", + "arch": "noarch" + }, + "python3-decorator": { + "epoch": "0", + "version": "4.4.2", + "release": "6.el9", + "installdate": "1699429317", + "arch": "noarch" + }, + "python3-perf": { + "epoch": "0", + "version": "5.14.0", + "release": "362.8.1.el9_3", + "installdate": "1699429317", + "arch": "x86_64" + }, + "python3-pysocks": { + "epoch": "0", + "version": "1.7.1", + "release": "12.el9", + "installdate": "1699429317", + "arch": "noarch" + }, + "python3-urllib3": { + "epoch": "0", + "version": "1.26.5", + "release": "3.el9", + "installdate": "1699429317", + "arch": "noarch" + }, + "python3-requests": { + "epoch": "0", + "version": "2.25.1", + "release": "7.el9_2", + "installdate": "1699429317", + "arch": "noarch" + }, + "python3-cloud-what": { + "epoch": "0", + "version": "1.29.38", + "release": "1.el9_3", + "installdate": "1699429317", + "arch": "x86_64" + }, + "python3-systemd": { + "epoch": "0", + "version": "234", + "release": "18.el9", + "installdate": "1699429317", + "arch": "x86_64" + }, + "teamd": { + "epoch": "0", + "version": "1.31", + "release": "16.el9_1", + "installdate": "1699429317", + "arch": "x86_64" + }, + "python3-attrs": { + "epoch": "0", + "version": "20.3.0", + "release": "7.el9", + "installdate": "1699429317", + "arch": "noarch" + }, + "python3-audit": { + "epoch": "0", + "version": "3.0.7", + "release": "104.el9", + "installdate": "1699429317", + "arch": "x86_64" + }, + "python3-file-magic": { + "epoch": "0", + "version": "5.39", + "release": "14.el9", + "installdate": "1699429317", + "arch": "noarch" + }, + "python3-jsonpointer": { + "epoch": "0", + "version": "2.0", + "release": "4.el9", + "installdate": "1699429317", + "arch": "noarch" + }, + "python3-jsonpatch": { + "epoch": "0", + "version": "1.21", + "release": "16.el9", + "installdate": "1699429317", + "arch": "noarch" + }, + "python3-markupsafe": { + "epoch": "0", + "version": "1.1.1", + "release": "12.el9", + "installdate": "1699429317", + "arch": "x86_64" + }, + "python3-netifaces": { + "epoch": "0", + "version": "0.10.6", + "release": "15.el9", + "installdate": "1699429317", + "arch": "x86_64" + }, + "python3-oauthlib": { + "epoch": "0", + "version": "3.1.1", + "release": "5.el9", + "installdate": "1699429317", + "arch": "noarch" + }, + "python3-prettytable": { + "epoch": "0", + "version": "0.7.2", + "release": "27.el9", + "installdate": "1699429317", + "arch": "noarch" + }, + "python3-pyrsistent": { + "epoch": "0", + "version": "0.17.3", + "release": "8.el9", + "installdate": "1699429317", + "arch": "x86_64" + }, + "python3-jsonschema": { + "epoch": "0", + "version": "3.2.0", + "release": "13.el9", + "installdate": "1699429317", + "arch": "noarch" + }, + "python3-pyserial": { + "epoch": "0", + "version": "3.4", + "release": "12.el9", + "installdate": "1699429317", + "arch": "noarch" + }, + "python3-pytz": { + "epoch": "0", + "version": "2021.1", + "release": "5.el9", + "installdate": "1699429317", + "arch": "noarch" + }, + "python3-babel": { + "epoch": "0", + "version": "2.9.1", + "release": "2.el9", + "installdate": "1699429317", + "arch": "noarch" + }, + "python3-jinja2": { + "epoch": "0", + "version": "2.11.3", + "release": "4.el9", + "installdate": "1699429317", + "arch": "noarch" + }, + "libevent": { + "epoch": "0", + "version": "2.1.12", + "release": "6.el9", + "installdate": "1699429317", + "arch": "x86_64" + }, + "openldap": { + "epoch": "0", + "version": "2.6.3", + "release": "1.el9", + "installdate": "1699429317", + "arch": "x86_64" + }, + "libcurl": { + "epoch": "0", + "version": "7.76.1", + "release": "26.el9", + "installdate": "1699429317", + "arch": "x86_64" + }, + "gnupg2": { + "epoch": "0", + "version": "2.3.3", + "release": "4.el9", + "installdate": "1699429317", + "arch": "x86_64" + }, + "gpgme": { + "epoch": "0", + "version": "1.15.1", + "release": "6.el9", + "installdate": "1699429317", + "arch": "x86_64" + }, + "librepo": { + "epoch": "0", + "version": "1.14.5", + "release": "1.el9", + "installdate": "1699429317", + "arch": "x86_64" + }, + "tpm2-tss": { + "epoch": "0", + "version": "3.2.2", + "release": "2.el9", + "installdate": "1699429317", + "arch": "x86_64" + }, + "systemd-udev": { + "epoch": "0", + "version": "252", + "release": "18.el9", + "installdate": "1699429317", + "arch": "x86_64" + }, + "dracut": { + "epoch": "0", + "version": "057", + "release": "44.git20230822.el9", + "installdate": "1699429317", + "arch": "x86_64" + }, + "NetworkManager": { + "epoch": "1", + "version": "1.44.0", + "release": "3.el9", + "installdate": "1699429317", + "arch": "x86_64" + }, + "kernel-modules-core": { + "epoch": "0", + "version": "5.14.0", + "release": "362.8.1.el9_3", + "installdate": "1699429318", + "arch": "x86_64" + }, + "kernel-core": { + "epoch": "0", + "version": "5.14.0", + "release": "362.8.1.el9_3", + "installdate": "1699429319", + "arch": "x86_64" + }, + "elfutils-debuginfod-client": { + "epoch": "0", + "version": "0.189", + "release": "3.el9", + "installdate": "1699429319", + "arch": "x86_64" + }, + "binutils-gold": { + "epoch": "0", + "version": "2.35.2", + "release": "42.el9", + "installdate": "1699429319", + "arch": "x86_64" + }, + "binutils": { + "epoch": "0", + "version": "2.35.2", + "release": "42.el9", + "installdate": "1699429319", + "arch": "x86_64" + }, + "libldb": { + "epoch": "0", + "version": "2.7.2", + "release": "2.el9", + "installdate": "1699429319", + "arch": "x86_64" + }, + "libuser": { + "epoch": "0", + "version": "0.63", + "release": "13.el9", + "installdate": "1699429319", + "arch": "x86_64" + }, + "passwd": { + "epoch": "0", + "version": "0.80", + "release": "12.el9", + "installdate": "1699429319", + "arch": "x86_64" + }, + "usermode": { + "epoch": "0", + "version": "1.114", + "release": "4.el9", + "installdate": "1699429319", + "arch": "x86_64" + }, + "kernel-modules": { + "epoch": "0", + "version": "5.14.0", + "release": "362.8.1.el9_3", + "installdate": "1699429319", + "arch": "x86_64" + }, + "dracut-network": { + "epoch": "0", + "version": "057", + "release": "44.git20230822.el9", + "installdate": "1699429323", + "arch": "x86_64" + }, + "dracut-squash": { + "epoch": "0", + "version": "057", + "release": "44.git20230822.el9", + "installdate": "1699429324", + "arch": "x86_64" + }, + "libfido2": { + "epoch": "0", + "version": "1.13.0", + "release": "1.el9", + "installdate": "1699429324", + "arch": "x86_64" + }, + "os-prober": { + "epoch": "0", + "version": "1.77", + "release": "10.el9", + "installdate": "1699429324", + "arch": "x86_64" + }, + "grub2-tools": { + "epoch": "1", + "version": "2.06", + "release": "70.el9_3.1", + "installdate": "1699429324", + "arch": "x86_64" + }, + "flashrom": { + "epoch": "0", + "version": "1.2", + "release": "10.el9", + "installdate": "1699429324", + "arch": "x86_64" + }, + "ima-evm-utils": { + "epoch": "0", + "version": "1.4", + "release": "4.el9", + "installdate": "1699429324", + "arch": "x86_64" + }, + "python3-librepo": { + "epoch": "0", + "version": "1.14.5", + "release": "1.el9", + "installdate": "1699429324", + "arch": "x86_64" + }, + "libjcat": { + "epoch": "0", + "version": "0.1.6", + "release": "3.el9", + "installdate": "1699429324", + "arch": "x86_64" + }, + "python3-gpg": { + "epoch": "0", + "version": "1.15.1", + "release": "6.el9", + "installdate": "1699429324", + "arch": "x86_64" + }, + "curl": { + "epoch": "0", + "version": "7.76.1", + "release": "26.el9", + "installdate": "1699429324", + "arch": "x86_64" + }, + "rpm": { + "epoch": "0", + "version": "4.16.1.3", + "release": "25.el9", + "installdate": "1699429324", + "arch": "x86_64" + }, + "rpm-libs": { + "epoch": "0", + "version": "4.16.1.3", + "release": "25.el9", + "installdate": "1699429324", + "arch": "x86_64" + }, + "policycoreutils": { + "epoch": "0", + "version": "3.5", + "release": "2.el9", + "installdate": "1699429324", + "arch": "x86_64" + }, + "selinux-policy": { + "epoch": "0", + "version": "38.1.23", + "release": "1.el9", + "installdate": "1699429324", + "arch": "noarch" + }, + "selinux-policy-targeted": { + "epoch": "0", + "version": "38.1.23", + "release": "1.el9", + "installdate": "1699429324", + "arch": "noarch" + }, + "python3-policycoreutils": { + "epoch": "0", + "version": "3.5", + "release": "2.el9", + "installdate": "1699429330", + "arch": "noarch" + }, + "policycoreutils-python-utils": { + "epoch": "0", + "version": "3.5", + "release": "2.el9", + "installdate": "1699429331", + "arch": "noarch" + }, + "insights-client": { + "epoch": "0", + "version": "3.2.2", + "release": "1.el9_3", + "installdate": "1699429331", + "arch": "noarch" + }, + "grubby": { + "epoch": "0", + "version": "8.40", + "release": "63.el9", + "installdate": "1699429331", + "arch": "x86_64" + }, + "libmodulemd": { + "epoch": "0", + "version": "2.13.0", + "release": "2.el9", + "installdate": "1699429331", + "arch": "x86_64" + }, + "libsolv": { + "epoch": "0", + "version": "0.7.24", + "release": "2.el9", + "installdate": "1699429331", + "arch": "x86_64" + }, + "libdnf": { + "epoch": "0", + "version": "0.69.0", + "release": "6.el9_3", + "installdate": "1699429331", + "arch": "x86_64" + }, + "python3-libdnf": { + "epoch": "0", + "version": "0.69.0", + "release": "6.el9_3", + "installdate": "1699429331", + "arch": "x86_64" + }, + "python3-hawkey": { + "epoch": "0", + "version": "0.69.0", + "release": "6.el9_3", + "installdate": "1699429331", + "arch": "x86_64" + }, + "libdnf-plugin-subscription-manager": { + "epoch": "0", + "version": "1.29.38", + "release": "1.el9_3", + "installdate": "1699429331", + "arch": "x86_64" + }, + "amazon-libdnf-plugin": { + "epoch": "0", + "version": "1.0.1", + "release": "1.el9", + "installdate": "1699429331", + "arch": "x86_64" + }, + "crypto-policies-scripts": { + "epoch": "0", + "version": "20230731", + "release": "1.git94f0e2c.el9_3.1", + "installdate": "1699429331", + "arch": "noarch" + }, + "nss-sysinit": { + "epoch": "0", + "version": "3.90.0", + "release": "3.el9_2", + "installdate": "1699429331", + "arch": "x86_64" + }, + "nss": { + "epoch": "0", + "version": "3.90.0", + "release": "3.el9_2", + "installdate": "1699429331", + "arch": "x86_64" + }, + "volume_key-libs": { + "epoch": "0", + "version": "0.3.12", + "release": "15.el9", + "installdate": "1699429331", + "arch": "x86_64" + }, + "libblockdev-crypto": { + "epoch": "0", + "version": "2.28", + "release": "7.el9", + "installdate": "1699429331", + "arch": "x86_64" + }, + "udisks2": { + "epoch": "0", + "version": "2.9.4", + "release": "9.el9", + "installdate": "1699429331", + "arch": "x86_64" + }, + "fwupd-plugin-flashrom": { + "epoch": "0", + "version": "1.8.16", + "release": "1.el9", + "installdate": "1699429331", + "arch": "x86_64" + }, + "fwupd": { + "epoch": "0", + "version": "1.8.16", + "release": "1.el9", + "installdate": "1699429331", + "arch": "x86_64" + }, + "rhc": { + "epoch": "1", + "version": "0.2.4", + "release": "3.el9_3", + "installdate": "1699429331", + "arch": "x86_64" + }, + "rpm-build-libs": { + "epoch": "0", + "version": "4.16.1.3", + "release": "25.el9", + "installdate": "1699429338", + "arch": "x86_64" + }, + "rpm-sign-libs": { + "epoch": "0", + "version": "4.16.1.3", + "release": "25.el9", + "installdate": "1699429338", + "arch": "x86_64" + }, + "python3-rpm": { + "epoch": "0", + "version": "4.16.1.3", + "release": "25.el9", + "installdate": "1699429338", + "arch": "x86_64" + }, + "python3-subscription-manager-rhsm": { + "epoch": "0", + "version": "1.29.38", + "release": "1.el9_3", + "installdate": "1699429338", + "arch": "x86_64" + }, + "rpm-plugin-systemd-inhibit": { + "epoch": "0", + "version": "4.16.1.3", + "release": "25.el9", + "installdate": "1699429338", + "arch": "x86_64" + }, + "python3-dnf": { + "epoch": "0", + "version": "4.14.0", + "release": "8.el9", + "installdate": "1699429338", + "arch": "noarch" + }, + "dnf": { + "epoch": "0", + "version": "4.14.0", + "release": "8.el9", + "installdate": "1699429338", + "arch": "noarch" + }, + "python3-dnf-plugins-core": { + "epoch": "0", + "version": "4.3.0", + "release": "11.el9_3", + "installdate": "1699429338", + "arch": "noarch" + }, + "subscription-manager": { + "epoch": "0", + "version": "1.29.38", + "release": "1.el9_3", + "installdate": "1699429338", + "arch": "x86_64" + }, + "dnf-plugins-core": { + "epoch": "0", + "version": "4.3.0", + "release": "11.el9_3", + "installdate": "1699429338", + "arch": "noarch" + }, + "rsyslog-logrotate": { + "epoch": "0", + "version": "8.2102.0", + "release": "117.el9", + "installdate": "1699429338", + "arch": "x86_64" + }, + "rsyslog": { + "epoch": "0", + "version": "8.2102.0", + "release": "117.el9", + "installdate": "1699429338", + "arch": "x86_64" + }, + "libsss_certmap": { + "epoch": "0", + "version": "2.9.1", + "release": "4.el9_3", + "installdate": "1699429338", + "arch": "x86_64" + }, + "sssd-common": { + "epoch": "0", + "version": "2.9.1", + "release": "4.el9_3", + "installdate": "1699429338", + "arch": "x86_64" + }, + "mokutil": { + "epoch": "2", + "version": "0.6.0", + "release": "4.el9", + "installdate": "1699429338", + "arch": "x86_64" + }, + "shim-x64": { + "epoch": "0", + "version": "15.6", + "release": "1.el9", + "installdate": "1699429338", + "arch": "x86_64" + }, + "sssd-kcm": { + "epoch": "0", + "version": "2.9.1", + "release": "4.el9_3", + "installdate": "1699429338", + "arch": "x86_64" + }, + "yum-utils": { + "epoch": "0", + "version": "4.3.0", + "release": "11.el9_3", + "installdate": "1699429338", + "arch": "noarch" + }, + "tuned": { + "epoch": "0", + "version": "2.21.0", + "release": "1.el9_3", + "installdate": "1699429338", + "arch": "noarch" + }, + "redhat-cloud-client-configuration": { + "epoch": "0", + "version": "1", + "release": "11.el9", + "installdate": "1699429338", + "arch": "noarch" + }, + "yum": { + "epoch": "0", + "version": "4.14.0", + "release": "8.el9", + "installdate": "1699429339", + "arch": "noarch" + }, + "rh-amazon-rhui-client": { + "epoch": "0", + "version": "4.0.13", + "release": "1.el9", + "installdate": "1699429339", + "arch": "noarch" + }, + "kexec-tools": { + "epoch": "0", + "version": "2.0.26", + "release": "8.el9", + "installdate": "1699429339", + "arch": "x86_64" + }, + "cloud-init": { + "epoch": "0", + "version": "23.1.1", + "release": "11.el9", + "installdate": "1699429339", + "arch": "noarch" + }, + "rpm-plugin-selinux": { + "epoch": "0", + "version": "4.16.1.3", + "release": "25.el9", + "installdate": "1699429339", + "arch": "x86_64" + }, + "rpm-plugin-audit": { + "epoch": "0", + "version": "4.16.1.3", + "release": "25.el9", + "installdate": "1699429339", + "arch": "x86_64" + }, + "grub2-efi-x64": { + "epoch": "1", + "version": "2.06", + "release": "70.el9_3.1", + "installdate": "1699429339", + "arch": "x86_64" + }, + "grub2-pc": { + "epoch": "1", + "version": "2.06", + "release": "70.el9_3.1", + "installdate": "1699429339", + "arch": "x86_64" + }, + "openssh-clients": { + "epoch": "0", + "version": "8.7p1", + "release": "34.el9", + "installdate": "1699429339", + "arch": "x86_64" + }, + "kernel": { + "epoch": "0", + "version": "5.14.0", + "release": "362.8.1.el9_3", + "installdate": "1699429339", + "arch": "x86_64" + }, + "NetworkManager-team": { + "epoch": "1", + "version": "1.44.0", + "release": "3.el9", + "installdate": "1699429339", + "arch": "x86_64" + }, + "NetworkManager-tui": { + "epoch": "1", + "version": "1.44.0", + "release": "3.el9", + "installdate": "1699429339", + "arch": "x86_64" + }, + "NetworkManager-cloud-setup": { + "epoch": "1", + "version": "1.44.0", + "release": "3.el9", + "installdate": "1699429339", + "arch": "x86_64" + }, + "dracut-config-generic": { + "epoch": "0", + "version": "057", + "release": "44.git20230822.el9", + "installdate": "1699429339", + "arch": "x86_64" + }, + "sudo": { + "epoch": "0", + "version": "1.9.5p2", + "release": "9.el9", + "installdate": "1699429339", + "arch": "x86_64" + }, + "authselect-compat": { + "epoch": "0", + "version": "1.2.6", + "release": "2.el9", + "installdate": "1699429339", + "arch": "x86_64" + }, + "openssh-server": { + "epoch": "0", + "version": "8.7p1", + "release": "34.el9", + "installdate": "1699429339", + "arch": "x86_64" + }, + "audit": { + "epoch": "0", + "version": "3.0.7", + "release": "104.el9", + "installdate": "1699429339", + "arch": "x86_64" + }, + "chrony": { + "epoch": "0", + "version": "4.3", + "release": "1.el9", + "installdate": "1699429339", + "arch": "x86_64" + }, + "microcode_ctl": { + "epoch": "4", + "version": "20230808", + "release": "2.el9", + "installdate": "1699429339", + "arch": "noarch" + }, + "cloud-utils-growpart": { + "epoch": "0", + "version": "0.33", + "release": "1.el9", + "installdate": "1699429340", + "arch": "x86_64" + }, + "man-db": { + "epoch": "0", + "version": "2.9.3", + "release": "7.el9", + "installdate": "1699429340", + "arch": "x86_64" + }, + "irqbalance": { + "epoch": "2", + "version": "1.9.2", + "release": "3.el9", + "installdate": "1699429340", + "arch": "x86_64" + }, + "prefixdevname": { + "epoch": "0", + "version": "0.1.0", + "release": "8.el9", + "installdate": "1699429341", + "arch": "x86_64" + }, + "rsync": { + "epoch": "0", + "version": "3.2.3", + "release": "19.el9", + "installdate": "1699429341", + "arch": "x86_64" + }, + "langpacks-en": { + "epoch": "0", + "version": "3.0", + "release": "16.el9", + "installdate": "1699429341", + "arch": "noarch" + }, + "sg3_utils": { + "epoch": "0", + "version": "1.47", + "release": "9.el9", + "installdate": "1699429341", + "arch": "x86_64" + }, + "iproute-tc": { + "epoch": "0", + "version": "6.2.0", + "release": "5.el9", + "installdate": "1699429341", + "arch": "x86_64" + }, + "vim-minimal": { + "epoch": "2", + "version": "8.2.2637", + "release": "20.el9_1", + "installdate": "1699429341", + "arch": "x86_64" + }, + "efibootmgr": { + "epoch": "0", + "version": "16", + "release": "12.el9", + "installdate": "1699429341", + "arch": "x86_64" + }, + "lshw": { + "epoch": "0", + "version": "B.02.19.2", + "release": "10.el9", + "installdate": "1699429341", + "arch": "x86_64" + }, + "ncurses": { + "epoch": "0", + "version": "6.2", + "release": "10.20210508.el9", + "installdate": "1699429341", + "arch": "x86_64" + }, + "libsysfs": { + "epoch": "0", + "version": "2.1.1", + "release": "10.el9", + "installdate": "1699429341", + "arch": "x86_64" + }, + "lsscsi": { + "epoch": "0", + "version": "0.32", + "release": "6.el9", + "installdate": "1699429341", + "arch": "x86_64" + }, + "rootfiles": { + "epoch": "0", + "version": "8.1", + "release": "31.el9", + "installdate": "1699429341", + "arch": "noarch" + }, + "gpg-pubkey": { + "epoch": "0", + "version": "f21541eb", + "release": "4a5233e7", + "installdate": "1699972225", + "arch": "(none)", + "versions": [ + { + "epoch": "0", + "version": "fd431d51", + "release": "4ae0493b", + "installdate": "1699972225", + "arch": "(none)" + }, + { + "epoch": "0", + "version": "5a6340b3", + "release": "6229229e", + "installdate": "1699972225", + "arch": "(none)" + }, + { + "epoch": "0", + "version": "f21541eb", + "release": "4a5233e7", + "installdate": "1699972225", + "arch": "(none)" + } + ] + }, + "chef": { + "epoch": "0", + "version": "17.9.26", + "release": "1.el8", + "installdate": "1699972390", + "arch": "x86_64" + } + }, + "platform": "redhat", + "platform_family": "rhel", + "platform_version": "9.3", + "root_group": "root", + "shard_seed": 160749321, + "shells": [ + "/bin/sh", + "/bin/bash", + "/usr/bin/sh", + "/usr/bin/bash" + ], + "time": { + "timezone": "GMT" + }, + "uptime": "30 days 15 hours 07 minutes 30 seconds", + "uptime_seconds": 2646450, + "virtualization": { + "systems": {} + } +} diff --git a/lib/fauxhai/platforms/rocky/9.json b/lib/fauxhai/platforms/rocky/9.json new file mode 100644 index 00000000..83ffa368 --- /dev/null +++ b/lib/fauxhai/platforms/rocky/9.json @@ -0,0 +1,3873 @@ +{ + "block_device": { + "sda": { + "size": "134217728", + "removable": "0", + "model": "VBOX HARDDISK", + "rev": "1.0", + "state": "running", + "timeout": "30", + "vendor": "ATA", + "queue_depth": "32", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + } + }, + "chef_packages": { + "chef": { + "version": "18.1.0", + "chef_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/chef-18.1.0/lib", + "chef_effortless": null + }, + "ohai": { + "version": "18.0.26", + "ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.1.0/gems/ohai-18.0.26/lib/ohai" + } + }, + "command": { + "ps": "ps -ef" + }, + "counters": { + "network": { + "interfaces": { + "lo": { + "tx": { + "queuelen": "1", + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "carrier": 0, + "collisions": 0 + }, + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0 + } + }, + "eth0": { + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "frame": 0, + "compressed": 0, + "multicast": 0 + }, + "tx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "collisions": 0, + "carrier": 0, + "compressed": 0 + } + } + } + } + }, + "cpu": { + "real": 1, + "total": 1, + "cores": 1 + }, + "current_user": "fauxhai", + "dmi": { + }, + "domain": "local", + "filesystem": { + "by_device": { + "devtmpfs": { + "kb_size": "4096", + "kb_used": "0", + "kb_available": "4096", + "percent_used": "0%", + "total_inodes": "1048576", + "inodes_used": "348", + "inodes_available": "1048228", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=4096k", + "nr_inodes=1048576", + "mode=755", + "inode64" + ], + "mounts": [ + "/dev" + ] + }, + "tmpfs": { + "kb_size": "78272", + "kb_used": "0", + "kb_available": "78272", + "percent_used": "0%", + "total_inodes": "19568", + "inodes_used": "14", + "inodes_available": "19554", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=78272k", + "nr_inodes=19568", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ], + "mounts": [ + "/dev/shm", + "/run", + "/run/user/1000" + ] + }, + "/dev/sda2": { + "kb_size": "64855104", + "kb_used": "1523792", + "kb_available": "63331312", + "percent_used": "3%", + "total_inodes": "32443392", + "inodes_used": "37433", + "inodes_available": "32405959", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "7eaf1506-5e8b-435e-964f-bb40a66ff976", + "mounts": [ + "/" + ] + }, + "proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/proc" + ] + }, + "sysfs": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys" + ] + }, + "securityfs": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/security" + ] + }, + "devpts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "mounts": [ + "/dev/pts" + ] + }, + "cgroup2": { + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "nsdelegate", + "memory_recursiveprot" + ], + "mounts": [ + "/sys/fs/cgroup" + ] + }, + "pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/fs/pstore" + ] + }, + "none": { + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "mounts": [ + "/sys/fs/bpf" + ] + }, + "selinuxfs": { + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/fs/selinux" + ] + }, + "systemd-1": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=36", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=17473" + ], + "mounts": [ + "/proc/sys/fs/binfmt_misc" + ] + }, + "debugfs": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/kernel/debug" + ] + }, + "hugetlbfs": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ], + "mounts": [ + "/dev/hugepages" + ] + }, + "mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/dev/mqueue" + ] + }, + "tracefs": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "mounts": [ + "/sys/kernel/tracing" + ] + }, + "configfs": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/config" + ] + }, + "fusectl": { + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/fs/fuse/connections" + ] + }, + "sunrpc": { + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ], + "mounts": [ + "/var/lib/nfs/rpc_pipefs" + ] + }, + "vagrant": { + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "mounts": [ + "/vagrant" + ] + }, + "/dev/sda": { + "mounts": [ + + ] + }, + "/dev/sda1": { + "fs_type": "swap", + "uuid": "e1f0e886-e9f7-4ebe-9be9-2b141fd5f9ee", + "mounts": [ + + ] + } + }, + "by_mountpoint": { + "/dev": { + "kb_size": "4096", + "kb_used": "0", + "kb_available": "4096", + "percent_used": "0%", + "total_inodes": "1048576", + "inodes_used": "348", + "inodes_available": "1048228", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=4096k", + "nr_inodes=1048576", + "mode=755", + "inode64" + ], + "devices": [ + "devtmpfs" + ] + }, + "/dev/shm": { + "kb_size": "391372", + "kb_used": "0", + "kb_available": "391372", + "percent_used": "0%", + "total_inodes": "97843", + "inodes_used": "1", + "inodes_available": "97842", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/run": { + "kb_size": "156552", + "kb_used": "4356", + "kb_available": "152196", + "percent_used": "3%", + "total_inodes": "819200", + "inodes_used": "498", + "inodes_available": "818702", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "size=156552k", + "nr_inodes=819200", + "mode=755", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/": { + "kb_size": "64855104", + "kb_used": "1523792", + "kb_available": "63331312", + "percent_used": "3%", + "total_inodes": "32443392", + "inodes_used": "37433", + "inodes_available": "32405959", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "7eaf1506-5e8b-435e-964f-bb40a66ff976", + "devices": [ + "/dev/sda2" + ] + }, + "/run/user/1000": { + "kb_size": "78272", + "kb_used": "0", + "kb_available": "78272", + "percent_used": "0%", + "total_inodes": "19568", + "inodes_used": "14", + "inodes_available": "19554", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=78272k", + "nr_inodes=19568", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "proc" + ] + }, + "/sys": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "sysfs" + ] + }, + "/sys/kernel/security": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "securityfs" + ] + }, + "/dev/pts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "devices": [ + "devpts" + ] + }, + "/sys/fs/cgroup": { + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "nsdelegate", + "memory_recursiveprot" + ], + "devices": [ + "cgroup2" + ] + }, + "/sys/fs/pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "pstore" + ] + }, + "/sys/fs/bpf": { + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "devices": [ + "none" + ] + }, + "/sys/fs/selinux": { + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime" + ], + "devices": [ + "selinuxfs" + ] + }, + "/proc/sys/fs/binfmt_misc": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=36", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=17473" + ], + "devices": [ + "systemd-1" + ] + }, + "/sys/kernel/debug": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "debugfs" + ] + }, + "/dev/hugepages": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ], + "devices": [ + "hugetlbfs" + ] + }, + "/dev/mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "mqueue" + ] + }, + "/sys/kernel/tracing": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ], + "devices": [ + "tracefs" + ] + }, + "/sys/kernel/config": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "configfs" + ] + }, + "/sys/fs/fuse/connections": { + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "fusectl" + ] + }, + "/var/lib/nfs/rpc_pipefs": { + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ], + "devices": [ + "sunrpc" + ] + }, + "/vagrant": { + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "devices": [ + "vagrant" + ] + } + }, + "by_pair": { + "devtmpfs,/dev": { + "device": "devtmpfs", + "kb_size": "4096", + "kb_used": "0", + "kb_available": "4096", + "percent_used": "0%", + "mount": "/dev", + "total_inodes": "1048576", + "inodes_used": "348", + "inodes_available": "1048228", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "seclabel", + "size=4096k", + "nr_inodes=1048576", + "mode=755", + "inode64" + ] + }, + "tmpfs,/dev/shm": { + "device": "tmpfs", + "kb_size": "391372", + "kb_used": "0", + "kb_available": "391372", + "percent_used": "0%", + "mount": "/dev/shm", + "total_inodes": "97843", + "inodes_used": "1", + "inodes_available": "97842", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "inode64" + ] + }, + "tmpfs,/run": { + "device": "tmpfs", + "kb_size": "156552", + "kb_used": "4356", + "kb_available": "152196", + "percent_used": "3%", + "mount": "/run", + "total_inodes": "819200", + "inodes_used": "498", + "inodes_available": "818702", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "seclabel", + "size=156552k", + "nr_inodes=819200", + "mode=755", + "inode64" + ] + }, + "/dev/sda2,/": { + "device": "/dev/sda2", + "kb_size": "64855104", + "kb_used": "1523792", + "kb_available": "63331312", + "percent_used": "3%", + "mount": "/", + "total_inodes": "32443392", + "inodes_used": "37433", + "inodes_available": "32405959", + "inodes_percent_used": "1%", + "fs_type": "xfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "attr2", + "inode64", + "logbufs=8", + "logbsize=32k", + "noquota" + ], + "uuid": "7eaf1506-5e8b-435e-964f-bb40a66ff976" + }, + "tmpfs,/run/user/1000": { + "device": "tmpfs", + "kb_size": "78272", + "kb_used": "0", + "kb_available": "78272", + "percent_used": "0%", + "mount": "/run/user/1000", + "total_inodes": "19568", + "inodes_used": "14", + "inodes_available": "19554", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "seclabel", + "size=78272k", + "nr_inodes=19568", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ] + }, + "proc,/proc": { + "device": "proc", + "mount": "/proc", + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "sysfs,/sys": { + "device": "sysfs", + "mount": "/sys", + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "securityfs,/sys/kernel/security": { + "device": "securityfs", + "mount": "/sys/kernel/security", + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "devpts,/dev/pts": { + "device": "devpts", + "mount": "/dev/pts", + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "seclabel", + "gid=5", + "mode=620", + "ptmxmode=000" + ] + }, + "cgroup2,/sys/fs/cgroup": { + "device": "cgroup2", + "mount": "/sys/fs/cgroup", + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel", + "nsdelegate", + "memory_recursiveprot" + ] + }, + "pstore,/sys/fs/pstore": { + "device": "pstore", + "mount": "/sys/fs/pstore", + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "none,/sys/fs/bpf": { + "device": "none", + "mount": "/sys/fs/bpf", + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ] + }, + "selinuxfs,/sys/fs/selinux": { + "device": "selinuxfs", + "mount": "/sys/fs/selinux", + "fs_type": "selinuxfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime" + ] + }, + "systemd-1,/proc/sys/fs/binfmt_misc": { + "device": "systemd-1", + "mount": "/proc/sys/fs/binfmt_misc", + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=36", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=17473" + ] + }, + "debugfs,/sys/kernel/debug": { + "device": "debugfs", + "mount": "/sys/kernel/debug", + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "hugetlbfs,/dev/hugepages": { + "device": "hugetlbfs", + "mount": "/dev/hugepages", + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "seclabel", + "pagesize=2M" + ] + }, + "mqueue,/dev/mqueue": { + "device": "mqueue", + "mount": "/dev/mqueue", + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "tracefs,/sys/kernel/tracing": { + "device": "tracefs", + "mount": "/sys/kernel/tracing", + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "seclabel" + ] + }, + "configfs,/sys/kernel/config": { + "device": "configfs", + "mount": "/sys/kernel/config", + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "fusectl,/sys/fs/fuse/connections": { + "device": "fusectl", + "mount": "/sys/fs/fuse/connections", + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "sunrpc,/var/lib/nfs/rpc_pipefs": { + "device": "sunrpc", + "mount": "/var/lib/nfs/rpc_pipefs", + "fs_type": "rpc_pipefs", + "mount_options": [ + "rw", + "relatime" + ] + }, + "vagrant,/vagrant": { + "device": "vagrant", + "mount": "/vagrant", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ] + }, + "/dev/sda,": { + "device": "/dev/sda" + }, + "/dev/sda1,": { + "device": "/dev/sda1", + "fs_type": "swap", + "uuid": "e1f0e886-e9f7-4ebe-9be9-2b141fd5f9ee" + } + } + }, + "fips": { + "kernel": { + "enabled": false + } + }, + "fqdn": "fauxhai.local", + "hostname": "Fauxhai", + "idle": "30 days 15 hours 07 minutes 30 seconds", + "idletime_seconds": 2646450, + "init_package": "systemd", + "ipaddress": "10.0.0.2", + "kernel": { + "name": "Linux", + "release": "5.14.0-162.6.1.el9_1.0.1.x86_64", + "version": "#1 SMP PREEMPT_DYNAMIC Mon Nov 28 18:44:09 UTC 2022", + "machine": "x86_64", + "processor": "x86_64", + "os": "GNU/Linux", + "modules": { + "tls": { + "size": "118784", + "refcount": "0" + }, + "vboxsf": { + "size": "90112", + "refcount": "1", + "version": "6.1.40 r154048" + }, + "rfkill": { + "size": "36864", + "refcount": "1" + }, + "intel_rapl_msr": { + "size": "20480", + "refcount": "0" + }, + "intel_rapl_common": { + "size": "28672", + "refcount": "1" + }, + "intel_pmc_core_pltdrv": { + "size": "16384", + "refcount": "0" + }, + "intel_pmc_core": { + "size": "53248", + "refcount": "0" + }, + "rapl": { + "size": "24576", + "refcount": "0" + }, + "pcspkr": { + "size": "16384", + "refcount": "0" + }, + "joydev": { + "size": "28672", + "refcount": "0" + }, + "i2c_piix4": { + "size": "28672", + "refcount": "0" + }, + "sunrpc": { + "size": "667648", + "refcount": "1" + }, + "fuse": { + "size": "176128", + "refcount": "1" + }, + "xfs": { + "size": "2002944", + "refcount": "1" + }, + "libcrc32c": { + "size": "16384", + "refcount": "1" + }, + "sd_mod": { + "size": "65536", + "refcount": "3" + }, + "t10_pi": { + "size": "16384", + "refcount": "1" + }, + "sg": { + "size": "40960", + "refcount": "0", + "version": "3.5.36" + }, + "ata_generic": { + "size": "16384", + "refcount": "0", + "version": "0.2.15" + }, + "ata_piix": { + "size": "45056", + "refcount": "0", + "version": "2.13" + }, + "crct10dif_pclmul": { + "size": "16384", + "refcount": "1" + }, + "crc32_pclmul": { + "size": "16384", + "refcount": "0" + }, + "crc32c_intel": { + "size": "24576", + "refcount": "1" + }, + "ahci": { + "size": "49152", + "refcount": "2", + "version": "3.0" + }, + "libahci": { + "size": "49152", + "refcount": "1" + }, + "libata": { + "size": "389120", + "refcount": "4", + "version": "3.00" + }, + "vboxvideo": { + "size": "49152", + "refcount": "1", + "version": "6.1.40 r154048" + }, + "drm_ttm_helper": { + "size": "16384", + "refcount": "1" + }, + "ttm": { + "size": "86016", + "refcount": "2" + }, + "e1000": { + "size": "167936", + "refcount": "0" + }, + "drm_kms_helper": { + "size": "200704", + "refcount": "1" + }, + "ghash_clmulni_intel": { + "size": "16384", + "refcount": "0" + }, + "syscopyarea": { + "size": "16384", + "refcount": "1" + }, + "serio_raw": { + "size": "20480", + "refcount": "0" + }, + "sysfillrect": { + "size": "16384", + "refcount": "1" + }, + "sysimgblt": { + "size": "16384", + "refcount": "1" + }, + "fb_sys_fops": { + "size": "16384", + "refcount": "1" + }, + "drm": { + "size": "622592", + "refcount": "5" + }, + "vboxguest": { + "size": "397312", + "refcount": "2", + "version": "6.1.40 r154048" + }, + "video": { + "size": "57344", + "refcount": "0" + } + } + }, + "keys": { + "ssh": { + "host_dsa_public": "ssh-dss AAAAB3NzaC1kc3MAAACBAJFo9BLAw4WKEs5hgipk5m423FzBsDXCZSMcC9ca/om/1VYzMqImixGe3uICDzNFUWxFoLJTQAOccyzo6MXZiQqwWJDLFi5qOSr6w2XcMyE+zd4wOyMoDiVM5fizmG8K3FzrqvGjwBcHcBdOQnavSijoj38DN25J9zhrid5BY4WlAAAAFQDxXrCyG52XCzn3FV4ej38wJBkomQAAAIBovGPJ4mP2P6BK8lHl0PPbktwQbWlpJ13oz6REJFDVcUi7vV26bX/BjQX+ohzZQzljdz1SpUbPc/8nuA4darYkVh91eBi307EN8IdxRHj2eBgp/ZG4yshIebG3WHrwJD/xUjjZ1MRfyDT1ermVi4LvjjPgWDxLZnPpMaR6S1nzgQAAAIEAj0Vd6DCWslvlsZ8+N53HWsqPi3gnx35JoLPz9Z2epkKIKqmEHav+93G3hdfztVa4I4t3phoPniQchYryF5+RNg8hqxKzjNtrIqUYCeuf2NJrksNsH7OZygPHZpqt4kTuwAGZxjxEGfAI0y8DhkU2ntp2LnzRnWH106BQBCmcXwo= fauxhai.local", + "host_rsa_public": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCtLCeqtqr/HbnORckw1ukdLhpfGoOPFi5/esKEokzTqq1gsgQ2V8emmyjfq1i6XXfRtSBxkdlHv/GWdP5wBTuE2G85MzBkVSQPvmwQN8lX/JMPEEtKXkeOo0o92/PiSmvY4eRsdF0mw40Uvg7jtE3f3fxj497kzh5fKtkrHnF4x9gXCbVdr3FqXJfggR5IJwAxToerbK7x/uRS+7YuZI9Pip3tt14nv9ezwXcuGb/tvjWOZINiFl8izVIFKi7sxfTX09p4NgamxRS7TD2Yd0jT8nEoF9UZTsgXcJ1kDSx7N7NxFfNfP6rCdOGRRz4gUhXtsUjG/XkxPeCwZ7A9VnOD fauxhai.local" + } + }, + "languages": { + "ruby": { + "platform": "x86_64-linux", + "version": "3.1.2", + "release_date": "2022-04-12", + "target": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_vendor": "pc", + "target_os": "linux", + "host": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux", + "host_vendor": "pc", + "bin_dir": "/usr/local/bin", + "ruby_bin": "/usr/local/bin/ruby", + "gem_bin": "/usr/local/bin/gem", + "gems_dir": "/usr/local/gems" + }, + "powershell": null + }, + "lsb": { + }, + "macaddress": "11:11:11:11:11:11", + "machinename": "Fauxhai", + "memory": { + "total": "1048576kB" + }, + "network": { + "interfaces": { + "lo": { + "mtu": "65536", + "flags": [ + "LOOPBACK", + "UP", + "LOWER_UP" + ], + "encapsulation": "Loopback", + "addresses": { + "127.0.0.1": { + "family": "inet", + "prefixlen": "8", + "netmask": "255.0.0.0", + "scope": "Node", + "ip_scope": "LOOPBACK" + }, + "::1": { + "family": "inet6", + "prefixlen": "128", + "scope": "Node", + "tags": [ + + ], + "ip_scope": "LINK LOCAL LOOPBACK" + } + }, + "state": "unknown" + }, + "eth0": { + "type": "eth", + "number": "0", + "mtu": "1500", + "flags": [ + "BROADCAST", + "MULTICAST", + "UP", + "LOWER_UP" + ], + "encapsulation": "Ethernet", + "addresses": { + "11:11:11:11:11:11": { + "family": "lladdr" + }, + "10.0.0.2": { + "family": "inet", + "prefixlen": "24", + "netmask": "255.255.255.0", + "broadcast": "10.0.0.255", + "scope": "Global", + "ip_scope": "RFC1918 PRIVATE" + }, + "fe80::11:1111:1111:1111": { + "family": "inet6", + "prefixlen": "64", + "scope": "Link", + "tags": [ + + ], + "ip_scope": "LINK LOCAL UNICAST" + } + }, + "state": "up", + "arp": { + "10.0.0.1": "fe:ff:ff:ff:ff:ff" + }, + "routes": [ + { + "destination": "default", + "family": "inet", + "via": "10.0.0.1" + }, + { + "destination": "10.0.0.0/24", + "family": "inet", + "scope": "link", + "proto": "kernel", + "src": "10.0.0.2" + }, + { + "destination": "fe80::/64", + "family": "inet6", + "metric": "256", + "proto": "kernel" + } + ], + "ring_params": { + } + } + }, + "default_interface": "eth0", + "default_gateway": "10.0.0.1" + }, + "ohai_time": 1675118931.7147343, + "os": "linux", + "os_version": "5.14.0-162.6.1.el9_1.0.1.x86_64", + "packages": { + "libgcc": { + "epoch": "0", + "version": "11.3.1", + "release": "2.1.el9", + "installdate": "1670812200", + "arch": "x86_64" + }, + "crypto-policies": { + "epoch": "0", + "version": "20220815", + "release": "1.git0fbe86f.el9", + "installdate": "1670812201", + "arch": "noarch" + }, + "gawk-all-langpacks": { + "epoch": "0", + "version": "5.1.0", + "release": "6.el9", + "installdate": "1670812204", + "arch": "x86_64" + }, + "libssh-config": { + "epoch": "0", + "version": "0.9.6", + "release": "3.el9", + "installdate": "1670812204", + "arch": "noarch" + }, + "libreport-filesystem": { + "epoch": "0", + "version": "2.15.2", + "release": "6.el9.rocky.0.2", + "installdate": "1670812204", + "arch": "noarch" + }, + "dnf-data": { + "epoch": "0", + "version": "4.12.0", + "release": "4.el9", + "installdate": "1670812204", + "arch": "noarch" + }, + "ncurses-base": { + "epoch": "0", + "version": "6.2", + "release": "8.20210508.el9", + "installdate": "1670812204", + "arch": "noarch" + }, + "rocky-gpg-keys": { + "epoch": "0", + "version": "9.1", + "release": "1.10.el9", + "installdate": "1670812204", + "arch": "noarch" + }, + "rocky-repos": { + "epoch": "0", + "version": "9.1", + "release": "1.10.el9", + "installdate": "1670812204", + "arch": "noarch" + }, + "rocky-release": { + "epoch": "0", + "version": "9.1", + "release": "1.10.el9", + "installdate": "1670812204", + "arch": "noarch" + }, + "setup": { + "epoch": "0", + "version": "2.13.7", + "release": "7.el9", + "installdate": "1670812204", + "arch": "noarch" + }, + "filesystem": { + "epoch": "0", + "version": "3.16", + "release": "2.el9", + "installdate": "1670812205", + "arch": "x86_64" + }, + "basesystem": { + "epoch": "0", + "version": "11", + "release": "13.el9", + "installdate": "1670812205", + "arch": "noarch" + }, + "bash": { + "epoch": "0", + "version": "5.1.8", + "release": "5.el9", + "installdate": "1670812206", + "arch": "x86_64" + }, + "ncurses-libs": { + "epoch": "0", + "version": "6.2", + "release": "8.20210508.el9", + "installdate": "1670812206", + "arch": "x86_64" + }, + "glibc-langpack-en": { + "epoch": "0", + "version": "2.34", + "release": "40.el9", + "installdate": "1670812206", + "arch": "x86_64" + }, + "glibc-gconv-extra": { + "epoch": "0", + "version": "2.34", + "release": "40.el9", + "installdate": "1670812207", + "arch": "x86_64" + }, + "glibc-common": { + "epoch": "0", + "version": "2.34", + "release": "40.el9", + "installdate": "1670812207", + "arch": "x86_64" + }, + "glibc": { + "epoch": "0", + "version": "2.34", + "release": "40.el9", + "installdate": "1670812208", + "arch": "x86_64" + }, + "zlib": { + "epoch": "0", + "version": "1.2.11", + "release": "34.el9", + "installdate": "1670812208", + "arch": "x86_64" + }, + "xz-libs": { + "epoch": "0", + "version": "5.2.5", + "release": "8.el9_0", + "installdate": "1670812208", + "arch": "x86_64" + }, + "popt": { + "epoch": "0", + "version": "1.18", + "release": "8.el9", + "installdate": "1670812208", + "arch": "x86_64" + }, + "libcap": { + "epoch": "0", + "version": "2.48", + "release": "8.el9", + "installdate": "1670812208", + "arch": "x86_64" + }, + "libzstd": { + "epoch": "0", + "version": "1.5.1", + "release": "2.el9", + "installdate": "1670812208", + "arch": "x86_64" + }, + "bzip2-libs": { + "epoch": "0", + "version": "1.0.8", + "release": "8.el9", + "installdate": "1670812208", + "arch": "x86_64" + }, + "libuuid": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1670812208", + "arch": "x86_64" + }, + "libxcrypt": { + "epoch": "0", + "version": "4.4.18", + "release": "3.el9", + "installdate": "1670812208", + "arch": "x86_64" + }, + "sqlite-libs": { + "epoch": "0", + "version": "3.34.1", + "release": "5.el9", + "installdate": "1670812208", + "arch": "x86_64" + }, + "libcom_err": { + "epoch": "0", + "version": "1.46.5", + "release": "3.el9", + "installdate": "1670812208", + "arch": "x86_64" + }, + "elfutils-libelf": { + "epoch": "0", + "version": "0.187", + "release": "5.el9", + "installdate": "1670812208", + "arch": "x86_64" + }, + "libmnl": { + "epoch": "0", + "version": "1.0.4", + "release": "15.el9", + "installdate": "1670812208", + "arch": "x86_64" + }, + "libstdc++": { + "epoch": "0", + "version": "11.3.1", + "release": "2.1.el9", + "installdate": "1670812208", + "arch": "x86_64" + }, + "libxml2": { + "epoch": "0", + "version": "2.9.13", + "release": "2.el9", + "installdate": "1670812208", + "arch": "x86_64" + }, + "lua-libs": { + "epoch": "0", + "version": "5.4.2", + "release": "4.el9_0.3", + "installdate": "1670812208", + "arch": "x86_64" + }, + "readline": { + "epoch": "0", + "version": "8.1", + "release": "4.el9", + "installdate": "1670812209", + "arch": "x86_64" + }, + "lz4-libs": { + "epoch": "0", + "version": "1.9.3", + "release": "5.el9", + "installdate": "1670812209", + "arch": "x86_64" + }, + "libcap-ng": { + "epoch": "0", + "version": "0.8.2", + "release": "7.el9", + "installdate": "1670812209", + "arch": "x86_64" + }, + "audit-libs": { + "epoch": "0", + "version": "3.0.7", + "release": "103.el9", + "installdate": "1670812209", + "arch": "x86_64" + }, + "libunistring": { + "epoch": "0", + "version": "0.9.10", + "release": "15.el9", + "installdate": "1670812209", + "arch": "x86_64" + }, + "keyutils-libs": { + "epoch": "0", + "version": "1.6.1", + "release": "4.el9", + "installdate": "1670812209", + "arch": "x86_64" + }, + "libidn2": { + "epoch": "0", + "version": "2.3.0", + "release": "7.el9", + "installdate": "1670812209", + "arch": "x86_64" + }, + "alternatives": { + "epoch": "0", + "version": "1.20", + "release": "2.el9", + "installdate": "1670812209", + "arch": "x86_64" + }, + "libffi": { + "epoch": "0", + "version": "3.4.2", + "release": "7.el9", + "installdate": "1670812209", + "arch": "x86_64" + }, + "p11-kit": { + "epoch": "0", + "version": "0.24.1", + "release": "2.el9", + "installdate": "1670812209", + "arch": "x86_64" + }, + "libsepol": { + "epoch": "0", + "version": "3.4", + "release": "1.1.el9", + "installdate": "1670812209", + "arch": "x86_64" + }, + "libnl3": { + "epoch": "0", + "version": "3.7.0", + "release": "1.el9", + "installdate": "1670812209", + "arch": "x86_64" + }, + "libgpg-error": { + "epoch": "0", + "version": "1.42", + "release": "5.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "libtalloc": { + "epoch": "0", + "version": "2.3.3", + "release": "1.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "file-libs": { + "epoch": "0", + "version": "5.39", + "release": "10.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "gmp": { + "epoch": "1", + "version": "6.2.0", + "release": "10.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "libsmartcols": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "libtevent": { + "epoch": "0", + "version": "0.12.0", + "release": "0.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "libgcrypt": { + "epoch": "0", + "version": "1.10.0", + "release": "8.el9_0", + "installdate": "1670812210", + "arch": "x86_64" + }, + "expat": { + "epoch": "0", + "version": "2.4.9", + "release": "1.el9_1", + "installdate": "1670812210", + "arch": "x86_64" + }, + "libverto": { + "epoch": "0", + "version": "0.3.2", + "release": "3.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "jansson": { + "epoch": "0", + "version": "2.14", + "release": "1.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "gdbm-libs": { + "epoch": "1", + "version": "1.19", + "release": "4.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "libattr": { + "epoch": "0", + "version": "2.5.1", + "release": "3.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "libacl": { + "epoch": "0", + "version": "2.3.1", + "release": "3.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "libedit": { + "epoch": "0", + "version": "3.1", + "release": "37.20210216cvs.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "json-c": { + "epoch": "0", + "version": "0.14", + "release": "11.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "libref_array": { + "epoch": "0", + "version": "0.1.5", + "release": "53.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "libtdb": { + "epoch": "0", + "version": "1.4.6", + "release": "1.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "file": { + "epoch": "0", + "version": "5.39", + "release": "10.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "libassuan": { + "epoch": "0", + "version": "2.5.5", + "release": "3.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "libnftnl": { + "epoch": "0", + "version": "1.2.2", + "release": "1.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "libbpf": { + "epoch": "2", + "version": "0.6.0", + "release": "1.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "e2fsprogs-libs": { + "epoch": "0", + "version": "1.46.5", + "release": "3.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "libdb": { + "epoch": "0", + "version": "5.3.28", + "release": "53.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "fuse-libs": { + "epoch": "0", + "version": "2.9.9", + "release": "15.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "libsigsegv": { + "epoch": "0", + "version": "2.13", + "release": "4.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "which": { + "epoch": "0", + "version": "2.21", + "release": "28.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "libseccomp": { + "epoch": "0", + "version": "2.5.2", + "release": "2.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "libtasn1": { + "epoch": "0", + "version": "4.16.0", + "release": "7.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "p11-kit-trust": { + "epoch": "0", + "version": "0.24.1", + "release": "2.el9", + "installdate": "1670812210", + "arch": "x86_64" + }, + "lzo": { + "epoch": "0", + "version": "2.10", + "release": "7.el9", + "installdate": "1670812211", + "arch": "x86_64" + }, + "nettle": { + "epoch": "0", + "version": "3.8", + "release": "3.el9_0", + "installdate": "1670812211", + "arch": "x86_64" + }, + "gnutls": { + "epoch": "0", + "version": "3.7.6", + "release": "12.el9_0", + "installdate": "1670812211", + "arch": "x86_64" + }, + "pcre": { + "epoch": "0", + "version": "8.44", + "release": "3.el9.3", + "installdate": "1670812211", + "arch": "x86_64" + }, + "grep": { + "epoch": "0", + "version": "3.6", + "release": "5.el9", + "installdate": "1670812211", + "arch": "x86_64" + }, + "libyaml": { + "epoch": "0", + "version": "0.2.5", + "release": "7.el9", + "installdate": "1670812211", + "arch": "x86_64" + }, + "libdhash": { + "epoch": "0", + "version": "0.5.0", + "release": "53.el9", + "installdate": "1670812211", + "arch": "x86_64" + }, + "libcollection": { + "epoch": "0", + "version": "0.7.0", + "release": "53.el9", + "installdate": "1670812211", + "arch": "x86_64" + }, + "libbasicobjects": { + "epoch": "0", + "version": "0.1.1", + "release": "53.el9", + "installdate": "1670812211", + "arch": "x86_64" + }, + "libsss_idmap": { + "epoch": "0", + "version": "2.7.3", + "release": "4.el9_1.1", + "installdate": "1670812211", + "arch": "x86_64" + }, + "make": { + "epoch": "1", + "version": "4.3", + "release": "7.el9", + "installdate": "1670812211", + "arch": "x86_64" + }, + "libgomp": { + "epoch": "0", + "version": "11.3.1", + "release": "2.1.el9", + "installdate": "1670812211", + "arch": "x86_64" + }, + "checkpolicy": { + "epoch": "0", + "version": "3.4", + "release": "1.el9", + "installdate": "1670812211", + "arch": "x86_64" + }, + "xz": { + "epoch": "0", + "version": "5.2.5", + "release": "8.el9_0", + "installdate": "1670812211", + "arch": "x86_64" + }, + "squashfs-tools": { + "epoch": "0", + "version": "4.4", + "release": "8.git1.el9", + "installdate": "1670812211", + "arch": "x86_64" + }, + "acl": { + "epoch": "0", + "version": "2.3.1", + "release": "3.el9", + "installdate": "1670812212", + "arch": "x86_64" + }, + "gettext-libs": { + "epoch": "0", + "version": "0.21", + "release": "7.el9", + "installdate": "1670812212", + "arch": "x86_64" + }, + "gettext": { + "epoch": "0", + "version": "0.21", + "release": "7.el9", + "installdate": "1670812212", + "arch": "x86_64" + }, + "libcomps": { + "epoch": "0", + "version": "0.1.18", + "release": "1.el9", + "installdate": "1670812212", + "arch": "x86_64" + }, + "mpfr": { + "epoch": "0", + "version": "4.1.0", + "release": "7.el9", + "installdate": "1670812212", + "arch": "x86_64" + }, + "gawk": { + "epoch": "0", + "version": "5.1.0", + "release": "6.el9", + "installdate": "1670812213", + "arch": "x86_64" + }, + "libksba": { + "epoch": "0", + "version": "1.5.1", + "release": "5.el9_0", + "installdate": "1670812213", + "arch": "x86_64" + }, + "libibverbs": { + "epoch": "0", + "version": "41.0", + "release": "3.el9", + "installdate": "1670812213", + "arch": "x86_64" + }, + "libpcap": { + "epoch": "14", + "version": "1.10.0", + "release": "4.el9", + "installdate": "1670812213", + "arch": "x86_64" + }, + "libnl3-cli": { + "epoch": "0", + "version": "3.7.0", + "release": "1.el9", + "installdate": "1670812213", + "arch": "x86_64" + }, + "libteam": { + "epoch": "0", + "version": "1.31", + "release": "14.el9", + "installdate": "1670812213", + "arch": "x86_64" + }, + "keyutils": { + "epoch": "0", + "version": "1.6.1", + "release": "4.el9", + "installdate": "1670812213", + "arch": "x86_64" + }, + "zstd": { + "epoch": "0", + "version": "1.5.1", + "release": "2.el9", + "installdate": "1670812213", + "arch": "x86_64" + }, + "groff-base": { + "epoch": "0", + "version": "1.22.4", + "release": "10.el9", + "installdate": "1670812214", + "arch": "x86_64" + }, + "snappy": { + "epoch": "0", + "version": "1.1.8", + "release": "8.el9", + "installdate": "1670812214", + "arch": "x86_64" + }, + "ethtool": { + "epoch": "2", + "version": "5.16", + "release": "1.el9", + "installdate": "1670812214", + "arch": "x86_64" + }, + "ipset-libs": { + "epoch": "0", + "version": "7.11", + "release": "6.el9", + "installdate": "1670812214", + "arch": "x86_64" + }, + "ipset": { + "epoch": "0", + "version": "7.11", + "release": "6.el9", + "installdate": "1670812214", + "arch": "x86_64" + }, + "libss": { + "epoch": "0", + "version": "1.46.5", + "release": "3.el9", + "installdate": "1670812214", + "arch": "x86_64" + }, + "libxcrypt-compat": { + "epoch": "0", + "version": "4.4.18", + "release": "3.el9", + "installdate": "1670812214", + "arch": "x86_64" + }, + "pigz": { + "epoch": "0", + "version": "2.5", + "release": "4.el9", + "installdate": "1670812214", + "arch": "x86_64" + }, + "c-ares": { + "epoch": "0", + "version": "1.17.1", + "release": "5.el9", + "installdate": "1670812214", + "arch": "x86_64" + }, + "libbrotli": { + "epoch": "0", + "version": "1.0.9", + "release": "6.el9", + "installdate": "1670812214", + "arch": "x86_64" + }, + "libdaemon": { + "epoch": "0", + "version": "0.14", + "release": "23.el9", + "installdate": "1670812214", + "arch": "x86_64" + }, + "libndp": { + "epoch": "0", + "version": "1.8", + "release": "4.el9", + "installdate": "1670812214", + "arch": "x86_64" + }, + "cpio": { + "epoch": "0", + "version": "2.13", + "release": "16.el9", + "installdate": "1670812214", + "arch": "x86_64" + }, + "libnfnetlink": { + "epoch": "0", + "version": "1.0.1", + "release": "21.el9", + "installdate": "1670812214", + "arch": "x86_64" + }, + "libnetfilter_conntrack": { + "epoch": "0", + "version": "1.0.8", + "release": "4.el9", + "installdate": "1670812214", + "arch": "x86_64" + }, + "iptables-libs": { + "epoch": "0", + "version": "1.8.8", + "release": "4.el9", + "installdate": "1670812215", + "arch": "x86_64" + }, + "nftables": { + "epoch": "1", + "version": "1.0.4", + "release": "2.el9", + "installdate": "1670812215", + "arch": "x86_64" + }, + "libev": { + "epoch": "0", + "version": "4.33", + "release": "5.el9", + "installdate": "1670812215", + "arch": "x86_64" + }, + "libverto-libev": { + "epoch": "0", + "version": "0.3.2", + "release": "3.el9", + "installdate": "1670812215", + "arch": "x86_64" + }, + "hostname": { + "epoch": "0", + "version": "3.23", + "release": "6.el9", + "installdate": "1670812215", + "arch": "x86_64" + }, + "libpipeline": { + "epoch": "0", + "version": "1.5.3", + "release": "4.el9", + "installdate": "1670812215", + "arch": "x86_64" + }, + "sg3_utils-libs": { + "epoch": "0", + "version": "1.47", + "release": "9.el9", + "installdate": "1670812215", + "arch": "x86_64" + }, + "psmisc": { + "epoch": "0", + "version": "23.4", + "release": "3.el9", + "installdate": "1670812215", + "arch": "x86_64" + }, + "libnghttp2": { + "epoch": "0", + "version": "1.43.0", + "release": "5.el9", + "installdate": "1670812215", + "arch": "x86_64" + }, + "less": { + "epoch": "0", + "version": "590", + "release": "1.el9_0", + "installdate": "1670812215", + "arch": "x86_64" + }, + "inih": { + "epoch": "0", + "version": "49", + "release": "6.el9", + "installdate": "1670812215", + "arch": "x86_64" + }, + "diffutils": { + "epoch": "0", + "version": "3.7", + "release": "12.el9", + "installdate": "1670812215", + "arch": "x86_64" + }, + "pciutils-libs": { + "epoch": "0", + "version": "3.7.0", + "release": "5.el9", + "installdate": "1670812216", + "arch": "x86_64" + }, + "numactl-libs": { + "epoch": "0", + "version": "2.0.14", + "release": "8.el9", + "installdate": "1670812216", + "arch": "x86_64" + }, + "libcbor": { + "epoch": "0", + "version": "0.7.0", + "release": "5.el9", + "installdate": "1670812216", + "arch": "x86_64" + }, + "npth": { + "epoch": "0", + "version": "1.6", + "release": "8.el9", + "installdate": "1670812216", + "arch": "x86_64" + }, + "slang": { + "epoch": "0", + "version": "2.3.2", + "release": "11.el9", + "installdate": "1670812216", + "arch": "x86_64" + }, + "newt": { + "epoch": "0", + "version": "0.52.21", + "release": "11.el9", + "installdate": "1670812216", + "arch": "x86_64" + }, + "libpath_utils": { + "epoch": "0", + "version": "0.2.1", + "release": "53.el9", + "installdate": "1670812216", + "arch": "x86_64" + }, + "libini_config": { + "epoch": "0", + "version": "1.3.1", + "release": "53.el9", + "installdate": "1670812216", + "arch": "x86_64" + }, + "libsss_sudo": { + "epoch": "0", + "version": "2.7.3", + "release": "4.el9_1.1", + "installdate": "1670812216", + "arch": "x86_64" + }, + "libsss_nss_idmap": { + "epoch": "0", + "version": "2.7.3", + "release": "4.el9_1.1", + "installdate": "1670812216", + "arch": "x86_64" + }, + "lmdb-libs": { + "epoch": "0", + "version": "0.9.29", + "release": "3.el9", + "installdate": "1670812216", + "arch": "x86_64" + }, + "userspace-rcu": { + "epoch": "0", + "version": "0.12.1", + "release": "6.el9", + "installdate": "1670812216", + "arch": "x86_64" + }, + "libeconf": { + "epoch": "0", + "version": "0.4.1", + "release": "2.el9", + "installdate": "1670812216", + "arch": "x86_64" + }, + "libestr": { + "epoch": "0", + "version": "0.1.11", + "release": "4.el9", + "installdate": "1670812216", + "arch": "x86_64" + }, + "m4": { + "epoch": "0", + "version": "1.4.19", + "release": "1.el9", + "installdate": "1670812216", + "arch": "x86_64" + }, + "libfastjson": { + "epoch": "0", + "version": "0.99.9", + "release": "3.el9", + "installdate": "1670812216", + "arch": "x86_64" + }, + "systemd-rpm-macros": { + "epoch": "0", + "version": "250", + "release": "12.el9_1", + "installdate": "1670812216", + "arch": "noarch" + }, + "coreutils-common": { + "epoch": "0", + "version": "8.32", + "release": "32.el9", + "installdate": "1670812217", + "arch": "x86_64" + }, + "python3-setuptools-wheel": { + "epoch": "0", + "version": "53.0.0", + "release": "10.el9", + "installdate": "1670812227", + "arch": "noarch" + }, + "pcre2-syntax": { + "epoch": "0", + "version": "10.40", + "release": "2.el9", + "installdate": "1670812227", + "arch": "noarch" + }, + "pcre2": { + "epoch": "0", + "version": "10.40", + "release": "2.el9", + "installdate": "1670812227", + "arch": "x86_64" + }, + "libselinux": { + "epoch": "0", + "version": "3.4", + "release": "3.el9", + "installdate": "1670812227", + "arch": "x86_64" + }, + "sed": { + "epoch": "0", + "version": "4.8", + "release": "9.el9", + "installdate": "1670812227", + "arch": "x86_64" + }, + "libsemanage": { + "epoch": "0", + "version": "3.4", + "release": "2.el9", + "installdate": "1670812227", + "arch": "x86_64" + }, + "shadow-utils": { + "epoch": "2", + "version": "4.9", + "release": "5.el9", + "installdate": "1670812227", + "arch": "x86_64" + }, + "findutils": { + "epoch": "1", + "version": "4.8.0", + "release": "5.el9", + "installdate": "1670812228", + "arch": "x86_64" + }, + "openssl-pkcs11": { + "epoch": "0", + "version": "0.4.11", + "release": "7.el9", + "installdate": "1670812228", + "arch": "x86_64" + }, + "openssl-libs": { + "epoch": "1", + "version": "3.0.1", + "release": "43.el9_0", + "installdate": "1670812228", + "arch": "x86_64" + }, + "coreutils": { + "epoch": "0", + "version": "8.32", + "release": "32.el9", + "installdate": "1670812228", + "arch": "x86_64" + }, + "ca-certificates": { + "epoch": "0", + "version": "2022.2.54", + "release": "90.2.el9", + "installdate": "1670812228", + "arch": "noarch" + }, + "systemd-libs": { + "epoch": "0", + "version": "250", + "release": "12.el9_1", + "installdate": "1670812232", + "arch": "x86_64" + }, + "libblkid": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1670812232", + "arch": "x86_64" + }, + "libmount": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1670812232", + "arch": "x86_64" + }, + "glib2": { + "epoch": "0", + "version": "2.68.4", + "release": "5.el9", + "installdate": "1670812233", + "arch": "x86_64" + }, + "dbus-libs": { + "epoch": "1", + "version": "1.12.20", + "release": "6.el9", + "installdate": "1670812233", + "arch": "x86_64" + }, + "kmod": { + "epoch": "0", + "version": "28", + "release": "7.el9", + "installdate": "1670812233", + "arch": "x86_64" + }, + "libtirpc": { + "epoch": "0", + "version": "1.3.3", + "release": "0.el9", + "installdate": "1670812233", + "arch": "x86_64" + }, + "gzip": { + "epoch": "0", + "version": "1.12", + "release": "1.el9", + "installdate": "1670812233", + "arch": "x86_64" + }, + "kmod-libs": { + "epoch": "0", + "version": "28", + "release": "7.el9", + "installdate": "1670812233", + "arch": "x86_64" + }, + "cracklib": { + "epoch": "0", + "version": "2.9.6", + "release": "27.el9", + "installdate": "1670812233", + "arch": "x86_64" + }, + "NetworkManager-libnm": { + "epoch": "1", + "version": "1.40.0", + "release": "1.el9", + "installdate": "1670812234", + "arch": "x86_64" + }, + "util-linux-core": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1670812234", + "arch": "x86_64" + }, + "libfdisk": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1670812234", + "arch": "x86_64" + }, + "libevent": { + "epoch": "0", + "version": "2.1.12", + "release": "6.el9", + "installdate": "1670812234", + "arch": "x86_64" + }, + "iproute": { + "epoch": "0", + "version": "5.18.0", + "release": "1.el9", + "installdate": "1670812234", + "arch": "x86_64" + }, + "cracklib-dicts": { + "epoch": "0", + "version": "2.9.6", + "release": "27.el9", + "installdate": "1670812235", + "arch": "x86_64" + }, + "gobject-introspection": { + "epoch": "0", + "version": "1.68.0", + "release": "10.el9", + "installdate": "1670812235", + "arch": "x86_64" + }, + "libssh": { + "epoch": "0", + "version": "0.9.6", + "release": "3.el9", + "installdate": "1670812235", + "arch": "x86_64" + }, + "cyrus-sasl-lib": { + "epoch": "0", + "version": "2.1.27", + "release": "20.el9", + "installdate": "1670812235", + "arch": "x86_64" + }, + "openldap": { + "epoch": "0", + "version": "2.6.2", + "release": "3.el9", + "installdate": "1670812235", + "arch": "x86_64" + }, + "gnupg2": { + "epoch": "0", + "version": "2.3.3", + "release": "2.el9_0", + "installdate": "1670812235", + "arch": "x86_64" + }, + "gpgme": { + "epoch": "0", + "version": "1.15.1", + "release": "6.el9", + "installdate": "1670812235", + "arch": "x86_64" + }, + "libldb": { + "epoch": "0", + "version": "2.5.2", + "release": "1.el9", + "installdate": "1670812236", + "arch": "x86_64" + }, + "libnfsidmap": { + "epoch": "1", + "version": "2.5.4", + "release": "15.el9", + "installdate": "1670812236", + "arch": "x86_64" + }, + "sssd-nfs-idmap": { + "epoch": "0", + "version": "2.7.3", + "release": "4.el9_1.1", + "installdate": "1670812236", + "arch": "x86_64" + }, + "openldap-compat": { + "epoch": "0", + "version": "2.6.2", + "release": "3.el9", + "installdate": "1670812236", + "arch": "x86_64" + }, + "procps-ng": { + "epoch": "0", + "version": "3.3.17", + "release": "8.el9", + "installdate": "1670812236", + "arch": "x86_64" + }, + "python3-pip-wheel": { + "epoch": "0", + "version": "21.2.3", + "release": "6.el9", + "installdate": "1670812236", + "arch": "noarch" + }, + "python-unversioned-command": { + "epoch": "0", + "version": "3.9.14", + "release": "1.el9_1.1", + "installdate": "1670812236", + "arch": "noarch" + }, + "python3": { + "epoch": "0", + "version": "3.9.14", + "release": "1.el9_1.1", + "installdate": "1670812236", + "arch": "x86_64" + }, + "python3-libs": { + "epoch": "0", + "version": "3.9.14", + "release": "1.el9_1.1", + "installdate": "1670812242", + "arch": "x86_64" + }, + "python3-dbus": { + "epoch": "0", + "version": "1.2.18", + "release": "2.el9", + "installdate": "1670812242", + "arch": "x86_64" + }, + "python3-gobject-base": { + "epoch": "0", + "version": "3.40.1", + "release": "6.el9", + "installdate": "1670812242", + "arch": "x86_64" + }, + "python3-gobject-base-noarch": { + "epoch": "0", + "version": "3.40.1", + "release": "6.el9", + "installdate": "1670812242", + "arch": "noarch" + }, + "python3-libselinux": { + "epoch": "0", + "version": "3.4", + "release": "3.el9", + "installdate": "1670812242", + "arch": "x86_64" + }, + "python3-libsemanage": { + "epoch": "0", + "version": "3.4", + "release": "2.el9", + "installdate": "1670812242", + "arch": "x86_64" + }, + "python3-libcomps": { + "epoch": "0", + "version": "0.1.18", + "release": "1.el9", + "installdate": "1670812242", + "arch": "x86_64" + }, + "python3-six": { + "epoch": "0", + "version": "1.15.0", + "release": "9.el9", + "installdate": "1670812242", + "arch": "noarch" + }, + "python3-dateutil": { + "epoch": "1", + "version": "2.8.1", + "release": "6.el9", + "installdate": "1670812243", + "arch": "noarch" + }, + "python3-pyyaml": { + "epoch": "0", + "version": "5.4.1", + "release": "6.el9", + "installdate": "1670812243", + "arch": "x86_64" + }, + "python3-setuptools": { + "epoch": "0", + "version": "53.0.0", + "release": "10.el9", + "installdate": "1670812244", + "arch": "noarch" + }, + "python3-setools": { + "epoch": "0", + "version": "4.4.0", + "release": "5.el9", + "installdate": "1670812244", + "arch": "x86_64" + }, + "python3-nftables": { + "epoch": "1", + "version": "1.0.4", + "release": "2.el9", + "installdate": "1670812244", + "arch": "x86_64" + }, + "python3-firewall": { + "epoch": "0", + "version": "1.1.1", + "release": "3.el9", + "installdate": "1670812245", + "arch": "noarch" + }, + "teamd": { + "epoch": "0", + "version": "1.31", + "release": "14.el9", + "installdate": "1670812245", + "arch": "x86_64" + }, + "python3-gpg": { + "epoch": "0", + "version": "1.15.1", + "release": "6.el9", + "installdate": "1670812245", + "arch": "x86_64" + }, + "python3-audit": { + "epoch": "0", + "version": "3.0.7", + "release": "103.el9", + "installdate": "1670812245", + "arch": "x86_64" + }, + "libcap-ng-python3": { + "epoch": "0", + "version": "0.8.2", + "release": "7.el9", + "installdate": "1670812245", + "arch": "x86_64" + }, + "iptables-nft": { + "epoch": "0", + "version": "1.8.8", + "release": "4.el9", + "installdate": "1670812245", + "arch": "x86_64" + }, + "openssl": { + "epoch": "1", + "version": "3.0.1", + "release": "43.el9_0", + "installdate": "1670812245", + "arch": "x86_64" + }, + "libpwquality": { + "epoch": "0", + "version": "1.4.4", + "release": "8.el9", + "installdate": "1670812245", + "arch": "x86_64" + }, + "pam": { + "epoch": "0", + "version": "1.5.1", + "release": "12.el9", + "installdate": "1670812246", + "arch": "x86_64" + }, + "sssd-client": { + "epoch": "0", + "version": "2.7.3", + "release": "4.el9_1.1", + "installdate": "1670812246", + "arch": "x86_64" + }, + "libuser": { + "epoch": "0", + "version": "0.63", + "release": "11.el9", + "installdate": "1670812247", + "arch": "x86_64" + }, + "libarchive": { + "epoch": "0", + "version": "3.5.3", + "release": "3.el9", + "installdate": "1670812247", + "arch": "x86_64" + }, + "libsss_certmap": { + "epoch": "0", + "version": "2.7.3", + "release": "4.el9_1.1", + "installdate": "1670812247", + "arch": "x86_64" + }, + "libutempter": { + "epoch": "0", + "version": "1.2.1", + "release": "6.el9", + "installdate": "1670812247", + "arch": "x86_64" + }, + "util-linux": { + "epoch": "0", + "version": "2.37.4", + "release": "9.el9", + "installdate": "1670812248", + "arch": "x86_64" + }, + "device-mapper": { + "epoch": "9", + "version": "1.02.185", + "release": "3.el9", + "installdate": "1670812248", + "arch": "x86_64" + }, + "device-mapper-libs": { + "epoch": "9", + "version": "1.02.185", + "release": "3.el9", + "installdate": "1670812248", + "arch": "x86_64" + }, + "cryptsetup-libs": { + "epoch": "0", + "version": "2.4.3", + "release": "5.el9", + "installdate": "1670812248", + "arch": "x86_64" + }, + "dbus": { + "epoch": "1", + "version": "1.12.20", + "release": "6.el9", + "installdate": "1670812248", + "arch": "x86_64" + }, + "systemd-pam": { + "epoch": "0", + "version": "250", + "release": "12.el9_1", + "installdate": "1670812248", + "arch": "x86_64" + }, + "systemd": { + "epoch": "0", + "version": "250", + "release": "12.el9_1", + "installdate": "1670812250", + "arch": "x86_64" + }, + "dbus-common": { + "epoch": "1", + "version": "1.12.20", + "release": "6.el9", + "installdate": "1670812251", + "arch": "noarch" + }, + "dbus-broker": { + "epoch": "0", + "version": "28", + "release": "7.el9", + "installdate": "1670812251", + "arch": "x86_64" + }, + "grub2-common": { + "epoch": "1", + "version": "2.06", + "release": "46.el9.rocky.0.1", + "installdate": "1670812251", + "arch": "noarch" + }, + "grub2-tools-minimal": { + "epoch": "1", + "version": "2.06", + "release": "46.el9.rocky.0.1", + "installdate": "1670812251", + "arch": "x86_64" + }, + "cronie": { + "epoch": "0", + "version": "1.5.7", + "release": "8.el9", + "installdate": "1670812251", + "arch": "x86_64" + }, + "crontabs": { + "epoch": "0", + "version": "1.11", + "release": "27.20190603git.el9", + "installdate": "1670812251", + "arch": "noarch" + }, + "cronie-anacron": { + "epoch": "0", + "version": "1.5.7", + "release": "8.el9", + "installdate": "1670812251", + "arch": "x86_64" + }, + "openssh": { + "epoch": "0", + "version": "8.7p1", + "release": "24.el9_1", + "installdate": "1670812252", + "arch": "x86_64" + }, + "grub2-pc-modules": { + "epoch": "1", + "version": "2.06", + "release": "46.el9.rocky.0.1", + "installdate": "1670812253", + "arch": "noarch" + }, + "initscripts-service": { + "epoch": "0", + "version": "10.11.5", + "release": "1.el9", + "installdate": "1670812253", + "arch": "noarch" + }, + "logrotate": { + "epoch": "0", + "version": "3.18.0", + "release": "7.el9", + "installdate": "1670812253", + "arch": "x86_64" + }, + "iputils": { + "epoch": "0", + "version": "20210202", + "release": "7.el9", + "installdate": "1670812253", + "arch": "x86_64" + }, + "authselect-libs": { + "epoch": "0", + "version": "1.2.5", + "release": "1.el9", + "installdate": "1670812253", + "arch": "x86_64" + }, + "sssd-common": { + "epoch": "0", + "version": "2.7.3", + "release": "4.el9_1.1", + "installdate": "1670812254", + "arch": "x86_64" + }, + "elfutils-default-yama-scope": { + "epoch": "0", + "version": "0.187", + "release": "5.el9", + "installdate": "1670812254", + "arch": "noarch" + }, + "elfutils-libs": { + "epoch": "0", + "version": "0.187", + "release": "5.el9", + "installdate": "1670812254", + "arch": "x86_64" + }, + "gssproxy": { + "epoch": "0", + "version": "0.8.4", + "release": "4.el9", + "installdate": "1670812254", + "arch": "x86_64" + }, + "libkcapi": { + "epoch": "0", + "version": "1.3.1", + "release": "3.el9", + "installdate": "1670812254", + "arch": "x86_64" + }, + "libkcapi-hmaccalc": { + "epoch": "0", + "version": "1.3.1", + "release": "3.el9", + "installdate": "1670812254", + "arch": "x86_64" + }, + "kpartx": { + "epoch": "0", + "version": "0.8.7", + "release": "12.el9_1.1", + "installdate": "1670812254", + "arch": "x86_64" + }, + "libselinux-utils": { + "epoch": "0", + "version": "3.4", + "release": "3.el9", + "installdate": "1670812254", + "arch": "x86_64" + }, + "quota-nls": { + "epoch": "1", + "version": "4.06", + "release": "6.el9", + "installdate": "1670812255", + "arch": "noarch" + }, + "quota": { + "epoch": "1", + "version": "4.06", + "release": "6.el9", + "installdate": "1670812255", + "arch": "x86_64" + }, + "publicsuffix-list-dafsa": { + "epoch": "0", + "version": "20210518", + "release": "3.el9", + "installdate": "1670812255", + "arch": "noarch" + }, + "libpsl": { + "epoch": "0", + "version": "0.21.1", + "release": "5.el9", + "installdate": "1670812255", + "arch": "x86_64" + }, + "libcurl": { + "epoch": "0", + "version": "7.76.1", + "release": "19.el9", + "installdate": "1670812255", + "arch": "x86_64" + }, + "tpm2-tss": { + "epoch": "0", + "version": "3.0.3", + "release": "8.el9", + "installdate": "1670812256", + "arch": "x86_64" + }, + "ima-evm-utils": { + "epoch": "0", + "version": "1.4", + "release": "4.el9", + "installdate": "1670812256", + "arch": "x86_64" + }, + "librepo": { + "epoch": "0", + "version": "1.14.2", + "release": "3.el9", + "installdate": "1670812256", + "arch": "x86_64" + }, + "curl": { + "epoch": "0", + "version": "7.76.1", + "release": "19.el9", + "installdate": "1670812256", + "arch": "x86_64" + }, + "rpm-libs": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.el9_1", + "installdate": "1670812256", + "arch": "x86_64" + }, + "rpm": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.el9_1", + "installdate": "1670812256", + "arch": "x86_64" + }, + "policycoreutils": { + "epoch": "0", + "version": "3.4", + "release": "4.el9", + "installdate": "1670812257", + "arch": "x86_64" + }, + "libsolv": { + "epoch": "0", + "version": "0.7.22", + "release": "1.el9", + "installdate": "1670812257", + "arch": "x86_64" + }, + "libmodulemd": { + "epoch": "0", + "version": "2.13.0", + "release": "2.el9", + "installdate": "1670812257", + "arch": "x86_64" + }, + "libdnf": { + "epoch": "0", + "version": "0.67.0", + "release": "3.el9", + "installdate": "1670812257", + "arch": "x86_64" + }, + "python3-libdnf": { + "epoch": "0", + "version": "0.67.0", + "release": "3.el9", + "installdate": "1670812257", + "arch": "x86_64" + }, + "python3-hawkey": { + "epoch": "0", + "version": "0.67.0", + "release": "3.el9", + "installdate": "1670812258", + "arch": "x86_64" + }, + "rpm-plugin-selinux": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.el9_1", + "installdate": "1670812258", + "arch": "x86_64" + }, + "selinux-policy": { + "epoch": "0", + "version": "34.1.43", + "release": "1.el9", + "installdate": "1670812258", + "arch": "noarch" + }, + "selinux-policy-targeted": { + "epoch": "0", + "version": "34.1.43", + "release": "1.el9", + "installdate": "1670812261", + "arch": "noarch" + }, + "rpcbind": { + "epoch": "0", + "version": "1.2.6", + "release": "5.el9", + "installdate": "1670812262", + "arch": "x86_64" + }, + "python3-policycoreutils": { + "epoch": "0", + "version": "3.4", + "release": "4.el9", + "installdate": "1670812263", + "arch": "noarch" + }, + "policycoreutils-python-utils": { + "epoch": "0", + "version": "3.4", + "release": "4.el9", + "installdate": "1670812263", + "arch": "noarch" + }, + "rpm-sign-libs": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.el9_1", + "installdate": "1670812263", + "arch": "x86_64" + }, + "rpm-build-libs": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.el9_1", + "installdate": "1670812264", + "arch": "x86_64" + }, + "python3-rpm": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.el9_1", + "installdate": "1670812264", + "arch": "x86_64" + }, + "rpm-plugin-systemd-inhibit": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.el9_1", + "installdate": "1670812264", + "arch": "x86_64" + }, + "python3-dnf": { + "epoch": "0", + "version": "4.12.0", + "release": "4.el9", + "installdate": "1670812264", + "arch": "noarch" + }, + "dnf": { + "epoch": "0", + "version": "4.12.0", + "release": "4.el9", + "installdate": "1670812265", + "arch": "noarch" + }, + "policycoreutils-devel": { + "epoch": "0", + "version": "3.4", + "release": "4.el9", + "installdate": "1670812265", + "arch": "x86_64" + }, + "selinux-policy-devel": { + "epoch": "0", + "version": "34.1.43", + "release": "1.el9", + "installdate": "1670812266", + "arch": "noarch" + }, + "python3-dnf-plugins-core": { + "epoch": "0", + "version": "4.1.0", + "release": "3.el9", + "installdate": "1670812292", + "arch": "noarch" + }, + "dnf-plugins-core": { + "epoch": "0", + "version": "4.1.0", + "release": "3.el9", + "installdate": "1670812292", + "arch": "noarch" + }, + "rsyslog-logrotate": { + "epoch": "0", + "version": "8.2102.0", + "release": "105.el9", + "installdate": "1670812292", + "arch": "x86_64" + }, + "rsyslog": { + "epoch": "0", + "version": "8.2102.0", + "release": "105.el9", + "installdate": "1670812293", + "arch": "x86_64" + }, + "kbd-misc": { + "epoch": "0", + "version": "2.4.0", + "release": "8.el9", + "installdate": "1670812295", + "arch": "noarch" + }, + "kbd": { + "epoch": "0", + "version": "2.4.0", + "release": "8.el9", + "installdate": "1670812295", + "arch": "x86_64" + }, + "systemd-udev": { + "epoch": "0", + "version": "250", + "release": "12.el9_1", + "installdate": "1670812295", + "arch": "x86_64" + }, + "dracut": { + "epoch": "0", + "version": "057", + "release": "13.git20220816.el9", + "installdate": "1670812299", + "arch": "x86_64" + }, + "NetworkManager": { + "epoch": "1", + "version": "1.40.0", + "release": "1.el9", + "installdate": "1670812300", + "arch": "x86_64" + }, + "dracut-network": { + "epoch": "0", + "version": "057", + "release": "13.git20220816.el9", + "installdate": "1670812344", + "arch": "x86_64" + }, + "dracut-squash": { + "epoch": "0", + "version": "057", + "release": "13.git20220816.el9", + "installdate": "1670812344", + "arch": "x86_64" + }, + "libfido2": { + "epoch": "0", + "version": "1.6.0", + "release": "7.el9", + "installdate": "1670812344", + "arch": "x86_64" + }, + "os-prober": { + "epoch": "0", + "version": "1.77", + "release": "9.el9", + "installdate": "1670812344", + "arch": "x86_64" + }, + "grub2-tools": { + "epoch": "1", + "version": "2.06", + "release": "46.el9.rocky.0.1", + "installdate": "1670812345", + "arch": "x86_64" + }, + "grubby": { + "epoch": "0", + "version": "8.40", + "release": "61.el9", + "installdate": "1670812345", + "arch": "x86_64" + }, + "firewalld-filesystem": { + "epoch": "0", + "version": "1.1.1", + "release": "3.el9", + "installdate": "1670812345", + "arch": "noarch" + }, + "fonts-filesystem": { + "epoch": "1", + "version": "2.0.5", + "release": "7.el9.1", + "installdate": "1670812345", + "arch": "noarch" + }, + "dejavu-sans-fonts": { + "epoch": "0", + "version": "2.37", + "release": "18.el9", + "installdate": "1670812345", + "arch": "noarch" + }, + "langpacks-core-font-en": { + "epoch": "0", + "version": "3.0", + "release": "16.el9", + "installdate": "1670812345", + "arch": "noarch" + }, + "langpacks-core-en": { + "epoch": "0", + "version": "3.0", + "release": "16.el9", + "installdate": "1670812345", + "arch": "noarch" + }, + "hwdata": { + "epoch": "0", + "version": "0.348", + "release": "9.5.el9", + "installdate": "1670812345", + "arch": "noarch" + }, + "lshw": { + "epoch": "0", + "version": "B.02.19.2", + "release": "9.el9", + "installdate": "1670812345", + "arch": "x86_64" + }, + "langpacks-en": { + "epoch": "0", + "version": "3.0", + "release": "16.el9", + "installdate": "1670812345", + "arch": "noarch" + }, + "firewalld": { + "epoch": "0", + "version": "1.1.1", + "release": "3.el9", + "installdate": "1670812346", + "arch": "noarch" + }, + "crypto-policies-scripts": { + "epoch": "0", + "version": "20220815", + "release": "1.git0fbe86f.el9", + "installdate": "1670812347", + "arch": "noarch" + }, + "kexec-tools": { + "epoch": "0", + "version": "2.0.24", + "release": "5.el9", + "installdate": "1670812347", + "arch": "x86_64" + }, + "grub2-pc": { + "epoch": "1", + "version": "2.06", + "release": "46.el9.rocky.0.1", + "installdate": "1670812347", + "arch": "x86_64" + }, + "openssh-clients": { + "epoch": "0", + "version": "8.7p1", + "release": "24.el9_1", + "installdate": "1670812347", + "arch": "x86_64" + }, + "NetworkManager-tui": { + "epoch": "1", + "version": "1.40.0", + "release": "1.el9", + "installdate": "1670812347", + "arch": "x86_64" + }, + "NetworkManager-team": { + "epoch": "1", + "version": "1.40.0", + "release": "1.el9", + "installdate": "1670812348", + "arch": "x86_64" + }, + "dracut-config-rescue": { + "epoch": "0", + "version": "057", + "release": "13.git20220816.el9", + "installdate": "1670812348", + "arch": "x86_64" + }, + "yum-utils": { + "epoch": "0", + "version": "4.1.0", + "release": "3.el9", + "installdate": "1670812348", + "arch": "noarch" + }, + "yum": { + "epoch": "0", + "version": "4.12.0", + "release": "4.el9", + "installdate": "1670812348", + "arch": "noarch" + }, + "nfs-utils": { + "epoch": "1", + "version": "2.5.4", + "release": "15.el9", + "installdate": "1670812349", + "arch": "x86_64" + }, + "rpm-plugin-audit": { + "epoch": "0", + "version": "4.16.1.3", + "release": "19.el9_1", + "installdate": "1670812349", + "arch": "x86_64" + }, + "wget": { + "epoch": "0", + "version": "1.21.1", + "release": "7.el9", + "installdate": "1670812349", + "arch": "x86_64" + }, + "sssd-kcm": { + "epoch": "0", + "version": "2.7.3", + "release": "4.el9_1.1", + "installdate": "1670812349", + "arch": "x86_64" + }, + "authselect": { + "epoch": "0", + "version": "1.2.5", + "release": "1.el9", + "installdate": "1670812350", + "arch": "x86_64" + }, + "audit": { + "epoch": "0", + "version": "3.0.7", + "release": "103.el9", + "installdate": "1670812351", + "arch": "x86_64" + }, + "openssh-server": { + "epoch": "0", + "version": "8.7p1", + "release": "24.el9_1", + "installdate": "1670812352", + "arch": "x86_64" + }, + "net-tools": { + "epoch": "0", + "version": "2.0", + "release": "0.62.20160912git.el9", + "installdate": "1670812352", + "arch": "x86_64" + }, + "chrony": { + "epoch": "0", + "version": "4.2", + "release": "1.el9.rocky.1.0", + "installdate": "1670812352", + "arch": "x86_64" + }, + "parted": { + "epoch": "0", + "version": "3.5", + "release": "2.el9", + "installdate": "1670812353", + "arch": "x86_64" + }, + "xfsprogs": { + "epoch": "0", + "version": "5.14.2", + "release": "1.el9", + "installdate": "1670812353", + "arch": "x86_64" + }, + "passwd": { + "epoch": "0", + "version": "0.80", + "release": "12.el9", + "installdate": "1670812353", + "arch": "x86_64" + }, + "sudo": { + "epoch": "0", + "version": "1.9.5p2", + "release": "7.el9", + "installdate": "1670812354", + "arch": "x86_64" + }, + "iproute-tc": { + "epoch": "0", + "version": "5.18.0", + "release": "1.el9", + "installdate": "1670812354", + "arch": "x86_64" + }, + "man-db": { + "epoch": "0", + "version": "2.9.3", + "release": "6.el9", + "installdate": "1670812354", + "arch": "x86_64" + }, + "irqbalance": { + "epoch": "2", + "version": "1.9.0", + "release": "3.el9", + "installdate": "1670812354", + "arch": "x86_64" + }, + "initscripts-rename-device": { + "epoch": "0", + "version": "10.11.5", + "release": "1.el9", + "installdate": "1670812355", + "arch": "x86_64" + }, + "e2fsprogs": { + "epoch": "0", + "version": "1.46.5", + "release": "3.el9", + "installdate": "1670812355", + "arch": "x86_64" + }, + "prefixdevname": { + "epoch": "0", + "version": "0.1.0", + "release": "8.el9", + "installdate": "1670812355", + "arch": "x86_64" + }, + "rsync": { + "epoch": "0", + "version": "3.2.3", + "release": "18.el9", + "installdate": "1670812355", + "arch": "x86_64" + }, + "tar": { + "epoch": "2", + "version": "1.34", + "release": "5.el9", + "installdate": "1670812355", + "arch": "x86_64" + }, + "vim-minimal": { + "epoch": "2", + "version": "8.2.2637", + "release": "16.el9_0.3", + "installdate": "1670812355", + "arch": "x86_64" + }, + "sg3_utils": { + "epoch": "0", + "version": "1.47", + "release": "9.el9", + "installdate": "1670812356", + "arch": "x86_64" + }, + "bzip2": { + "epoch": "0", + "version": "1.0.8", + "release": "8.el9", + "installdate": "1670812356", + "arch": "x86_64" + }, + "lsscsi": { + "epoch": "0", + "version": "0.32", + "release": "6.el9", + "installdate": "1670812356", + "arch": "x86_64" + }, + "ncurses": { + "epoch": "0", + "version": "6.2", + "release": "8.20210508.el9", + "installdate": "1670812356", + "arch": "x86_64" + }, + "libsysfs": { + "epoch": "0", + "version": "2.1.1", + "release": "10.el9", + "installdate": "1670812356", + "arch": "x86_64" + }, + "rootfiles": { + "epoch": "0", + "version": "8.1", + "release": "31.el9", + "installdate": "1670812356", + "arch": "noarch" + }, + "gpg-pubkey": { + "epoch": "0", + "version": "350d275d", + "release": "6279464b", + "installdate": "1670812811", + "arch": "(none)" + }, + "kernel-core": { + "epoch": "0", + "version": "5.14.0", + "release": "162.6.1.el9_1.0.1", + "installdate": "1670812825", + "arch": "x86_64" + }, + "kernel-modules": { + "epoch": "0", + "version": "5.14.0", + "release": "162.6.1.el9_1.0.1", + "installdate": "1670812828", + "arch": "x86_64" + }, + "kernel-tools-libs": { + "epoch": "0", + "version": "5.14.0", + "release": "162.6.1.el9_1.0.1", + "installdate": "1670812843", + "arch": "x86_64" + }, + "kernel-tools": { + "epoch": "0", + "version": "5.14.0", + "release": "162.6.1.el9_1.0.1", + "installdate": "1670812843", + "arch": "x86_64" + }, + "kernel": { + "epoch": "0", + "version": "5.14.0", + "release": "162.6.1.el9_1.0.1", + "installdate": "1670812843", + "arch": "x86_64" + }, + "krb5-libs": { + "epoch": "0", + "version": "1.19.1", + "release": "24.el9_1", + "installdate": "1670812843", + "arch": "x86_64" + }, + "tzdata": { + "epoch": "0", + "version": "2022g", + "release": "1.el9_1", + "installdate": "1670812846", + "arch": "noarch" + }, + "chef": { + "epoch": "0", + "version": "18.1.0", + "release": "1.el9", + "installdate": "1675118903", + "arch": "x86_64" + } + }, + "platform": "rocky", + "platform_family": "rhel", + "platform_version": "9.1", + "root_group": "root", + "shells": [ + "/bin/sh", + "/bin/bash", + "/usr/bin/sh", + "/usr/bin/bash" + ], + "time": { + "timezone": "GMT" + }, + "uptime": "30 days 15 hours 07 minutes 30 seconds", + "uptime_seconds": 2646450, + "virtualization": { + "systems": { + } + } +} diff --git a/lib/fauxhai/platforms/ubuntu/22.04.json b/lib/fauxhai/platforms/ubuntu/22.04.json new file mode 100644 index 00000000..6ad235d4 --- /dev/null +++ b/lib/fauxhai/platforms/ubuntu/22.04.json @@ -0,0 +1,4578 @@ +{ + "block_device": { + "dm-0": { + "size": "65003520", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop0": { + "size": "126760", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop1": { + "size": "163736", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop2": { + "size": "91496", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop3": { + "size": "98288", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop4": { + "size": "129480", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop5": { + "size": "210912", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop6": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop7": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "sda": { + "size": "134217728", + "removable": "0", + "model": "VBOX HARDDISK", + "rev": "1.0", + "state": "running", + "timeout": "30", + "vendor": "ATA", + "queue_depth": "32", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + } + }, + "chef_packages": { + "ohai": { + "version": "18.0.14", + "ohai_root": "/opt/chef/embedded/lib/ruby/gems/3.0.0/gems/ohai-18.0.14/lib/ohai" + } + }, + "command": { + "ps": "ps -ef" + }, + "counters": { + "network": { + "interfaces": { + "lo": { + "tx": { + "queuelen": "1", + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "carrier": 0, + "collisions": 0 + }, + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0 + } + }, + "eth0": { + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "frame": 0, + "compressed": 0, + "multicast": 0 + }, + "tx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "collisions": 0, + "carrier": 0, + "compressed": 0 + } + } + } + } + }, + "cpu": { + "real": 1, + "total": 1, + "cores": 1 + }, + "current_user": "fauxhai", + "dmi": { + "dmidecode_version": "3.3", + "smbios_version": "2.5", + "structures": { + "count": "10", + "size": "450" + }, + "table_location": "0x000E1000", + "bios": { + "all_records": [ + { + "record_id": "0x0000", + "size": "0", + "application_identifier": "BIOS Information", + "Vendor": "innotek GmbH", + "Version": "VirtualBox", + "Release Date": "12/01/2006", + "Address": "0xE0000", + "Runtime Size": "128 kB", + "ROM Size": "128 kB", + "Characteristics": { + "ACPI is supported": null + } + } + ], + "vendor": "innotek GmbH", + "version": "VirtualBox", + "release_date": "12/01/2006", + "address": "0xE0000", + "runtime_size": "128 kB", + "rom_size": "128 kB" + }, + "system": { + "all_records": [ + { + "record_id": "0x0001", + "size": "1", + "application_identifier": "System Information", + "Manufacturer": "innotek GmbH", + "Product Name": "VirtualBox", + "Version": "1.2", + "Serial Number": "0", + "UUID": "231327bb-cb5a-504c-a1ac-eb947d65856e", + "Wake-up Type": "Power Switch", + "SKU Number": "Not Specified", + "Family": "Virtual Machine" + } + ], + "manufacturer": "innotek GmbH", + "product_name": "VirtualBox", + "version": "1.2", + "serial_number": "0", + "uuid": "231327bb-cb5a-504c-a1ac-eb947d65856e", + "wake_up_type": "Power Switch", + "sku_number": "Not Specified", + "family": "Virtual Machine" + }, + "base_board": { + "all_records": [ + { + "record_id": "0x0008", + "size": "2", + "application_identifier": "Base Board Information", + "Manufacturer": "Oracle Corporation", + "Product Name": "VirtualBox", + "Version": "1.2", + "Serial Number": "0", + "Asset Tag": "Not Specified", + "Features": { + "Board is a hosting board": null + }, + "Location In Chassis": "Not Specified", + "Chassis Handle": "0x0003", + "Type": "Motherboard", + "Contained Object Handles": "0" + } + ], + "manufacturer": "Oracle Corporation", + "product_name": "VirtualBox", + "version": "1.2", + "serial_number": "0", + "asset_tag": "Not Specified", + "location_in_chassis": "Not Specified", + "chassis_handle": "0x0003", + "type": "Motherboard", + "contained_object_handles": "0" + }, + "chassis": { + "all_records": [ + { + "record_id": "0x0003", + "size": "3", + "application_identifier": "Chassis Information", + "Manufacturer": "Oracle Corporation", + "Type": "Other", + "Lock": "Not Present", + "Version": "Not Specified", + "Serial Number": "Not Specified", + "Asset Tag": "Not Specified", + "Boot-up State": "Safe", + "Power Supply State": "Safe", + "Thermal State": "Safe", + "Security Status": "None" + } + ], + "manufacturer": "Oracle Corporation", + "type": "Other", + "lock": "Not Present", + "version": "Not Specified", + "serial_number": "Not Specified", + "asset_tag": "Not Specified", + "boot_up_state": "Safe", + "power_supply_state": "Safe", + "thermal_state": "Safe", + "security_status": "None" + }, + "oem_strings": { + "all_records": [ + { + "record_id": "0x0002", + "size": "11", + "application_identifier": "OEM Strings", + "String 1": "vboxVer_6.1.38", + "String 2": "vboxRev_153438" + } + ], + "string_1": "vboxVer_6.1.38", + "string_2": "vboxRev_153438" + } + }, + "domain": "local", + "filesystem": { + "by_device": { + "tmpfs": { + "kb_size": "99428", + "kb_used": "4", + "kb_available": "99424", + "percent_used": "1%", + "total_inodes": "24857", + "inodes_used": "25", + "inodes_available": "24832", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "size=99432k", + "mode=755", + "inode64" + ], + "mounts": [ + "/run", + "/dev/shm", + "/run/lock", + "/run/user/1000", + "/run/snapd/ns" + ] + }, + "/dev/mapper/ubuntu--vg-ubuntu--lv": { + "kb_size": "31811408", + "kb_used": "6465824", + "kb_available": "23704112", + "percent_used": "22%", + "total_inodes": "2031616", + "inodes_used": "55631", + "inodes_available": "1975985", + "inodes_percent_used": "3%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime" + ], + "uuid": "b50fc2f6-3b6c-4bfb-a3d9-bd9a127ad072", + "mounts": [ + "/" + ] + }, + "/dev/sda2": { + "kb_size": "1992552", + "kb_used": "128480", + "kb_available": "1742832", + "percent_used": "7%", + "total_inodes": "131072", + "inodes_used": "316", + "inodes_available": "130756", + "inodes_percent_used": "1%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime" + ], + "uuid": "27b9d749-1470-4a8c-b837-2daab86aad8d", + "mounts": [ + "/boot" + ] + }, + "tmp_omnibus_cache": { + "kb_size": "958045344", + "kb_used": "672743784", + "kb_available": "285301560", + "percent_used": "71%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "mounts": [ + "/tmp/omnibus/cache" + ] + }, + "sysfs": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys" + ] + }, + "proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/proc" + ] + }, + "udev": { + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "relatime", + "size=440868k", + "nr_inodes=110217", + "mode=755", + "inode64" + ], + "mounts": [ + "/dev" + ] + }, + "devpts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "mounts": [ + "/dev/pts" + ] + }, + "securityfs": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/security" + ] + }, + "cgroup2": { + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "nsdelegate", + "memory_recursiveprot" + ], + "mounts": [ + "/sys/fs/cgroup" + ] + }, + "pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/fs/pstore" + ] + }, + "bpf": { + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "mounts": [ + "/sys/fs/bpf" + ] + }, + "systemd-1": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=29", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=18664" + ], + "mounts": [ + "/proc/sys/fs/binfmt_misc" + ] + }, + "hugetlbfs": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "pagesize=2M" + ], + "mounts": [ + "/dev/hugepages" + ] + }, + "mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/dev/mqueue" + ] + }, + "debugfs": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/debug" + ] + }, + "tracefs": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/tracing", + "/sys/kernel/debug/tracing" + ] + }, + "fusectl": { + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/fs/fuse/connections" + ] + }, + "configfs": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/config" + ] + }, + "none": { + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "mounts": [ + "/run/credentials/systemd-sysusers.service" + ] + }, + "/var/lib/snapd/snaps/core20_1405.snap": { + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue", + "x-gdu.hide" + ], + "mounts": [ + "/snap/core20/1405" + ] + }, + "/var/lib/snapd/snaps/lxd_22923.snap": { + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue", + "x-gdu.hide" + ], + "mounts": [ + "/snap/lxd/22923" + ] + }, + "/var/lib/snapd/snaps/snapd_15534.snap": { + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue", + "x-gdu.hide" + ], + "mounts": [ + "/snap/snapd/15534" + ] + }, + "/var/lib/snapd/snaps/snapd_16778.snap": { + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue", + "x-gdu.hide" + ], + "mounts": [ + "/snap/snapd/16778" + ] + }, + "/var/lib/snapd/snaps/core20_1623.snap": { + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue", + "x-gdu.hide" + ], + "mounts": [ + "/snap/core20/1623" + ] + }, + "/var/lib/snapd/snaps/lxd_23541.snap": { + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue", + "x-gdu.hide" + ], + "mounts": [ + "/snap/lxd/23541" + ] + }, + "nsfs": { + "fs_type": "nsfs", + "mount_options": [ + "rw" + ], + "mounts": [ + "/run/snapd/ns/lxd.mnt" + ] + }, + "binfmt_misc": { + "fs_type": "binfmt_misc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/proc/sys/fs/binfmt_misc" + ] + }, + "/dev/loop0": { + "fs_type": "squashfs", + "mounts": [ + "/snap/core20/1405" + ], + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue" + ] + }, + "/dev/loop1": { + "fs_type": "squashfs", + "mounts": [ + "/snap/lxd/22923" + ], + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue" + ] + }, + "/dev/loop2": { + "fs_type": "squashfs", + "mounts": [ + "/snap/snapd/15534" + ], + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue" + ] + }, + "/dev/loop3": { + "fs_type": "squashfs", + "mounts": [ + "/snap/snapd/16778" + ], + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue" + ] + }, + "/dev/loop4": { + "fs_type": "squashfs", + "mounts": [ + "/snap/core20/1623" + ], + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue" + ] + }, + "/dev/loop5": { + "fs_type": "squashfs", + "mounts": [ + "/snap/lxd/23541" + ], + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue" + ] + }, + "/dev/sda": { + "mounts": [ + + ] + }, + "/dev/sda1": { + "mounts": [ + + ] + }, + "/dev/sda3": { + "fs_type": "LVM2_member", + "uuid": "jIfuRV-7jQb-LJLT-lY2e-0Zu3-7Zel-hDLywi", + "mounts": [ + + ] + } + }, + "by_mountpoint": { + "/run": { + "kb_size": "99432", + "kb_used": "968", + "kb_available": "98464", + "percent_used": "1%", + "total_inodes": "124287", + "inodes_used": "708", + "inodes_available": "123579", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "size=99432k", + "mode=755", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/": { + "kb_size": "31811408", + "kb_used": "6465824", + "kb_available": "23704112", + "percent_used": "22%", + "total_inodes": "2031616", + "inodes_used": "55631", + "inodes_available": "1975985", + "inodes_percent_used": "3%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime" + ], + "uuid": "b50fc2f6-3b6c-4bfb-a3d9-bd9a127ad072", + "devices": [ + "/dev/mapper/ubuntu--vg-ubuntu--lv" + ] + }, + "/dev/shm": { + "kb_size": "497148", + "kb_used": "0", + "kb_available": "497148", + "percent_used": "0%", + "total_inodes": "124287", + "inodes_used": "1", + "inodes_available": "124286", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/run/lock": { + "kb_size": "5120", + "kb_used": "0", + "kb_available": "5120", + "percent_used": "0%", + "total_inodes": "124287", + "inodes_used": "3", + "inodes_available": "124284", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "size=5120k", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/boot": { + "kb_size": "1992552", + "kb_used": "128480", + "kb_available": "1742832", + "percent_used": "7%", + "total_inodes": "131072", + "inodes_used": "316", + "inodes_available": "130756", + "inodes_percent_used": "1%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime" + ], + "uuid": "27b9d749-1470-4a8c-b837-2daab86aad8d", + "devices": [ + "/dev/sda2" + ] + }, + "/tmp/omnibus/cache": { + "kb_size": "958045344", + "kb_used": "672743784", + "kb_available": "285301560", + "percent_used": "71%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "devices": [ + "tmp_omnibus_cache" + ] + }, + "/run/user/1000": { + "kb_size": "99428", + "kb_used": "4", + "kb_available": "99424", + "percent_used": "1%", + "total_inodes": "24857", + "inodes_used": "25", + "inodes_available": "24832", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "size=99428k", + "nr_inodes=24857", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/sys": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "sysfs" + ] + }, + "/proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "proc" + ] + }, + "/dev": { + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "relatime", + "size=440868k", + "nr_inodes=110217", + "mode=755", + "inode64" + ], + "devices": [ + "udev" + ] + }, + "/dev/pts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "devices": [ + "devpts" + ] + }, + "/sys/kernel/security": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "securityfs" + ] + }, + "/sys/fs/cgroup": { + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "nsdelegate", + "memory_recursiveprot" + ], + "devices": [ + "cgroup2" + ] + }, + "/sys/fs/pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "pstore" + ] + }, + "/sys/fs/bpf": { + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "devices": [ + "bpf" + ] + }, + "/proc/sys/fs/binfmt_misc": { + "fs_type": "binfmt_misc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "systemd-1", + "binfmt_misc" + ] + }, + "/dev/hugepages": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "pagesize=2M" + ], + "devices": [ + "hugetlbfs" + ] + }, + "/dev/mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "mqueue" + ] + }, + "/sys/kernel/debug": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "debugfs" + ] + }, + "/sys/kernel/tracing": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "tracefs" + ] + }, + "/sys/fs/fuse/connections": { + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "fusectl" + ] + }, + "/sys/kernel/config": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "configfs" + ] + }, + "/run/credentials/systemd-sysusers.service": { + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "devices": [ + "none" + ] + }, + "/snap/core20/1405": { + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue" + ], + "devices": [ + "/var/lib/snapd/snaps/core20_1405.snap", + "/dev/loop0" + ] + }, + "/snap/lxd/22923": { + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue" + ], + "devices": [ + "/var/lib/snapd/snaps/lxd_22923.snap", + "/dev/loop1" + ] + }, + "/snap/snapd/15534": { + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue" + ], + "devices": [ + "/var/lib/snapd/snaps/snapd_15534.snap", + "/dev/loop2" + ] + }, + "/run/snapd/ns": { + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "size=99432k", + "mode=755", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/snap/snapd/16778": { + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue" + ], + "devices": [ + "/var/lib/snapd/snaps/snapd_16778.snap", + "/dev/loop3" + ] + }, + "/snap/core20/1623": { + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue" + ], + "devices": [ + "/var/lib/snapd/snaps/core20_1623.snap", + "/dev/loop4" + ] + }, + "/snap/lxd/23541": { + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue" + ], + "devices": [ + "/var/lib/snapd/snaps/lxd_23541.snap", + "/dev/loop5" + ] + }, + "/run/snapd/ns/lxd.mnt": { + "fs_type": "nsfs", + "mount_options": [ + "rw" + ], + "devices": [ + "nsfs" + ] + }, + "/sys/kernel/debug/tracing": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "tracefs" + ] + } + }, + "by_pair": { + "tmpfs,/run": { + "device": "tmpfs", + "kb_size": "99432", + "kb_used": "968", + "kb_available": "98464", + "percent_used": "1%", + "mount": "/run", + "total_inodes": "124287", + "inodes_used": "708", + "inodes_available": "123579", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "size=99432k", + "mode=755", + "inode64" + ] + }, + "/dev/mapper/ubuntu--vg-ubuntu--lv,/": { + "device": "/dev/mapper/ubuntu--vg-ubuntu--lv", + "kb_size": "31811408", + "kb_used": "6465824", + "kb_available": "23704112", + "percent_used": "22%", + "mount": "/", + "total_inodes": "2031616", + "inodes_used": "55631", + "inodes_available": "1975985", + "inodes_percent_used": "3%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime" + ], + "uuid": "b50fc2f6-3b6c-4bfb-a3d9-bd9a127ad072" + }, + "tmpfs,/dev/shm": { + "device": "tmpfs", + "kb_size": "497148", + "kb_used": "0", + "kb_available": "497148", + "percent_used": "0%", + "mount": "/dev/shm", + "total_inodes": "124287", + "inodes_used": "1", + "inodes_available": "124286", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "inode64" + ] + }, + "tmpfs,/run/lock": { + "device": "tmpfs", + "kb_size": "5120", + "kb_used": "0", + "kb_available": "5120", + "percent_used": "0%", + "mount": "/run/lock", + "total_inodes": "124287", + "inodes_used": "3", + "inodes_available": "124284", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "size=5120k", + "inode64" + ] + }, + "/dev/sda2,/boot": { + "device": "/dev/sda2", + "kb_size": "1992552", + "kb_used": "128480", + "kb_available": "1742832", + "percent_used": "7%", + "mount": "/boot", + "total_inodes": "131072", + "inodes_used": "316", + "inodes_available": "130756", + "inodes_percent_used": "1%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime" + ], + "uuid": "27b9d749-1470-4a8c-b837-2daab86aad8d" + }, + "tmp_omnibus_cache,/tmp/omnibus/cache": { + "device": "tmp_omnibus_cache", + "kb_size": "958045344", + "kb_used": "672743784", + "kb_available": "285301560", + "percent_used": "71%", + "mount": "/tmp/omnibus/cache", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ] + }, + "tmpfs,/run/user/1000": { + "device": "tmpfs", + "kb_size": "99428", + "kb_used": "4", + "kb_available": "99424", + "percent_used": "1%", + "mount": "/run/user/1000", + "total_inodes": "24857", + "inodes_used": "25", + "inodes_available": "24832", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "size=99428k", + "nr_inodes=24857", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ] + }, + "sysfs,/sys": { + "device": "sysfs", + "mount": "/sys", + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "proc,/proc": { + "device": "proc", + "mount": "/proc", + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "udev,/dev": { + "device": "udev", + "mount": "/dev", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "relatime", + "size=440868k", + "nr_inodes=110217", + "mode=755", + "inode64" + ] + }, + "devpts,/dev/pts": { + "device": "devpts", + "mount": "/dev/pts", + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "gid=5", + "mode=620", + "ptmxmode=000" + ] + }, + "securityfs,/sys/kernel/security": { + "device": "securityfs", + "mount": "/sys/kernel/security", + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "cgroup2,/sys/fs/cgroup": { + "device": "cgroup2", + "mount": "/sys/fs/cgroup", + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "nsdelegate", + "memory_recursiveprot" + ] + }, + "pstore,/sys/fs/pstore": { + "device": "pstore", + "mount": "/sys/fs/pstore", + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "bpf,/sys/fs/bpf": { + "device": "bpf", + "mount": "/sys/fs/bpf", + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ] + }, + "systemd-1,/proc/sys/fs/binfmt_misc": { + "device": "systemd-1", + "mount": "/proc/sys/fs/binfmt_misc", + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=29", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=18664" + ] + }, + "hugetlbfs,/dev/hugepages": { + "device": "hugetlbfs", + "mount": "/dev/hugepages", + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "relatime", + "pagesize=2M" + ] + }, + "mqueue,/dev/mqueue": { + "device": "mqueue", + "mount": "/dev/mqueue", + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "debugfs,/sys/kernel/debug": { + "device": "debugfs", + "mount": "/sys/kernel/debug", + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "tracefs,/sys/kernel/tracing": { + "device": "tracefs", + "mount": "/sys/kernel/tracing", + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "fusectl,/sys/fs/fuse/connections": { + "device": "fusectl", + "mount": "/sys/fs/fuse/connections", + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "configfs,/sys/kernel/config": { + "device": "configfs", + "mount": "/sys/kernel/config", + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "none,/run/credentials/systemd-sysusers.service": { + "device": "none", + "mount": "/run/credentials/systemd-sysusers.service", + "fs_type": "ramfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ] + }, + "/var/lib/snapd/snaps/core20_1405.snap,/snap/core20/1405": { + "device": "/var/lib/snapd/snaps/core20_1405.snap", + "mount": "/snap/core20/1405", + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue", + "x-gdu.hide" + ] + }, + "/var/lib/snapd/snaps/lxd_22923.snap,/snap/lxd/22923": { + "device": "/var/lib/snapd/snaps/lxd_22923.snap", + "mount": "/snap/lxd/22923", + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue", + "x-gdu.hide" + ] + }, + "/var/lib/snapd/snaps/snapd_15534.snap,/snap/snapd/15534": { + "device": "/var/lib/snapd/snaps/snapd_15534.snap", + "mount": "/snap/snapd/15534", + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue", + "x-gdu.hide" + ] + }, + "tmpfs,/run/snapd/ns": { + "device": "tmpfs", + "mount": "/run/snapd/ns", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "size=99432k", + "mode=755", + "inode64" + ] + }, + "/var/lib/snapd/snaps/snapd_16778.snap,/snap/snapd/16778": { + "device": "/var/lib/snapd/snaps/snapd_16778.snap", + "mount": "/snap/snapd/16778", + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue", + "x-gdu.hide" + ] + }, + "/var/lib/snapd/snaps/core20_1623.snap,/snap/core20/1623": { + "device": "/var/lib/snapd/snaps/core20_1623.snap", + "mount": "/snap/core20/1623", + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue", + "x-gdu.hide" + ] + }, + "/var/lib/snapd/snaps/lxd_23541.snap,/snap/lxd/23541": { + "device": "/var/lib/snapd/snaps/lxd_23541.snap", + "mount": "/snap/lxd/23541", + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue", + "x-gdu.hide" + ] + }, + "nsfs,/run/snapd/ns/lxd.mnt": { + "device": "nsfs", + "mount": "/run/snapd/ns/lxd.mnt", + "fs_type": "nsfs", + "mount_options": [ + "rw" + ] + }, + "binfmt_misc,/proc/sys/fs/binfmt_misc": { + "device": "binfmt_misc", + "mount": "/proc/sys/fs/binfmt_misc", + "fs_type": "binfmt_misc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "tracefs,/sys/kernel/debug/tracing": { + "device": "tracefs", + "mount": "/sys/kernel/debug/tracing", + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "/dev/loop0,": { + "device": "/dev/loop0", + "fs_type": "squashfs" + }, + "/dev/loop1,": { + "device": "/dev/loop1", + "fs_type": "squashfs" + }, + "/dev/loop2,": { + "device": "/dev/loop2", + "fs_type": "squashfs" + }, + "/dev/loop3,": { + "device": "/dev/loop3", + "fs_type": "squashfs" + }, + "/dev/loop4,": { + "device": "/dev/loop4", + "fs_type": "squashfs" + }, + "/dev/loop5,": { + "device": "/dev/loop5", + "fs_type": "squashfs" + }, + "/dev/sda,": { + "device": "/dev/sda" + }, + "/dev/sda1,": { + "device": "/dev/sda1" + }, + "/dev/sda3,": { + "device": "/dev/sda3", + "fs_type": "LVM2_member", + "uuid": "jIfuRV-7jQb-LJLT-lY2e-0Zu3-7Zel-hDLywi" + }, + "/dev/loop0,/snap/core20/1405": { + "device": "/dev/loop0", + "mount": "/snap/core20/1405", + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue" + ] + }, + "/dev/loop1,/snap/lxd/22923": { + "device": "/dev/loop1", + "mount": "/snap/lxd/22923", + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue" + ] + }, + "/dev/loop2,/snap/snapd/15534": { + "device": "/dev/loop2", + "mount": "/snap/snapd/15534", + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue" + ] + }, + "/dev/loop3,/snap/snapd/16778": { + "device": "/dev/loop3", + "mount": "/snap/snapd/16778", + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue" + ] + }, + "/dev/loop4,/snap/core20/1623": { + "device": "/dev/loop4", + "mount": "/snap/core20/1623", + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue" + ] + }, + "/dev/loop5,/snap/lxd/23541": { + "device": "/dev/loop5", + "mount": "/snap/lxd/23541", + "fs_type": "squashfs", + "mount_options": [ + "ro", + "nodev", + "relatime", + "errors=continue" + ] + } + } + }, + "fips": { + "kernel": { + "enabled": true + } + }, + "fqdn": "fauxhai.local", + "hostname": "Fauxhai", + "idle": "30 days 15 hours 07 minutes 30 seconds", + "idletime_seconds": 2646450, + "init_package": "systemd", + "ipaddress": "10.0.0.2", + "kernel": { + "name": "Linux", + "release": "5.15.0-30-generic", + "version": "#31-Ubuntu SMP Thu May 5 10:00:34 UTC 2022", + "machine": "x86_64", + "processor": "x86_64", + "os": "GNU/Linux", + "modules": { + "binfmt_misc": { + "size": "24576", + "refcount": "1" + }, + "tls": { + "size": "106496", + "refcount": "0" + }, + "vboxsf": { + "size": "77824", + "refcount": "1", + "version": "6.1.34 r150636" + }, + "intel_rapl_msr": { + "size": "20480", + "refcount": "0" + }, + "intel_rapl_common": { + "size": "36864", + "refcount": "1" + }, + "rapl": { + "size": "20480", + "refcount": "0" + }, + "input_leds": { + "size": "16384", + "refcount": "0" + }, + "serio_raw": { + "size": "20480", + "refcount": "0" + }, + "vboxguest": { + "size": "401408", + "refcount": "2", + "version": "6.1.34 r150636" + }, + "mac_hid": { + "size": "16384", + "refcount": "0" + }, + "sch_fq_codel": { + "size": "20480", + "refcount": "2" + }, + "dm_multipath": { + "size": "40960", + "refcount": "0" + }, + "scsi_dh_rdac": { + "size": "20480", + "refcount": "0", + "version": "01.00.0000.0000" + }, + "scsi_dh_emc": { + "size": "16384", + "refcount": "0" + }, + "scsi_dh_alua": { + "size": "20480", + "refcount": "0", + "version": "2.0" + }, + "ipmi_devintf": { + "size": "20480", + "refcount": "0" + }, + "ipmi_msghandler": { + "size": "122880", + "refcount": "1", + "version": "39.2" + }, + "msr": { + "size": "16384", + "refcount": "0" + }, + "ip_tables": { + "size": "32768", + "refcount": "0" + }, + "x_tables": { + "size": "53248", + "refcount": "1" + }, + "autofs4": { + "size": "49152", + "refcount": "2" + }, + "btrfs": { + "size": "1523712", + "refcount": "0" + }, + "blake2b_generic": { + "size": "20480", + "refcount": "0" + }, + "zstd_compress": { + "size": "229376", + "refcount": "1" + }, + "raid10": { + "size": "69632", + "refcount": "0" + }, + "raid456": { + "size": "163840", + "refcount": "0" + }, + "async_raid6_recov": { + "size": "24576", + "refcount": "1" + }, + "async_memcpy": { + "size": "20480", + "refcount": "2" + }, + "async_pq": { + "size": "24576", + "refcount": "2" + }, + "async_xor": { + "size": "20480", + "refcount": "3" + }, + "async_tx": { + "size": "20480", + "refcount": "5" + }, + "xor": { + "size": "24576", + "refcount": "2" + }, + "raid6_pq": { + "size": "122880", + "refcount": "4" + }, + "libcrc32c": { + "size": "16384", + "refcount": "2" + }, + "raid1": { + "size": "49152", + "refcount": "0" + }, + "raid0": { + "size": "24576", + "refcount": "0" + }, + "multipath": { + "size": "20480", + "refcount": "0" + }, + "linear": { + "size": "20480", + "refcount": "0" + }, + "vboxvideo": { + "size": "36864", + "refcount": "1", + "version": "6.1.34 r150636" + }, + "drm_ttm_helper": { + "size": "16384", + "refcount": "1" + }, + "crct10dif_pclmul": { + "size": "16384", + "refcount": "1" + }, + "ttm": { + "size": "86016", + "refcount": "2" + }, + "crc32_pclmul": { + "size": "16384", + "refcount": "0" + }, + "drm_kms_helper": { + "size": "307200", + "refcount": "1" + }, + "syscopyarea": { + "size": "16384", + "refcount": "1" + }, + "sysfillrect": { + "size": "20480", + "refcount": "1" + }, + "ghash_clmulni_intel": { + "size": "16384", + "refcount": "0" + }, + "sysimgblt": { + "size": "16384", + "refcount": "1" + }, + "fb_sys_fops": { + "size": "16384", + "refcount": "1" + }, + "aesni_intel": { + "size": "376832", + "refcount": "0" + }, + "crypto_simd": { + "size": "16384", + "refcount": "1" + }, + "cec": { + "size": "61440", + "refcount": "1" + }, + "cryptd": { + "size": "24576", + "refcount": "2" + }, + "rc_core": { + "size": "65536", + "refcount": "1" + }, + "ahci": { + "size": "45056", + "refcount": "2", + "version": "3.0" + }, + "drm": { + "size": "606208", + "refcount": "5" + }, + "e1000": { + "size": "155648", + "refcount": "0" + }, + "libahci": { + "size": "45056", + "refcount": "1" + }, + "psmouse": { + "size": "176128", + "refcount": "0" + }, + "pata_acpi": { + "size": "16384", + "refcount": "0", + "version": "0.2.3" + }, + "i2c_piix4": { + "size": "28672", + "refcount": "0" + }, + "video": { + "size": "53248", + "refcount": "0" + } + } + }, + "keys": { + "ssh": { + "host_dsa_public": "ssh-dss AAAAB3NzaC1kc3MAAACBAJFo9BLAw4WKEs5hgipk5m423FzBsDXCZSMcC9ca/om/1VYzMqImixGe3uICDzNFUWxFoLJTQAOccyzo6MXZiQqwWJDLFi5qOSr6w2XcMyE+zd4wOyMoDiVM5fizmG8K3FzrqvGjwBcHcBdOQnavSijoj38DN25J9zhrid5BY4WlAAAAFQDxXrCyG52XCzn3FV4ej38wJBkomQAAAIBovGPJ4mP2P6BK8lHl0PPbktwQbWlpJ13oz6REJFDVcUi7vV26bX/BjQX+ohzZQzljdz1SpUbPc/8nuA4darYkVh91eBi307EN8IdxRHj2eBgp/ZG4yshIebG3WHrwJD/xUjjZ1MRfyDT1ermVi4LvjjPgWDxLZnPpMaR6S1nzgQAAAIEAj0Vd6DCWslvlsZ8+N53HWsqPi3gnx35JoLPz9Z2epkKIKqmEHav+93G3hdfztVa4I4t3phoPniQchYryF5+RNg8hqxKzjNtrIqUYCeuf2NJrksNsH7OZygPHZpqt4kTuwAGZxjxEGfAI0y8DhkU2ntp2LnzRnWH106BQBCmcXwo= fauxhai.local", + "host_rsa_public": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCtLCeqtqr/HbnORckw1ukdLhpfGoOPFi5/esKEokzTqq1gsgQ2V8emmyjfq1i6XXfRtSBxkdlHv/GWdP5wBTuE2G85MzBkVSQPvmwQN8lX/JMPEEtKXkeOo0o92/PiSmvY4eRsdF0mw40Uvg7jtE3f3fxj497kzh5fKtkrHnF4x9gXCbVdr3FqXJfggR5IJwAxToerbK7x/uRS+7YuZI9Pip3tt14nv9ezwXcuGb/tvjWOZINiFl8izVIFKi7sxfTX09p4NgamxRS7TD2Yd0jT8nEoF9UZTsgXcJ1kDSx7N7NxFfNfP6rCdOGRRz4gUhXtsUjG/XkxPeCwZ7A9VnOD fauxhai.local" + } + }, + "languages": { + "ruby": { + "platform": "x86_64-linux", + "version": "3.0.3", + "release_date": "2021-11-24", + "target": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_vendor": "pc", + "target_os": "linux", + "host": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux", + "host_vendor": "pc", + "bin_dir": "/usr/local/bin", + "ruby_bin": "/usr/local/bin/ruby", + "gem_bin": "/usr/local/bin/gem", + "gems_dir": "/usr/local/gems" + }, + "powershell": null + }, + "lsb": { + "id": "Ubuntu", + "description": "Ubuntu 22.04 LTS", + "release": "22.04", + "codename": "jammy" + }, + "macaddress": "11:11:11:11:11:11", + "machinename": "Fauxhai", + "memory": { + "total": "1048576kB" + }, + "network": { + "interfaces": { + "lo": { + "mtu": "65536", + "flags": [ + "LOOPBACK", + "UP", + "LOWER_UP" + ], + "encapsulation": "Loopback", + "addresses": { + "127.0.0.1": { + "family": "inet", + "prefixlen": "8", + "netmask": "255.0.0.0", + "scope": "Node", + "ip_scope": "LOOPBACK" + }, + "::1": { + "family": "inet6", + "prefixlen": "128", + "scope": "Node", + "tags": [ + + ], + "ip_scope": "LINK LOCAL LOOPBACK" + } + }, + "state": "unknown" + }, + "eth0": { + "type": "eth", + "number": "0", + "mtu": "1500", + "flags": [ + "BROADCAST", + "MULTICAST", + "UP", + "LOWER_UP" + ], + "encapsulation": "Ethernet", + "addresses": { + "11:11:11:11:11:11": { + "family": "lladdr" + }, + "10.0.0.2": { + "family": "inet", + "prefixlen": "24", + "netmask": "255.255.255.0", + "broadcast": "10.0.0.255", + "scope": "Global", + "ip_scope": "RFC1918 PRIVATE" + }, + "fe80::11:1111:1111:1111": { + "family": "inet6", + "prefixlen": "64", + "scope": "Link", + "tags": [ + + ], + "ip_scope": "LINK LOCAL UNICAST" + } + }, + "state": "up", + "arp": { + "10.0.0.1": "fe:ff:ff:ff:ff:ff" + }, + "routes": [ + { + "destination": "default", + "family": "inet", + "via": "10.0.0.1" + }, + { + "destination": "10.0.0.0/24", + "family": "inet", + "scope": "link", + "proto": "kernel", + "src": "10.0.0.2" + }, + { + "destination": "fe80::/64", + "family": "inet6", + "metric": "256", + "proto": "kernel" + } + ], + "ring_params": { + } + } + }, + "default_interface": "eth0", + "default_gateway": "10.0.0.1" + }, + "ohai_time": 1664245019.8239367, + "os": "linux", + "os_version": "5.15.0-30-generic", + "packages": { + "adduser": { + "version": "3.118ubuntu5", + "arch": "all" + }, + "amd64-microcode": { + "version": "3.20191218.1ubuntu2", + "arch": "amd64" + }, + "apparmor": { + "version": "3.0.4-2ubuntu2", + "arch": "amd64" + }, + "apport": { + "version": "2.20.11-0ubuntu82.1", + "arch": "all" + }, + "apport-symptoms": { + "version": "0.24", + "arch": "all" + }, + "apt": { + "version": "2.4.5", + "arch": "amd64" + }, + "apt-utils": { + "version": "2.4.5", + "arch": "amd64" + }, + "base-files": { + "version": "12ubuntu4.1", + "arch": "amd64" + }, + "base-passwd": { + "version": "3.5.52build1", + "arch": "amd64" + }, + "bash": { + "version": "5.1-6ubuntu1", + "arch": "amd64" + }, + "bc": { + "version": "1.07.1-3build1", + "arch": "amd64" + }, + "bcache-tools": { + "version": "1.0.8-4ubuntu3", + "arch": "amd64" + }, + "bind9-dnsutils": { + "version": "1:9.18.1-1ubuntu1.1", + "arch": "amd64" + }, + "bind9-host": { + "version": "1:9.18.1-1ubuntu1.1", + "arch": "amd64" + }, + "bind9-libs": { + "version": "1:9.18.1-1ubuntu1.1", + "arch": "amd64" + }, + "binutils": { + "version": "2.38-3ubuntu1", + "arch": "amd64" + }, + "binutils-common": { + "version": "2.38-3ubuntu1", + "arch": "amd64" + }, + "binutils-x86-64-linux-gnu": { + "version": "2.38-3ubuntu1", + "arch": "amd64" + }, + "bolt": { + "version": "0.9.2-1", + "arch": "amd64" + }, + "bsdextrautils": { + "version": "2.37.2-4ubuntu3", + "arch": "amd64" + }, + "bsdutils": { + "version": "1:2.37.2-4ubuntu3", + "arch": "amd64" + }, + "btrfs-progs": { + "version": "5.16.2-1", + "arch": "amd64" + }, + "busybox-initramfs": { + "version": "1:1.30.1-7ubuntu3", + "arch": "amd64" + }, + "busybox-static": { + "version": "1:1.30.1-7ubuntu3", + "arch": "amd64" + }, + "byobu": { + "version": "5.133-1", + "arch": "all" + }, + "bzip2": { + "version": "1.0.8-5build1", + "arch": "amd64" + }, + "ca-certificates": { + "version": "20211016", + "arch": "all" + }, + "chef": { + "version": "17.10.3-1", + "arch": "amd64" + }, + "cloud-guest-utils": { + "version": "0.32-22-g45fe84a5-0ubuntu1", + "arch": "all" + }, + "cloud-init": { + "version": "22.1-14-g2e17a0d6-0ubuntu1~22.04.5", + "arch": "all" + }, + "cloud-initramfs-copymods": { + "version": "0.47ubuntu1", + "arch": "all" + }, + "cloud-initramfs-dyn-netconf": { + "version": "0.47ubuntu1", + "arch": "all" + }, + "console-setup": { + "version": "1.205ubuntu3", + "arch": "all" + }, + "console-setup-linux": { + "version": "1.205ubuntu3", + "arch": "all" + }, + "coreutils": { + "version": "8.32-4.1ubuntu1", + "arch": "amd64" + }, + "cpio": { + "version": "2.13+dfsg-7", + "arch": "amd64" + }, + "cron": { + "version": "3.0pl1-137ubuntu3", + "arch": "amd64" + }, + "cryptsetup": { + "version": "2:2.4.3-1ubuntu1", + "arch": "amd64" + }, + "cryptsetup-bin": { + "version": "2:2.4.3-1ubuntu1", + "arch": "amd64" + }, + "cryptsetup-initramfs": { + "version": "2:2.4.3-1ubuntu1", + "arch": "all" + }, + "curl": { + "version": "7.81.0-1ubuntu1.2", + "arch": "amd64" + }, + "dash": { + "version": "0.5.11+git20210903+057cd650a4ed-3build1", + "arch": "amd64" + }, + "dbus": { + "version": "1.12.20-2ubuntu4", + "arch": "amd64" + }, + "dbus-user-session": { + "version": "1.12.20-2ubuntu4", + "arch": "amd64" + }, + "dctrl-tools": { + "version": "2.24-3build2", + "arch": "amd64" + }, + "debconf": { + "version": "1.5.79ubuntu1", + "arch": "all" + }, + "debconf-i18n": { + "version": "1.5.79ubuntu1", + "arch": "all" + }, + "debianutils": { + "version": "5.5-1ubuntu2", + "arch": "amd64" + }, + "diffutils": { + "version": "1:3.8-0ubuntu2", + "arch": "amd64" + }, + "dirmngr": { + "version": "2.2.27-3ubuntu2", + "arch": "amd64" + }, + "distro-info": { + "version": "1.1build1", + "arch": "amd64" + }, + "distro-info-data": { + "version": "0.52ubuntu0.1", + "arch": "all" + }, + "dkms": { + "version": "2.8.7-2ubuntu2", + "arch": "all" + }, + "dmeventd": { + "version": "2:1.02.175-2.1ubuntu4", + "arch": "amd64" + }, + "dmidecode": { + "version": "3.3-3", + "arch": "amd64" + }, + "dmsetup": { + "version": "2:1.02.175-2.1ubuntu4", + "arch": "amd64" + }, + "dosfstools": { + "version": "4.2-1build3", + "arch": "amd64" + }, + "dpkg": { + "version": "1.21.1ubuntu2", + "arch": "amd64" + }, + "e2fsprogs": { + "version": "1.46.5-2ubuntu1", + "arch": "amd64" + }, + "eatmydata": { + "version": "130-2build1", + "arch": "all" + }, + "ed": { + "version": "1.18-1", + "arch": "amd64" + }, + "eject": { + "version": "2.37.2-4ubuntu3", + "arch": "amd64" + }, + "ethtool": { + "version": "1:5.16-1", + "arch": "amd64" + }, + "fdisk": { + "version": "2.37.2-4ubuntu3", + "arch": "amd64" + }, + "file": { + "version": "1:5.41-3", + "arch": "amd64" + }, + "finalrd": { + "version": "9build1", + "arch": "all" + }, + "findutils": { + "version": "4.8.0-1ubuntu3", + "arch": "amd64" + }, + "firmware-sof-signed": { + "version": "2.0-1ubuntu3", + "arch": "all" + }, + "fontconfig-config": { + "version": "2.13.1-4.2ubuntu5", + "arch": "all" + }, + "fonts-dejavu-core": { + "version": "2.37-2build1", + "arch": "all" + }, + "ftp": { + "version": "20210827-4build1", + "arch": "all" + }, + "fuse3": { + "version": "3.10.5-1build1", + "arch": "amd64" + }, + "fwupd": { + "version": "1.7.5-3", + "arch": "amd64" + }, + "fwupd-signed": { + "version": "1.44+1.2-3", + "arch": "amd64" + }, + "gawk": { + "version": "1:5.1.0-1build3", + "arch": "amd64" + }, + "gcc-12-base": { + "version": "12-20220319-1ubuntu1", + "arch": "amd64" + }, + "gdisk": { + "version": "1.0.8-4build1", + "arch": "amd64" + }, + "gettext-base": { + "version": "0.21-4ubuntu4", + "arch": "amd64" + }, + "gir1.2-glib-2.0": { + "version": "1.72.0-1", + "arch": "amd64" + }, + "gir1.2-packagekitglib-1.0": { + "version": "1.2.5-2ubuntu2", + "arch": "amd64" + }, + "git": { + "version": "1:2.34.1-1ubuntu1.2", + "arch": "amd64" + }, + "git-man": { + "version": "1:2.34.1-1ubuntu1.2", + "arch": "all" + }, + "gnupg": { + "version": "2.2.27-3ubuntu2", + "arch": "all" + }, + "gnupg-l10n": { + "version": "2.2.27-3ubuntu2", + "arch": "all" + }, + "gnupg-utils": { + "version": "2.2.27-3ubuntu2", + "arch": "amd64" + }, + "gpg": { + "version": "2.2.27-3ubuntu2", + "arch": "amd64" + }, + "gpg-agent": { + "version": "2.2.27-3ubuntu2", + "arch": "amd64" + }, + "gpg-wks-client": { + "version": "2.2.27-3ubuntu2", + "arch": "amd64" + }, + "gpg-wks-server": { + "version": "2.2.27-3ubuntu2", + "arch": "amd64" + }, + "gpgconf": { + "version": "2.2.27-3ubuntu2", + "arch": "amd64" + }, + "gpgsm": { + "version": "2.2.27-3ubuntu2", + "arch": "amd64" + }, + "gpgv": { + "version": "2.2.27-3ubuntu2", + "arch": "amd64" + }, + "grep": { + "version": "3.7-1build1", + "arch": "amd64" + }, + "groff-base": { + "version": "1.22.4-8build1", + "arch": "amd64" + }, + "grub-common": { + "version": "2.06-2ubuntu7", + "arch": "amd64" + }, + "grub-gfxpayload-lists": { + "version": "0.7", + "arch": "amd64" + }, + "grub-pc": { + "version": "2.06-2ubuntu7", + "arch": "amd64" + }, + "grub-pc-bin": { + "version": "2.06-2ubuntu7", + "arch": "amd64" + }, + "grub2-common": { + "version": "2.06-2ubuntu7", + "arch": "amd64" + }, + "gzip": { + "version": "1.10-4ubuntu4", + "arch": "amd64" + }, + "hdparm": { + "version": "9.60+ds-1build3", + "arch": "amd64" + }, + "hostname": { + "version": "3.23ubuntu2", + "arch": "amd64" + }, + "htop": { + "version": "3.0.5-7build2", + "arch": "amd64" + }, + "info": { + "version": "6.8-4build1", + "arch": "amd64" + }, + "init": { + "version": "1.62", + "arch": "amd64" + }, + "init-system-helpers": { + "version": "1.62", + "arch": "all" + }, + "initramfs-tools": { + "version": "0.140ubuntu13", + "arch": "all" + }, + "initramfs-tools-bin": { + "version": "0.140ubuntu13", + "arch": "amd64" + }, + "initramfs-tools-core": { + "version": "0.140ubuntu13", + "arch": "all" + }, + "install-info": { + "version": "6.8-4build1", + "arch": "amd64" + }, + "intel-microcode": { + "version": "3.20210608.2ubuntu1", + "arch": "amd64" + }, + "iproute2": { + "version": "5.15.0-1ubuntu2", + "arch": "amd64" + }, + "iptables": { + "version": "1.8.7-1ubuntu5", + "arch": "amd64" + }, + "iputils-ping": { + "version": "3:20211215-1", + "arch": "amd64" + }, + "iputils-tracepath": { + "version": "3:20211215-1", + "arch": "amd64" + }, + "irqbalance": { + "version": "1.8.0-1build1", + "arch": "amd64" + }, + "isc-dhcp-client": { + "version": "4.4.1-2.3ubuntu2", + "arch": "amd64" + }, + "isc-dhcp-common": { + "version": "4.4.1-2.3ubuntu2", + "arch": "amd64" + }, + "iso-codes": { + "version": "4.9.0-1", + "arch": "all" + }, + "iucode-tool": { + "version": "2.3.1-1build1", + "arch": "amd64" + }, + "kbd": { + "version": "2.3.0-3ubuntu4", + "arch": "amd64" + }, + "keyboard-configuration": { + "version": "1.205ubuntu3", + "arch": "all" + }, + "klibc-utils": { + "version": "2.0.10-4", + "arch": "amd64" + }, + "kmod": { + "version": "29-1ubuntu1", + "arch": "amd64" + }, + "kpartx": { + "version": "0.8.8-1ubuntu1", + "arch": "amd64" + }, + "landscape-common": { + "version": "19.12-0ubuntu13", + "arch": "amd64" + }, + "less": { + "version": "590-1build1", + "arch": "amd64" + }, + "libacl1": { + "version": "2.3.1-1", + "arch": "amd64" + }, + "libaio1": { + "version": "0.3.112-13build1", + "arch": "amd64" + }, + "libapparmor1": { + "version": "3.0.4-2ubuntu2", + "arch": "amd64" + }, + "libappstream4": { + "version": "0.15.2-2", + "arch": "amd64" + }, + "libapt-pkg6.0": { + "version": "2.4.5", + "arch": "amd64" + }, + "libarchive13": { + "version": "3.6.0-1ubuntu1", + "arch": "amd64" + }, + "libargon2-1": { + "version": "0~20171227-0.3", + "arch": "amd64" + }, + "libassuan0": { + "version": "2.5.5-1build1", + "arch": "amd64" + }, + "libatasmart4": { + "version": "0.19-5build2", + "arch": "amd64" + }, + "libatm1": { + "version": "1:2.5.1-4build2", + "arch": "amd64" + }, + "libattr1": { + "version": "1:2.5.1-1build1", + "arch": "amd64" + }, + "libaudit-common": { + "version": "1:3.0.7-1build1", + "arch": "all" + }, + "libaudit1": { + "version": "1:3.0.7-1build1", + "arch": "amd64" + }, + "libbinutils": { + "version": "2.38-3ubuntu1", + "arch": "amd64" + }, + "libblkid1": { + "version": "2.37.2-4ubuntu3", + "arch": "amd64" + }, + "libblockdev-crypto2": { + "version": "2.26-1", + "arch": "amd64" + }, + "libblockdev-fs2": { + "version": "2.26-1", + "arch": "amd64" + }, + "libblockdev-loop2": { + "version": "2.26-1", + "arch": "amd64" + }, + "libblockdev-part-err2": { + "version": "2.26-1", + "arch": "amd64" + }, + "libblockdev-part2": { + "version": "2.26-1", + "arch": "amd64" + }, + "libblockdev-swap2": { + "version": "2.26-1", + "arch": "amd64" + }, + "libblockdev-utils2": { + "version": "2.26-1", + "arch": "amd64" + }, + "libblockdev2": { + "version": "2.26-1", + "arch": "amd64" + }, + "libbpf0": { + "version": "1:0.5.0-1", + "arch": "amd64" + }, + "libbrotli1": { + "version": "1.0.9-2build6", + "arch": "amd64" + }, + "libbsd0": { + "version": "0.11.5-1", + "arch": "amd64" + }, + "libbz2-1.0": { + "version": "1.0.8-5build1", + "arch": "amd64" + }, + "libc-bin": { + "version": "2.35-0ubuntu3", + "arch": "amd64" + }, + "libc6": { + "version": "2.35-0ubuntu3", + "arch": "amd64" + }, + "libcap-ng0": { + "version": "0.7.9-2.2build3", + "arch": "amd64" + }, + "libcap2": { + "version": "1:2.44-1build3", + "arch": "amd64" + }, + "libcap2-bin": { + "version": "1:2.44-1build3", + "arch": "amd64" + }, + "libcbor0.8": { + "version": "0.8.0-2ubuntu1", + "arch": "amd64" + }, + "libcom-err2": { + "version": "1.46.5-2ubuntu1", + "arch": "amd64" + }, + "libcrypt1": { + "version": "1:4.4.27-1", + "arch": "amd64" + }, + "libcryptsetup12": { + "version": "2:2.4.3-1ubuntu1", + "arch": "amd64" + }, + "libctf-nobfd0": { + "version": "2.38-3ubuntu1", + "arch": "amd64" + }, + "libctf0": { + "version": "2.38-3ubuntu1", + "arch": "amd64" + }, + "libcurl3-gnutls": { + "version": "7.81.0-1ubuntu1.2", + "arch": "amd64" + }, + "libcurl4": { + "version": "7.81.0-1ubuntu1.2", + "arch": "amd64" + }, + "libdb5.3": { + "version": "5.3.28+dfsg1-0.8ubuntu3", + "arch": "amd64" + }, + "libdbus-1-3": { + "version": "1.12.20-2ubuntu4", + "arch": "amd64" + }, + "libdbus-glib-1-2": { + "version": "0.112-2build1", + "arch": "amd64" + }, + "libdebconfclient0": { + "version": "0.261ubuntu1", + "arch": "amd64" + }, + "libdevmapper-event1.02.1": { + "version": "2:1.02.175-2.1ubuntu4", + "arch": "amd64" + }, + "libdevmapper1.02.1": { + "version": "2:1.02.175-2.1ubuntu4", + "arch": "amd64" + }, + "libdns-export1110": { + "version": "1:9.11.19+dfsg-2.1ubuntu3", + "arch": "amd64" + }, + "libdrm-common": { + "version": "2.4.110-1ubuntu1", + "arch": "all" + }, + "libdrm2": { + "version": "2.4.110-1ubuntu1", + "arch": "amd64" + }, + "libdw1": { + "version": "0.186-1build1", + "arch": "amd64" + }, + "libeatmydata1": { + "version": "130-2build1", + "arch": "amd64" + }, + "libedit2": { + "version": "3.1-20210910-1build1", + "arch": "amd64" + }, + "libefiboot1": { + "version": "37-6ubuntu2", + "arch": "amd64" + }, + "libefivar1": { + "version": "37-6ubuntu2", + "arch": "amd64" + }, + "libelf1": { + "version": "0.186-1build1", + "arch": "amd64" + }, + "liberror-perl": { + "version": "0.17029-1", + "arch": "all" + }, + "libestr0": { + "version": "0.1.10-2.1build3", + "arch": "amd64" + }, + "libevdev2": { + "version": "1.12.1+dfsg-1", + "arch": "amd64" + }, + "libevent-core-2.1-7": { + "version": "2.1.12-stable-1build3", + "arch": "amd64" + }, + "libexpat1": { + "version": "2.4.7-1", + "arch": "amd64" + }, + "libext2fs2": { + "version": "1.46.5-2ubuntu1", + "arch": "amd64" + }, + "libfakeroot": { + "version": "1.28-1ubuntu1", + "arch": "amd64" + }, + "libfastjson4": { + "version": "0.99.9-1build2", + "arch": "amd64" + }, + "libfdisk1": { + "version": "2.37.2-4ubuntu3", + "arch": "amd64" + }, + "libffi8": { + "version": "3.4.2-4", + "arch": "amd64" + }, + "libfido2-1": { + "version": "1.10.0-1", + "arch": "amd64" + }, + "libflashrom1": { + "version": "1.2-5build1", + "arch": "amd64" + }, + "libfreetype6": { + "version": "2.11.1+dfsg-1build1", + "arch": "amd64" + }, + "libfribidi0": { + "version": "1.0.8-2ubuntu3.1", + "arch": "amd64" + }, + "libftdi1-2": { + "version": "1.5-5build3", + "arch": "amd64" + }, + "libfuse3-3": { + "version": "3.10.5-1build1", + "arch": "amd64" + }, + "libfwupd2": { + "version": "1.7.5-3", + "arch": "amd64" + }, + "libfwupdplugin5": { + "version": "1.7.5-3", + "arch": "amd64" + }, + "libgcab-1.0-0": { + "version": "1.4-3build2", + "arch": "amd64" + }, + "libgcc-s1": { + "version": "12-20220319-1ubuntu1", + "arch": "amd64" + }, + "libgcrypt20": { + "version": "1.9.4-3ubuntu3", + "arch": "amd64" + }, + "libgdbm-compat4": { + "version": "1.23-1", + "arch": "amd64" + }, + "libgdbm6": { + "version": "1.23-1", + "arch": "amd64" + }, + "libgirepository-1.0-1": { + "version": "1.72.0-1", + "arch": "amd64" + }, + "libglib2.0-0": { + "version": "2.72.1-1", + "arch": "amd64" + }, + "libglib2.0-bin": { + "version": "2.72.1-1", + "arch": "amd64" + }, + "libglib2.0-data": { + "version": "2.72.1-1", + "arch": "all" + }, + "libgmp10": { + "version": "2:6.2.1+dfsg-3ubuntu1", + "arch": "amd64" + }, + "libgnutls30": { + "version": "3.7.3-4ubuntu1", + "arch": "amd64" + }, + "libgpg-error0": { + "version": "1.43-3", + "arch": "amd64" + }, + "libgpgme11": { + "version": "1.16.0-1.2ubuntu4", + "arch": "amd64" + }, + "libgpm2": { + "version": "1.20.7-10build1", + "arch": "amd64" + }, + "libgssapi-krb5-2": { + "version": "1.19.2-2", + "arch": "amd64" + }, + "libgstreamer1.0-0": { + "version": "1.20.1-1", + "arch": "amd64" + }, + "libgudev-1.0-0": { + "version": "1:237-2build1", + "arch": "amd64" + }, + "libgusb2": { + "version": "0.3.10-1", + "arch": "amd64" + }, + "libhogweed6": { + "version": "3.7.3-1build2", + "arch": "amd64" + }, + "libicu70": { + "version": "70.1-2", + "arch": "amd64" + }, + "libidn2-0": { + "version": "2.3.2-2build1", + "arch": "amd64" + }, + "libimobiledevice6": { + "version": "1.3.0-6build3", + "arch": "amd64" + }, + "libinih1": { + "version": "53-1ubuntu3", + "arch": "amd64" + }, + "libintl-perl": { + "version": "1.26-3build2", + "arch": "all" + }, + "libintl-xs-perl": { + "version": "1.26-3build2", + "arch": "amd64" + }, + "libip4tc2": { + "version": "1.8.7-1ubuntu5", + "arch": "amd64" + }, + "libip6tc2": { + "version": "1.8.7-1ubuntu5", + "arch": "amd64" + }, + "libisc-export1105": { + "version": "1:9.11.19+dfsg-2.1ubuntu3", + "arch": "amd64" + }, + "libisns0": { + "version": "0.101-0ubuntu2", + "arch": "amd64" + }, + "libjansson4": { + "version": "2.13.1-1.1build3", + "arch": "amd64" + }, + "libjcat1": { + "version": "0.1.9-1", + "arch": "amd64" + }, + "libjson-c5": { + "version": "0.15-2build4", + "arch": "amd64" + }, + "libjson-glib-1.0-0": { + "version": "1.6.6-1build1", + "arch": "amd64" + }, + "libjson-glib-1.0-common": { + "version": "1.6.6-1build1", + "arch": "all" + }, + "libk5crypto3": { + "version": "1.19.2-2", + "arch": "amd64" + }, + "libkeyutils1": { + "version": "1.6.1-2ubuntu3", + "arch": "amd64" + }, + "libklibc": { + "version": "2.0.10-4", + "arch": "amd64" + }, + "libkmod2": { + "version": "29-1ubuntu1", + "arch": "amd64" + }, + "libkrb5-3": { + "version": "1.19.2-2", + "arch": "amd64" + }, + "libkrb5support0": { + "version": "1.19.2-2", + "arch": "amd64" + }, + "libksba8": { + "version": "1.6.0-2build1", + "arch": "amd64" + }, + "libldap-2.5-0": { + "version": "2.5.11+dfsg-1~exp1ubuntu3.1", + "arch": "amd64" + }, + "libldap-common": { + "version": "2.5.11+dfsg-1~exp1ubuntu3.1", + "arch": "all" + }, + "liblmdb0": { + "version": "0.9.24-1build2", + "arch": "amd64" + }, + "liblocale-gettext-perl": { + "version": "1.07-4build3", + "arch": "amd64" + }, + "liblvm2cmd2.03": { + "version": "2.03.11-2.1ubuntu4", + "arch": "amd64" + }, + "liblz4-1": { + "version": "1.9.3-2build2", + "arch": "amd64" + }, + "liblzma5": { + "version": "5.2.5-2ubuntu1", + "arch": "amd64" + }, + "liblzo2-2": { + "version": "2.10-2build3", + "arch": "amd64" + }, + "libmagic-mgc": { + "version": "1:5.41-3", + "arch": "amd64" + }, + "libmagic1": { + "version": "1:5.41-3", + "arch": "amd64" + }, + "libmaxminddb0": { + "version": "1.5.2-1build2", + "arch": "amd64" + }, + "libmbim-glib4": { + "version": "1.26.2-1build1", + "arch": "amd64" + }, + "libmbim-proxy": { + "version": "1.26.2-1build1", + "arch": "amd64" + }, + "libmd0": { + "version": "1.0.4-1build1", + "arch": "amd64" + }, + "libmm-glib0": { + "version": "1.18.6-1", + "arch": "amd64" + }, + "libmnl0": { + "version": "1.0.4-3build2", + "arch": "amd64" + }, + "libmodule-find-perl": { + "version": "0.15-1", + "arch": "all" + }, + "libmodule-scandeps-perl": { + "version": "1.31-1", + "arch": "all" + }, + "libmount1": { + "version": "2.37.2-4ubuntu3", + "arch": "amd64" + }, + "libmpdec3": { + "version": "2.5.1-2build2", + "arch": "amd64" + }, + "libmpfr6": { + "version": "4.1.0-3build3", + "arch": "amd64" + }, + "libmspack0": { + "version": "0.10.1-2build2", + "arch": "amd64" + }, + "libncurses6": { + "version": "6.3-2", + "arch": "amd64" + }, + "libncursesw6": { + "version": "6.3-2", + "arch": "amd64" + }, + "libnetfilter-conntrack3": { + "version": "1.0.9-1", + "arch": "amd64" + }, + "libnetplan0": { + "version": "0.104-0ubuntu2", + "arch": "amd64" + }, + "libnettle8": { + "version": "3.7.3-1build2", + "arch": "amd64" + }, + "libnewt0.52": { + "version": "0.52.21-5ubuntu2", + "arch": "amd64" + }, + "libnfnetlink0": { + "version": "1.0.1-3build3", + "arch": "amd64" + }, + "libnftables1": { + "version": "1.0.2-1ubuntu2", + "arch": "amd64" + }, + "libnftnl11": { + "version": "1.2.1-1build1", + "arch": "amd64" + }, + "libnghttp2-14": { + "version": "1.43.0-1build3", + "arch": "amd64" + }, + "libnl-3-200": { + "version": "3.5.0-0.1", + "arch": "amd64" + }, + "libnl-genl-3-200": { + "version": "3.5.0-0.1", + "arch": "amd64" + }, + "libnpth0": { + "version": "1.6-3build2", + "arch": "amd64" + }, + "libnsl2": { + "version": "1.3.0-2build2", + "arch": "amd64" + }, + "libnspr4": { + "version": "2:4.32-3build1", + "arch": "amd64" + }, + "libnss-systemd": { + "version": "249.11-0ubuntu3.1", + "arch": "amd64" + }, + "libnss3": { + "version": "2:3.68.2-0ubuntu1", + "arch": "amd64" + }, + "libntfs-3g89": { + "version": "1:2021.8.22-3ubuntu1", + "arch": "amd64" + }, + "libnuma1": { + "version": "2.0.14-3ubuntu2", + "arch": "amd64" + }, + "libopeniscsiusr": { + "version": "2.1.5-1ubuntu1", + "arch": "amd64" + }, + "libp11-kit0": { + "version": "0.24.0-6build1", + "arch": "amd64" + }, + "libpackagekit-glib2-18": { + "version": "1.2.5-2ubuntu2", + "arch": "amd64" + }, + "libpam-cap": { + "version": "1:2.44-1build3", + "arch": "amd64" + }, + "libpam-modules": { + "version": "1.4.0-11ubuntu2", + "arch": "amd64" + }, + "libpam-modules-bin": { + "version": "1.4.0-11ubuntu2", + "arch": "amd64" + }, + "libpam-runtime": { + "version": "1.4.0-11ubuntu2", + "arch": "all" + }, + "libpam-systemd": { + "version": "249.11-0ubuntu3.1", + "arch": "amd64" + }, + "libpam0g": { + "version": "1.4.0-11ubuntu2", + "arch": "amd64" + }, + "libparted-fs-resize0": { + "version": "3.4-2build1", + "arch": "amd64" + }, + "libparted2": { + "version": "3.4-2build1", + "arch": "amd64" + }, + "libpcap0.8": { + "version": "1.10.1-4build1", + "arch": "amd64" + }, + "libpci3": { + "version": "1:3.7.0-6", + "arch": "amd64" + }, + "libpcre2-8-0": { + "version": "10.39-3build1", + "arch": "amd64" + }, + "libpcre3": { + "version": "2:8.39-13ubuntu0.22.04.1", + "arch": "amd64" + }, + "libperl5.34": { + "version": "5.34.0-3ubuntu1", + "arch": "amd64" + }, + "libpipeline1": { + "version": "1.5.5-1", + "arch": "amd64" + }, + "libplist3": { + "version": "2.2.0-6build2", + "arch": "amd64" + }, + "libplymouth5": { + "version": "0.9.5+git20211018-1ubuntu3", + "arch": "amd64" + }, + "libpng16-16": { + "version": "1.6.37-3build5", + "arch": "amd64" + }, + "libpolkit-agent-1-0": { + "version": "0.105-33", + "arch": "amd64" + }, + "libpolkit-gobject-1-0": { + "version": "0.105-33", + "arch": "amd64" + }, + "libpopt0": { + "version": "1.18-3build1", + "arch": "amd64" + }, + "libproc-processtable-perl": { + "version": "0.634-1build1", + "arch": "amd64" + }, + "libprocps8": { + "version": "2:3.3.17-6ubuntu2", + "arch": "amd64" + }, + "libpsl5": { + "version": "0.21.0-1.2build2", + "arch": "amd64" + }, + "libpython3-stdlib": { + "version": "3.10.4-0ubuntu2", + "arch": "amd64" + }, + "libpython3.10": { + "version": "3.10.4-3", + "arch": "amd64" + }, + "libpython3.10-minimal": { + "version": "3.10.4-3", + "arch": "amd64" + }, + "libpython3.10-stdlib": { + "version": "3.10.4-3", + "arch": "amd64" + }, + "libqmi-glib5": { + "version": "1.30.4-1", + "arch": "amd64" + }, + "libqmi-proxy": { + "version": "1.30.4-1", + "arch": "amd64" + }, + "libreadline8": { + "version": "8.1.2-1", + "arch": "amd64" + }, + "librtmp1": { + "version": "2.4+20151223.gitfa8646d.1-2build4", + "arch": "amd64" + }, + "libsasl2-2": { + "version": "2.1.27+dfsg2-3ubuntu1", + "arch": "amd64" + }, + "libsasl2-modules": { + "version": "2.1.27+dfsg2-3ubuntu1", + "arch": "amd64" + }, + "libsasl2-modules-db": { + "version": "2.1.27+dfsg2-3ubuntu1", + "arch": "amd64" + }, + "libseccomp2": { + "version": "2.5.3-2ubuntu2", + "arch": "amd64" + }, + "libselinux1": { + "version": "3.3-1build2", + "arch": "amd64" + }, + "libsemanage-common": { + "version": "3.3-1build2", + "arch": "all" + }, + "libsemanage2": { + "version": "3.3-1build2", + "arch": "amd64" + }, + "libsepol2": { + "version": "3.3-1build1", + "arch": "amd64" + }, + "libsgutils2-2": { + "version": "1.46-1build1", + "arch": "amd64" + }, + "libsigsegv2": { + "version": "2.13-1ubuntu3", + "arch": "amd64" + }, + "libslang2": { + "version": "2.3.2-5build4", + "arch": "amd64" + }, + "libsmartcols1": { + "version": "2.37.2-4ubuntu3", + "arch": "amd64" + }, + "libsmbios-c2": { + "version": "2.4.3-1build1", + "arch": "amd64" + }, + "libsodium23": { + "version": "1.0.18-1build2", + "arch": "amd64" + }, + "libsort-naturally-perl": { + "version": "1.03-2", + "arch": "all" + }, + "libsqlite3-0": { + "version": "3.37.2-2", + "arch": "amd64" + }, + "libss2": { + "version": "1.46.5-2ubuntu1", + "arch": "amd64" + }, + "libssh-4": { + "version": "0.9.6-2build1", + "arch": "amd64" + }, + "libssl3": { + "version": "3.0.2-0ubuntu1.2", + "arch": "amd64" + }, + "libstdc++6": { + "version": "12-20220319-1ubuntu1", + "arch": "amd64" + }, + "libstemmer0d": { + "version": "2.2.0-1build1", + "arch": "amd64" + }, + "libsystemd0": { + "version": "249.11-0ubuntu3.1", + "arch": "amd64" + }, + "libtasn1-6": { + "version": "4.18.0-4build1", + "arch": "amd64" + }, + "libtcl8.6": { + "version": "8.6.12+dfsg-1build1", + "arch": "amd64" + }, + "libterm-readkey-perl": { + "version": "2.38-1build4", + "arch": "amd64" + }, + "libtext-charwidth-perl": { + "version": "0.04-10build3", + "arch": "amd64" + }, + "libtext-iconv-perl": { + "version": "1.7-7build3", + "arch": "amd64" + }, + "libtext-wrapi18n-perl": { + "version": "0.06-9", + "arch": "all" + }, + "libtinfo6": { + "version": "6.3-2", + "arch": "amd64" + }, + "libtirpc-common": { + "version": "1.3.2-2build1", + "arch": "all" + }, + "libtirpc3": { + "version": "1.3.2-2build1", + "arch": "amd64" + }, + "libtss2-esys-3.0.2-0": { + "version": "3.2.0-1ubuntu1", + "arch": "amd64" + }, + "libtss2-mu0": { + "version": "3.2.0-1ubuntu1", + "arch": "amd64" + }, + "libtss2-sys1": { + "version": "3.2.0-1ubuntu1", + "arch": "amd64" + }, + "libtss2-tcti-cmd0": { + "version": "3.2.0-1ubuntu1", + "arch": "amd64" + }, + "libtss2-tcti-device0": { + "version": "3.2.0-1ubuntu1", + "arch": "amd64" + }, + "libtss2-tcti-mssim0": { + "version": "3.2.0-1ubuntu1", + "arch": "amd64" + }, + "libtss2-tcti-swtpm0": { + "version": "3.2.0-1ubuntu1", + "arch": "amd64" + }, + "libuchardet0": { + "version": "0.0.7-1build2", + "arch": "amd64" + }, + "libudev1": { + "version": "249.11-0ubuntu3.1", + "arch": "amd64" + }, + "libudisks2-0": { + "version": "2.9.4-1ubuntu2", + "arch": "amd64" + }, + "libunistring2": { + "version": "1.0-1", + "arch": "amd64" + }, + "libunwind8": { + "version": "1.3.2-2build2", + "arch": "amd64" + }, + "libupower-glib3": { + "version": "0.99.17-1", + "arch": "amd64" + }, + "liburcu8": { + "version": "0.13.1-1", + "arch": "amd64" + }, + "libusb-1.0-0": { + "version": "2:1.0.25-1ubuntu1", + "arch": "amd64" + }, + "libusbmuxd6": { + "version": "2.0.2-3build2", + "arch": "amd64" + }, + "libutempter0": { + "version": "1.2.1-2build2", + "arch": "amd64" + }, + "libuuid1": { + "version": "2.37.2-4ubuntu3", + "arch": "amd64" + }, + "libuv1": { + "version": "1.43.0-1", + "arch": "amd64" + }, + "libvolume-key1": { + "version": "0.3.12-3.1build3", + "arch": "amd64" + }, + "libwrap0": { + "version": "7.6.q-31build2", + "arch": "amd64" + }, + "libxml2": { + "version": "2.9.13+dfsg-1ubuntu0.1", + "arch": "amd64" + }, + "libxmlb2": { + "version": "0.3.6-2build1", + "arch": "amd64" + }, + "libxmlsec1": { + "version": "1.2.33-1build2", + "arch": "amd64" + }, + "libxmlsec1-openssl": { + "version": "1.2.33-1build2", + "arch": "amd64" + }, + "libxslt1.1": { + "version": "1.1.34-4build2", + "arch": "amd64" + }, + "libxtables12": { + "version": "1.8.7-1ubuntu5", + "arch": "amd64" + }, + "libxxhash0": { + "version": "0.8.1-1", + "arch": "amd64" + }, + "libyaml-0-2": { + "version": "0.2.2-1build2", + "arch": "amd64" + }, + "libzstd1": { + "version": "1.4.8+dfsg-3build1", + "arch": "amd64" + }, + "linux-base": { + "version": "4.5ubuntu9", + "arch": "all" + }, + "linux-firmware": { + "version": "20220329.git681281e4-0ubuntu3", + "arch": "all" + }, + "linux-image-5.15.0-30-generic": { + "version": "5.15.0-30.31", + "arch": "amd64" + }, + "linux-image-generic": { + "version": "5.15.0.30.33", + "arch": "amd64" + }, + "linux-modules-5.15.0-30-generic": { + "version": "5.15.0-30.31", + "arch": "amd64" + }, + "linux-modules-extra-5.15.0-30-generic": { + "version": "5.15.0-30.31", + "arch": "amd64" + }, + "locales": { + "version": "2.35-0ubuntu3", + "arch": "all" + }, + "login": { + "version": "1:4.8.1-2ubuntu2", + "arch": "amd64" + }, + "logrotate": { + "version": "3.19.0-1ubuntu1", + "arch": "amd64" + }, + "logsave": { + "version": "1.46.5-2ubuntu1", + "arch": "amd64" + }, + "lsb-base": { + "version": "11.1.0ubuntu4", + "arch": "all" + }, + "lsb-release": { + "version": "11.1.0ubuntu4", + "arch": "all" + }, + "lshw": { + "version": "02.19.git.2021.06.19.996aaad9c7-2build1", + "arch": "amd64" + }, + "lsof": { + "version": "4.93.2+dfsg-1.1build2", + "arch": "amd64" + }, + "lvm2": { + "version": "2.03.11-2.1ubuntu4", + "arch": "amd64" + }, + "lxd-agent-loader": { + "version": "0.5", + "arch": "all" + }, + "man-db": { + "version": "2.10.2-1", + "arch": "amd64" + }, + "manpages": { + "version": "5.10-1ubuntu1", + "arch": "all" + }, + "mawk": { + "version": "1.3.4.20200120-3", + "arch": "amd64" + }, + "mdadm": { + "version": "4.2-0ubuntu1", + "arch": "amd64" + }, + "media-types": { + "version": "7.0.0", + "arch": "all" + }, + "modemmanager": { + "version": "1.18.6-1", + "arch": "amd64" + }, + "mount": { + "version": "2.37.2-4ubuntu3", + "arch": "amd64" + }, + "mtr-tiny": { + "version": "0.95-1", + "arch": "amd64" + }, + "multipath-tools": { + "version": "0.8.8-1ubuntu1", + "arch": "amd64" + }, + "nano": { + "version": "6.2-1", + "arch": "amd64" + }, + "ncurses-base": { + "version": "6.3-2", + "arch": "all" + }, + "ncurses-bin": { + "version": "6.3-2", + "arch": "amd64" + }, + "ncurses-term": { + "version": "6.3-2", + "arch": "all" + }, + "needrestart": { + "version": "3.5-5ubuntu2.1", + "arch": "all" + }, + "netbase": { + "version": "6.3", + "arch": "all" + }, + "netcat-openbsd": { + "version": "1.218-4ubuntu1", + "arch": "amd64" + }, + "netplan.io": { + "version": "0.104-0ubuntu2", + "arch": "amd64" + }, + "networkd-dispatcher": { + "version": "2.1-2ubuntu0.22.04.2", + "arch": "all" + }, + "nftables": { + "version": "1.0.2-1ubuntu2", + "arch": "amd64" + }, + "ntfs-3g": { + "version": "1:2021.8.22-3ubuntu1", + "arch": "amd64" + }, + "open-iscsi": { + "version": "2.1.5-1ubuntu1", + "arch": "amd64" + }, + "open-vm-tools": { + "version": "2:11.3.5-1ubuntu4", + "arch": "amd64" + }, + "openssh-client": { + "version": "1:8.9p1-3", + "arch": "amd64" + }, + "openssh-server": { + "version": "1:8.9p1-3", + "arch": "amd64" + }, + "openssh-sftp-server": { + "version": "1:8.9p1-3", + "arch": "amd64" + }, + "openssl": { + "version": "3.0.2-0ubuntu1.2", + "arch": "amd64" + }, + "os-prober": { + "version": "1.79ubuntu2", + "arch": "amd64" + }, + "overlayroot": { + "version": "0.47ubuntu1", + "arch": "all" + }, + "packagekit": { + "version": "1.2.5-2ubuntu2", + "arch": "amd64" + }, + "packagekit-tools": { + "version": "1.2.5-2ubuntu2", + "arch": "amd64" + }, + "parted": { + "version": "3.4-2build1", + "arch": "amd64" + }, + "passwd": { + "version": "1:4.8.1-2ubuntu2", + "arch": "amd64" + }, + "pastebinit": { + "version": "1.5.1-1ubuntu1", + "arch": "all" + }, + "patch": { + "version": "2.7.6-7build2", + "arch": "amd64" + }, + "pci.ids": { + "version": "0.0~2022.01.22-1", + "arch": "all" + }, + "pciutils": { + "version": "1:3.7.0-6", + "arch": "amd64" + }, + "perl": { + "version": "5.34.0-3ubuntu1", + "arch": "amd64" + }, + "perl-base": { + "version": "5.34.0-3ubuntu1", + "arch": "amd64" + }, + "perl-modules-5.34": { + "version": "5.34.0-3ubuntu1", + "arch": "all" + }, + "pinentry-curses": { + "version": "1.1.1-1build2", + "arch": "amd64" + }, + "pkexec": { + "version": "0.105-33", + "arch": "amd64" + }, + "plymouth": { + "version": "0.9.5+git20211018-1ubuntu3", + "arch": "amd64" + }, + "plymouth-theme-ubuntu-text": { + "version": "0.9.5+git20211018-1ubuntu3", + "arch": "amd64" + }, + "policykit-1": { + "version": "0.105-33", + "arch": "amd64" + }, + "polkitd": { + "version": "0.105-33", + "arch": "amd64" + }, + "pollinate": { + "version": "4.33-3ubuntu2", + "arch": "all" + }, + "powermgmt-base": { + "version": "1.36", + "arch": "all" + }, + "procps": { + "version": "2:3.3.17-6ubuntu2", + "arch": "amd64" + }, + "psmisc": { + "version": "23.4-2build3", + "arch": "amd64" + }, + "publicsuffix": { + "version": "20211207.1025-1", + "arch": "all" + }, + "python-apt-common": { + "version": "2.3.0ubuntu2", + "arch": "all" + }, + "python-babel-localedata": { + "version": "2.8.0+dfsg.1-7", + "arch": "all" + }, + "python3": { + "version": "3.10.4-0ubuntu2", + "arch": "amd64" + }, + "python3-apport": { + "version": "2.20.11-0ubuntu82.1", + "arch": "all" + }, + "python3-apt": { + "version": "2.3.0ubuntu2", + "arch": "amd64" + }, + "python3-attr": { + "version": "21.2.0-1", + "arch": "all" + }, + "python3-automat": { + "version": "20.2.0-1", + "arch": "all" + }, + "python3-babel": { + "version": "2.8.0+dfsg.1-7", + "arch": "all" + }, + "python3-bcrypt": { + "version": "3.2.0-1build1", + "arch": "amd64" + }, + "python3-blinker": { + "version": "1.4+dfsg1-0.4", + "arch": "all" + }, + "python3-certifi": { + "version": "2020.6.20-1", + "arch": "all" + }, + "python3-cffi-backend": { + "version": "1.15.0-1build2", + "arch": "amd64" + }, + "python3-chardet": { + "version": "4.0.0-1", + "arch": "all" + }, + "python3-click": { + "version": "8.0.3-1", + "arch": "all" + }, + "python3-colorama": { + "version": "0.4.4-1", + "arch": "all" + }, + "python3-configobj": { + "version": "5.0.6-5", + "arch": "all" + }, + "python3-constantly": { + "version": "15.1.0-2", + "arch": "all" + }, + "python3-cryptography": { + "version": "3.4.8-1ubuntu2", + "arch": "amd64" + }, + "python3-dbus": { + "version": "1.2.18-3build1", + "arch": "amd64" + }, + "python3-distro": { + "version": "1.7.0-1", + "arch": "all" + }, + "python3-distutils": { + "version": "3.10.4-0ubuntu1", + "arch": "all" + }, + "python3-gdbm": { + "version": "3.10.4-0ubuntu1", + "arch": "amd64" + }, + "python3-gi": { + "version": "3.42.0-3build1", + "arch": "amd64" + }, + "python3-hamcrest": { + "version": "2.0.2-2", + "arch": "all" + }, + "python3-httplib2": { + "version": "0.20.2-2", + "arch": "all" + }, + "python3-hyperlink": { + "version": "21.0.0-3", + "arch": "all" + }, + "python3-idna": { + "version": "3.3-1", + "arch": "all" + }, + "python3-importlib-metadata": { + "version": "4.6.4-1", + "arch": "all" + }, + "python3-incremental": { + "version": "21.3.0-1", + "arch": "all" + }, + "python3-jeepney": { + "version": "0.7.1-3", + "arch": "all" + }, + "python3-jinja2": { + "version": "3.0.3-1", + "arch": "all" + }, + "python3-json-pointer": { + "version": "2.0-0ubuntu1", + "arch": "all" + }, + "python3-jsonpatch": { + "version": "1.32-2", + "arch": "all" + }, + "python3-jsonschema": { + "version": "3.2.0-0ubuntu2", + "arch": "all" + }, + "python3-jwt": { + "version": "2.3.0-1", + "arch": "all" + }, + "python3-keyring": { + "version": "23.5.0-1", + "arch": "all" + }, + "python3-launchpadlib": { + "version": "1.10.16-1", + "arch": "all" + }, + "python3-lazr.restfulclient": { + "version": "0.14.4-1", + "arch": "all" + }, + "python3-lazr.uri": { + "version": "1.0.6-2", + "arch": "all" + }, + "python3-lib2to3": { + "version": "3.10.4-0ubuntu1", + "arch": "all" + }, + "python3-markupsafe": { + "version": "2.0.1-2build1", + "arch": "amd64" + }, + "python3-minimal": { + "version": "3.10.4-0ubuntu2", + "arch": "amd64" + }, + "python3-more-itertools": { + "version": "8.10.0-2", + "arch": "all" + }, + "python3-netifaces": { + "version": "0.11.0-1build2", + "arch": "amd64" + }, + "python3-newt": { + "version": "0.52.21-5ubuntu2", + "arch": "amd64" + }, + "python3-oauthlib": { + "version": "3.2.0-1", + "arch": "all" + }, + "python3-openssl": { + "version": "21.0.0-1", + "arch": "all" + }, + "python3-pexpect": { + "version": "4.8.0-2ubuntu1", + "arch": "all" + }, + "python3-pkg-resources": { + "version": "59.6.0-1.2", + "arch": "all" + }, + "python3-problem-report": { + "version": "2.20.11-0ubuntu82.1", + "arch": "all" + }, + "python3-ptyprocess": { + "version": "0.7.0-3", + "arch": "all" + }, + "python3-pyasn1": { + "version": "0.4.8-1", + "arch": "all" + }, + "python3-pyasn1-modules": { + "version": "0.2.1-1", + "arch": "all" + }, + "python3-pyparsing": { + "version": "2.4.7-1", + "arch": "all" + }, + "python3-pyrsistent": { + "version": "0.18.1-1build1", + "arch": "amd64" + }, + "python3-requests": { + "version": "2.25.1+dfsg-2", + "arch": "all" + }, + "python3-secretstorage": { + "version": "3.3.1-1", + "arch": "all" + }, + "python3-serial": { + "version": "3.5-1", + "arch": "all" + }, + "python3-service-identity": { + "version": "18.1.0-6", + "arch": "all" + }, + "python3-setuptools": { + "version": "59.6.0-1.2", + "arch": "all" + }, + "python3-six": { + "version": "1.16.0-3ubuntu1", + "arch": "all" + }, + "python3-software-properties": { + "version": "0.99.22.1", + "arch": "all" + }, + "python3-systemd": { + "version": "234-3ubuntu2", + "arch": "amd64" + }, + "python3-twisted": { + "version": "22.1.0-2ubuntu2.1", + "arch": "all" + }, + "python3-tz": { + "version": "2022.1-1", + "arch": "all" + }, + "python3-urllib3": { + "version": "1.26.5-1~exp1", + "arch": "all" + }, + "python3-wadllib": { + "version": "1.3.6-1", + "arch": "all" + }, + "python3-yaml": { + "version": "5.4.1-1ubuntu1", + "arch": "amd64" + }, + "python3-zipp": { + "version": "1.0.0-3", + "arch": "all" + }, + "python3-zope.interface": { + "version": "5.4.0-1build1", + "arch": "amd64" + }, + "python3.10": { + "version": "3.10.4-3", + "arch": "amd64" + }, + "python3.10-minimal": { + "version": "3.10.4-3", + "arch": "amd64" + }, + "readline-common": { + "version": "8.1.2-1", + "arch": "all" + }, + "rsync": { + "version": "3.2.3-8ubuntu3", + "arch": "amd64" + }, + "rsyslog": { + "version": "8.2112.0-2ubuntu2.2", + "arch": "amd64" + }, + "run-one": { + "version": "1.17-0ubuntu1", + "arch": "all" + }, + "sbsigntool": { + "version": "0.9.4-2ubuntu2", + "arch": "amd64" + }, + "screen": { + "version": "4.9.0-1", + "arch": "amd64" + }, + "secureboot-db": { + "version": "1.8", + "arch": "amd64" + }, + "sed": { + "version": "4.8-1ubuntu2", + "arch": "amd64" + }, + "sensible-utils": { + "version": "0.0.17", + "arch": "all" + }, + "sg3-utils": { + "version": "1.46-1build1", + "arch": "amd64" + }, + "sg3-utils-udev": { + "version": "1.46-1build1", + "arch": "all" + }, + "shared-mime-info": { + "version": "2.1-2", + "arch": "amd64" + }, + "snapd": { + "version": "2.55.3+22.04ubuntu1", + "arch": "amd64" + }, + "software-properties-common": { + "version": "0.99.22.1", + "arch": "all" + }, + "sosreport": { + "version": "4.3-1ubuntu2", + "arch": "amd64" + }, + "squashfs-tools": { + "version": "1:4.5-3build1", + "arch": "amd64" + }, + "ssh-import-id": { + "version": "5.11-0ubuntu1", + "arch": "all" + }, + "strace": { + "version": "5.16-0ubuntu3", + "arch": "amd64" + }, + "sudo": { + "version": "1.9.9-1ubuntu2", + "arch": "amd64" + }, + "systemd": { + "version": "249.11-0ubuntu3.1", + "arch": "amd64" + }, + "systemd-sysv": { + "version": "249.11-0ubuntu3.1", + "arch": "amd64" + }, + "systemd-timesyncd": { + "version": "249.11-0ubuntu3.1", + "arch": "amd64" + }, + "sysvinit-utils": { + "version": "3.01-1ubuntu1", + "arch": "amd64" + }, + "tar": { + "version": "1.34+dfsg-1build3", + "arch": "amd64" + }, + "tcl": { + "version": "8.6.11+1build2", + "arch": "amd64" + }, + "tcl8.6": { + "version": "8.6.12+dfsg-1build1", + "arch": "amd64" + }, + "tcpdump": { + "version": "4.99.1-3build2", + "arch": "amd64" + }, + "telnet": { + "version": "0.17-44build1", + "arch": "amd64" + }, + "thermald": { + "version": "2.4.9-1", + "arch": "amd64" + }, + "thin-provisioning-tools": { + "version": "0.9.0-2ubuntu1", + "arch": "amd64" + }, + "time": { + "version": "1.9-0.1build2", + "arch": "amd64" + }, + "tmux": { + "version": "3.2a-4build1", + "arch": "amd64" + }, + "tnftp": { + "version": "20210827-4build1", + "arch": "amd64" + }, + "tpm-udev": { + "version": "0.6", + "arch": "all" + }, + "tzdata": { + "version": "2022a-0ubuntu1", + "arch": "all" + }, + "ubuntu-advantage-tools": { + "version": "27.8~22.04.1", + "arch": "amd64" + }, + "ubuntu-keyring": { + "version": "2021.03.26", + "arch": "all" + }, + "ubuntu-minimal": { + "version": "1.481", + "arch": "amd64" + }, + "ucf": { + "version": "3.0043", + "arch": "all" + }, + "udev": { + "version": "249.11-0ubuntu3.1", + "arch": "amd64" + }, + "udisks2": { + "version": "2.9.4-1ubuntu2", + "arch": "amd64" + }, + "ufw": { + "version": "0.36.1-4build1", + "arch": "all" + }, + "upower": { + "version": "0.99.17-1", + "arch": "amd64" + }, + "usb-modeswitch": { + "version": "2.6.1-3ubuntu2", + "arch": "amd64" + }, + "usb-modeswitch-data": { + "version": "20191128-4", + "arch": "all" + }, + "usb.ids": { + "version": "2022.04.02-1", + "arch": "all" + }, + "usbmuxd": { + "version": "1.1.1-2build2", + "arch": "amd64" + }, + "usrmerge": { + "version": "25ubuntu2", + "arch": "all" + }, + "util-linux": { + "version": "2.37.2-4ubuntu3", + "arch": "amd64" + }, + "uuid-runtime": { + "version": "2.37.2-4ubuntu3", + "arch": "amd64" + }, + "vim": { + "version": "2:8.2.3995-1ubuntu2", + "arch": "amd64" + }, + "vim-common": { + "version": "2:8.2.3995-1ubuntu2", + "arch": "all" + }, + "vim-runtime": { + "version": "2:8.2.3995-1ubuntu2", + "arch": "all" + }, + "vim-tiny": { + "version": "2:8.2.3995-1ubuntu2", + "arch": "amd64" + }, + "wget": { + "version": "1.21.2-2ubuntu1", + "arch": "amd64" + }, + "whiptail": { + "version": "0.52.21-5ubuntu2", + "arch": "amd64" + }, + "wireless-regdb": { + "version": "2021.08.28-0ubuntu1", + "arch": "all" + }, + "xdg-user-dirs": { + "version": "0.17-2ubuntu4", + "arch": "amd64" + }, + "xfsprogs": { + "version": "5.13.0-1ubuntu2", + "arch": "amd64" + }, + "xkb-data": { + "version": "2.33-1", + "arch": "all" + }, + "xxd": { + "version": "2:8.2.3995-1ubuntu2", + "arch": "amd64" + }, + "xz-utils": { + "version": "5.2.5-2ubuntu1", + "arch": "amd64" + }, + "zerofree": { + "version": "1.1.1-1build3", + "arch": "amd64" + }, + "zlib1g": { + "version": "1:1.2.11.dfsg-2ubuntu9", + "arch": "amd64" + }, + "zstd": { + "version": "1.4.8+dfsg-3build1", + "arch": "amd64" + } + }, + "platform": "ubuntu", + "platform_family": "debian", + "platform_version": "22.04", + "root_group": "root", + "shard_seed": 14302820, + "shells": [ + "/bin/sh", + "/bin/bash", + "/usr/bin/bash", + "/bin/rbash", + "/usr/bin/rbash", + "/usr/bin/sh", + "/bin/dash", + "/usr/bin/dash", + "/usr/bin/tmux", + "/usr/bin/screen" + ], + "time": { + "timezone": "GMT" + }, + "uptime": "30 days 15 hours 07 minutes 30 seconds", + "uptime_seconds": 2646450, + "virtualization": { + "systems": { + } + } +} diff --git a/lib/fauxhai/platforms/ubuntu/24.04.json b/lib/fauxhai/platforms/ubuntu/24.04.json new file mode 100644 index 00000000..f37b6e8b --- /dev/null +++ b/lib/fauxhai/platforms/ubuntu/24.04.json @@ -0,0 +1,4498 @@ +{ + "block_device": { + "dm-0": { + "size": "24109056", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop0": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop1": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop2": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop3": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop4": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop5": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop6": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "loop7": { + "size": "0", + "removable": "0", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + }, + "sr0": { + "size": "4", + "removable": "1", + "model": "QEMU DVD-ROM", + "rev": "2.5+", + "state": "running", + "timeout": "30", + "vendor": "QEMU", + "queue_depth": "1", + "rotational": "1", + "physical_block_size": "2048", + "logical_block_size": "2048" + }, + "vda": { + "size": "52428800", + "removable": "0", + "vendor": "0x1af4", + "rotational": "1", + "physical_block_size": "512", + "logical_block_size": "512" + } + }, + "chef_packages": { + "ohai": { + "version": "18.1.3", + "ohai_root": "/usr/share/rubygems-integration/all/gems/ohai-18.1.3/lib/ohai" + } + }, + "command": { + "ps": "ps -ef" + }, + "counters": { + "network": { + "interfaces": { + "lo": { + "tx": { + "queuelen": "1", + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "carrier": 0, + "collisions": 0 + }, + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0 + } + }, + "eth0": { + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "frame": 0, + "compressed": 0, + "multicast": 0 + }, + "tx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "collisions": 0, + "carrier": 0, + "compressed": 0 + } + } + } + } + }, + "cpu": { + "real": 1, + "total": 1, + "cores": 1 + }, + "current_user": "fauxhai", + "dmi": { + "dmidecode_version": "3.5", + "smbios_version": "2.8", + "structures": { + "count": "11", + "size": "460" + }, + "bios": { + "all_records": [ + { + "record_id": "0x0000", + "size": "0", + "application_identifier": "BIOS Information", + "Vendor": "SeaBIOS", + "Version": "1.15.0-1", + "Release Date": "04/01/2014", + "Address": "0xE8000", + "Runtime Size": "96 kB", + "ROM Size": "64 kB", + "Characteristics": { + "Targeted content distribution is supported": null + }, + "BIOS Revision": "0.0" + } + ], + "vendor": "SeaBIOS", + "version": "1.15.0-1", + "release_date": "04/01/2014", + "address": "0xE8000", + "runtime_size": "96 kB", + "rom_size": "64 kB", + "bios_revision": "0.0" + }, + "system": { + "all_records": [ + { + "record_id": "0x0100", + "size": "1", + "application_identifier": "System Information", + "Manufacturer": "QEMU", + "Product Name": "Standard PC (Q35 + ICH9, 2009)", + "Version": "pc-q35-6.2", + "Serial Number": "Not Specified", + "UUID": "ee2b5bdc-7b04-4f2c-891b-3c075acebf84", + "Wake-up Type": "Power Switch", + "SKU Number": "Not Specified", + "Family": "Not Specified" + } + ], + "manufacturer": "QEMU", + "product_name": "Standard PC (Q35 + ICH9, 2009)", + "version": "pc-q35-6.2", + "serial_number": "Not Specified", + "uuid": "ee2b5bdc-7b04-4f2c-891b-3c075acebf84", + "wake_up_type": "Power Switch", + "sku_number": "Not Specified", + "family": "Not Specified" + }, + "chassis": { + "all_records": [ + { + "record_id": "0x0300", + "size": "3", + "application_identifier": "Chassis Information", + "Manufacturer": "QEMU", + "Type": "Other", + "Lock": "Not Present", + "Version": "pc-q35-6.2", + "Serial Number": "Not Specified", + "Asset Tag": "Not Specified", + "Boot-up State": "Safe", + "Power Supply State": "Safe", + "Thermal State": "Safe", + "Security Status": "Unknown", + "OEM Information": "0x00000000", + "Height": "Unspecified", + "Number Of Power Cords": "Unspecified", + "Contained Elements": "0", + "SKU Number": "Not Specified" + } + ], + "manufacturer": "QEMU", + "type": "Other", + "lock": "Not Present", + "version": "pc-q35-6.2", + "serial_number": "Not Specified", + "asset_tag": "Not Specified", + "boot_up_state": "Safe", + "power_supply_state": "Safe", + "thermal_state": "Safe", + "security_status": "Unknown", + "oem_information": "0x00000000", + "height": "Unspecified", + "number_of_power_cords": "Unspecified", + "contained_elements": "0", + "sku_number": "Not Specified" + }, + "processor": { + "all_records": [ + { + "record_id": "0x0400", + "size": "4", + "application_identifier": "Processor Information", + "Socket Designation": "CPU 0", + "Type": "Central Processor", + "Family": "Other", + "Manufacturer": "QEMU", + "ID": "C1 06 08 00 FF FB 8B 0F", + "Version": "pc-q35-6.2", + "Voltage": "Unknown", + "External Clock": "Unknown", + "Max Speed": "2000 MHz", + "Current Speed": "2000 MHz", + "Status": "Populated, Enabled", + "Upgrade": "Other", + "L1 Cache Handle": "Not Provided", + "L2 Cache Handle": "Not Provided", + "L3 Cache Handle": "Not Provided", + "Serial Number": "Not Specified", + "Asset Tag": "Not Specified", + "Part Number": "Not Specified", + "Core Count": "1", + "Core Enabled": "1", + "Thread Count": "1", + "Characteristics": "None" + }, + { + "record_id": "0x0401", + "size": "4", + "application_identifier": "Processor Information", + "Socket Designation": "CPU 1", + "Type": "Central Processor", + "Family": "Other", + "Manufacturer": "QEMU", + "ID": "C1 06 08 00 FF FB 8B 0F", + "Version": "pc-q35-6.2", + "Voltage": "Unknown", + "External Clock": "Unknown", + "Max Speed": "2000 MHz", + "Current Speed": "2000 MHz", + "Status": "Populated, Enabled", + "Upgrade": "Other", + "L1 Cache Handle": "Not Provided", + "L2 Cache Handle": "Not Provided", + "L3 Cache Handle": "Not Provided", + "Serial Number": "Not Specified", + "Asset Tag": "Not Specified", + "Part Number": "Not Specified", + "Core Count": "1", + "Core Enabled": "1", + "Thread Count": "1", + "Characteristics": "None" + } + ], + "type": "Central Processor", + "family": "Other", + "manufacturer": "QEMU", + "id": "C1 06 08 00 FF FB 8B 0F", + "version": "pc-q35-6.2", + "voltage": "Unknown", + "external_clock": "Unknown", + "max_speed": "2000 MHz", + "current_speed": "2000 MHz", + "status": "Populated, Enabled", + "upgrade": "Other", + "l1_cache_handle": "Not Provided", + "l2_cache_handle": "Not Provided", + "l3_cache_handle": "Not Provided", + "serial_number": "Not Specified", + "asset_tag": "Not Specified", + "part_number": "Not Specified", + "core_count": "1", + "core_enabled": "1", + "thread_count": "1", + "characteristics": "None" + } + }, + "domain": "local", + "filesystem": { + "by_device": { + "tmpfs": { + "kb_size": "401004", + "kb_used": "12", + "kb_available": "400992", + "percent_used": "1%", + "total_inodes": "100251", + "inodes_used": "32", + "inodes_available": "100219", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "size=401004k", + "nr_inodes=100251", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ], + "mounts": [ + "/run", + "/dev/shm", + "/run/lock", + "/run/user/1000" + ] + }, + "/dev/mapper/ubuntu--vg-ubuntu--lv": { + "kb_size": "11758760", + "kb_used": "4550876", + "kb_available": "6588776", + "percent_used": "41%", + "total_inodes": "753664", + "inodes_used": "92415", + "inodes_available": "661249", + "inodes_percent_used": "13%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime" + ], + "uuid": "36dcbcdf-b43a-4ae3-931e-bf2a0ce14e06", + "mounts": [ + "/" + ] + }, + "/dev/vda2": { + "kb_size": "1992552", + "kb_used": "171460", + "kb_available": "1699852", + "percent_used": "10%", + "total_inodes": "131072", + "inodes_used": "317", + "inodes_available": "130755", + "inodes_percent_used": "1%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime" + ], + "uuid": "0ef115d9-01b7-4521-8205-c3d8073cf019", + "mounts": [ + "/boot" + ] + }, + "sysfs": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys" + ] + }, + "proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/proc" + ] + }, + "udev": { + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "relatime", + "size=1931232k", + "nr_inodes=482808", + "mode=755", + "inode64" + ], + "mounts": [ + "/dev" + ] + }, + "devpts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "mounts": [ + "/dev/pts" + ] + }, + "securityfs": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/security" + ] + }, + "cgroup2": { + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "nsdelegate", + "memory_recursiveprot" + ], + "mounts": [ + "/sys/fs/cgroup" + ] + }, + "pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/fs/pstore" + ] + }, + "bpf": { + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "mounts": [ + "/sys/fs/bpf" + ] + }, + "systemd-1": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=32", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=5531" + ], + "mounts": [ + "/proc/sys/fs/binfmt_misc" + ] + }, + "mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/dev/mqueue" + ] + }, + "hugetlbfs": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "pagesize=2M" + ], + "mounts": [ + "/dev/hugepages" + ] + }, + "debugfs": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/debug" + ] + }, + "tracefs": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/tracing" + ] + }, + "configfs": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/config" + ] + }, + "fusectl": { + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/fs/fuse/connections" + ] + }, + "binfmt_misc": { + "fs_type": "binfmt_misc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/proc/sys/fs/binfmt_misc" + ] + }, + "/dev/sr0": { + "mounts": [ + + ] + }, + "/dev/vda": { + "mounts": [ + + ] + }, + "/dev/vda1": { + "mounts": [ + + ] + }, + "/dev/vda3": { + "fs_type": "LVM2_member", + "uuid": "F5vQHj-prYV-QT7X-2w4Y-QwfL-MWe0-kHbdxr", + "mounts": [ + + ] + } + }, + "by_mountpoint": { + "/run": { + "kb_size": "401008", + "kb_used": "1160", + "kb_available": "399848", + "percent_used": "1%", + "total_inodes": "501256", + "inodes_used": "782", + "inodes_available": "500474", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "size=401008k", + "mode=755", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/": { + "kb_size": "11758760", + "kb_used": "4550876", + "kb_available": "6588776", + "percent_used": "41%", + "total_inodes": "753664", + "inodes_used": "92415", + "inodes_available": "661249", + "inodes_percent_used": "13%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime" + ], + "uuid": "36dcbcdf-b43a-4ae3-931e-bf2a0ce14e06", + "devices": [ + "/dev/mapper/ubuntu--vg-ubuntu--lv" + ] + }, + "/dev/shm": { + "kb_size": "2005024", + "kb_used": "0", + "kb_available": "2005024", + "percent_used": "0%", + "total_inodes": "501256", + "inodes_used": "1", + "inodes_available": "501255", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/run/lock": { + "kb_size": "5120", + "kb_used": "0", + "kb_available": "5120", + "percent_used": "0%", + "total_inodes": "501256", + "inodes_used": "3", + "inodes_available": "501253", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "size=5120k", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/boot": { + "kb_size": "1992552", + "kb_used": "171460", + "kb_available": "1699852", + "percent_used": "10%", + "total_inodes": "131072", + "inodes_used": "317", + "inodes_available": "130755", + "inodes_percent_used": "1%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime" + ], + "uuid": "0ef115d9-01b7-4521-8205-c3d8073cf019", + "devices": [ + "/dev/vda2" + ] + }, + "/run/user/1000": { + "kb_size": "401004", + "kb_used": "12", + "kb_available": "400992", + "percent_used": "1%", + "total_inodes": "100251", + "inodes_used": "32", + "inodes_available": "100219", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "size=401004k", + "nr_inodes=100251", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ], + "devices": [ + "tmpfs" + ] + }, + "/sys": { + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "sysfs" + ] + }, + "/proc": { + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "proc" + ] + }, + "/dev": { + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "relatime", + "size=1931232k", + "nr_inodes=482808", + "mode=755", + "inode64" + ], + "devices": [ + "udev" + ] + }, + "/dev/pts": { + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "gid=5", + "mode=620", + "ptmxmode=000" + ], + "devices": [ + "devpts" + ] + }, + "/sys/kernel/security": { + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "securityfs" + ] + }, + "/sys/fs/cgroup": { + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "nsdelegate", + "memory_recursiveprot" + ], + "devices": [ + "cgroup2" + ] + }, + "/sys/fs/pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "pstore" + ] + }, + "/sys/fs/bpf": { + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ], + "devices": [ + "bpf" + ] + }, + "/proc/sys/fs/binfmt_misc": { + "fs_type": "binfmt_misc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "systemd-1", + "binfmt_misc" + ] + }, + "/dev/mqueue": { + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "mqueue" + ] + }, + "/dev/hugepages": { + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "pagesize=2M" + ], + "devices": [ + "hugetlbfs" + ] + }, + "/sys/kernel/debug": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "debugfs" + ] + }, + "/sys/kernel/tracing": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "tracefs" + ] + }, + "/sys/kernel/config": { + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "configfs" + ] + }, + "/sys/fs/fuse/connections": { + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "fusectl" + ] + } + }, + "by_pair": { + "tmpfs,/run": { + "device": "tmpfs", + "kb_size": "401008", + "kb_used": "1160", + "kb_available": "399848", + "percent_used": "1%", + "mount": "/run", + "total_inodes": "501256", + "inodes_used": "782", + "inodes_available": "500474", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "size=401008k", + "mode=755", + "inode64" + ] + }, + "/dev/mapper/ubuntu--vg-ubuntu--lv,/": { + "device": "/dev/mapper/ubuntu--vg-ubuntu--lv", + "kb_size": "11758760", + "kb_used": "4550876", + "kb_available": "6588776", + "percent_used": "41%", + "mount": "/", + "total_inodes": "753664", + "inodes_used": "92415", + "inodes_available": "661249", + "inodes_percent_used": "13%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime" + ], + "uuid": "36dcbcdf-b43a-4ae3-931e-bf2a0ce14e06" + }, + "tmpfs,/dev/shm": { + "device": "tmpfs", + "kb_size": "2005024", + "kb_used": "0", + "kb_available": "2005024", + "percent_used": "0%", + "mount": "/dev/shm", + "total_inodes": "501256", + "inodes_used": "1", + "inodes_available": "501255", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "inode64" + ] + }, + "tmpfs,/run/lock": { + "device": "tmpfs", + "kb_size": "5120", + "kb_used": "0", + "kb_available": "5120", + "percent_used": "0%", + "mount": "/run/lock", + "total_inodes": "501256", + "inodes_used": "3", + "inodes_available": "501253", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "size=5120k", + "inode64" + ] + }, + "/dev/vda2,/boot": { + "device": "/dev/vda2", + "kb_size": "1992552", + "kb_used": "171460", + "kb_available": "1699852", + "percent_used": "10%", + "mount": "/boot", + "total_inodes": "131072", + "inodes_used": "317", + "inodes_available": "130755", + "inodes_percent_used": "1%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime" + ], + "uuid": "0ef115d9-01b7-4521-8205-c3d8073cf019" + }, + "tmpfs,/run/user/1000": { + "device": "tmpfs", + "kb_size": "401004", + "kb_used": "12", + "kb_available": "400992", + "percent_used": "1%", + "mount": "/run/user/1000", + "total_inodes": "100251", + "inodes_used": "32", + "inodes_available": "100219", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "size=401004k", + "nr_inodes=100251", + "mode=700", + "uid=1000", + "gid=1000", + "inode64" + ] + }, + "sysfs,/sys": { + "device": "sysfs", + "mount": "/sys", + "fs_type": "sysfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "proc,/proc": { + "device": "proc", + "mount": "/proc", + "fs_type": "proc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "udev,/dev": { + "device": "udev", + "mount": "/dev", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "relatime", + "size=1931232k", + "nr_inodes=482808", + "mode=755", + "inode64" + ] + }, + "devpts,/dev/pts": { + "device": "devpts", + "mount": "/dev/pts", + "fs_type": "devpts", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "gid=5", + "mode=620", + "ptmxmode=000" + ] + }, + "securityfs,/sys/kernel/security": { + "device": "securityfs", + "mount": "/sys/kernel/security", + "fs_type": "securityfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "cgroup2,/sys/fs/cgroup": { + "device": "cgroup2", + "mount": "/sys/fs/cgroup", + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "nsdelegate", + "memory_recursiveprot" + ] + }, + "pstore,/sys/fs/pstore": { + "device": "pstore", + "mount": "/sys/fs/pstore", + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "bpf,/sys/fs/bpf": { + "device": "bpf", + "mount": "/sys/fs/bpf", + "fs_type": "bpf", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "mode=700" + ] + }, + "systemd-1,/proc/sys/fs/binfmt_misc": { + "device": "systemd-1", + "mount": "/proc/sys/fs/binfmt_misc", + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=32", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=5531" + ] + }, + "mqueue,/dev/mqueue": { + "device": "mqueue", + "mount": "/dev/mqueue", + "fs_type": "mqueue", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "hugetlbfs,/dev/hugepages": { + "device": "hugetlbfs", + "mount": "/dev/hugepages", + "fs_type": "hugetlbfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "pagesize=2M" + ] + }, + "debugfs,/sys/kernel/debug": { + "device": "debugfs", + "mount": "/sys/kernel/debug", + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "tracefs,/sys/kernel/tracing": { + "device": "tracefs", + "mount": "/sys/kernel/tracing", + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "configfs,/sys/kernel/config": { + "device": "configfs", + "mount": "/sys/kernel/config", + "fs_type": "configfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "fusectl,/sys/fs/fuse/connections": { + "device": "fusectl", + "mount": "/sys/fs/fuse/connections", + "fs_type": "fusectl", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "binfmt_misc,/proc/sys/fs/binfmt_misc": { + "device": "binfmt_misc", + "mount": "/proc/sys/fs/binfmt_misc", + "fs_type": "binfmt_misc", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "/dev/sr0,": { + "device": "/dev/sr0" + }, + "/dev/vda,": { + "device": "/dev/vda" + }, + "/dev/vda1,": { + "device": "/dev/vda1" + }, + "/dev/vda3,": { + "device": "/dev/vda3", + "fs_type": "LVM2_member", + "uuid": "F5vQHj-prYV-QT7X-2w4Y-QwfL-MWe0-kHbdxr" + } + } + }, + "fips": { + "kernel": { + "enabled": false + } + }, + "fqdn": "fauxhai.local", + "hostname": "Fauxhai", + "idle": "30 days 15 hours 07 minutes 30 seconds", + "idletime_seconds": 2646450, + "init_package": "systemd", + "ipaddress": "10.0.0.2", + "kernel": { + "name": "Linux", + "release": "6.8.0-11-generic", + "version": "#11-Ubuntu SMP PREEMPT_DYNAMIC Wed Feb 14 00:29:05 UTC 2024", + "machine": "x86_64", + "processor": "x86_64", + "os": "GNU/Linux", + "modules": { + "tls": { + "size": "151552", + "refcount": "0" + }, + "qrtr": { + "size": "53248", + "refcount": "4" + }, + "cfg80211": { + "size": "1339392", + "refcount": "0" + }, + "intel_rapl_msr": { + "size": "20480", + "refcount": "0" + }, + "intel_rapl_common": { + "size": "40960", + "refcount": "1" + }, + "intel_uncore_frequency_common": { + "size": "16384", + "refcount": "0" + }, + "intel_pmc_core": { + "size": "118784", + "refcount": "0" + }, + "intel_vsec": { + "size": "20480", + "refcount": "1" + }, + "pmt_telemetry": { + "size": "16384", + "refcount": "1" + }, + "pmt_class": { + "size": "16384", + "refcount": "1" + }, + "snd_hda_codec_generic": { + "size": "122880", + "refcount": "1" + }, + "kvm_intel": { + "size": "487424", + "refcount": "0" + }, + "kvm": { + "size": "1437696", + "refcount": "1" + }, + "irqbypass": { + "size": "12288", + "refcount": "1" + }, + "rapl": { + "size": "20480", + "refcount": "0" + }, + "snd_hda_intel": { + "size": "61440", + "refcount": "0" + }, + "binfmt_misc": { + "size": "24576", + "refcount": "1" + }, + "snd_intel_dspcfg": { + "size": "36864", + "refcount": "1" + }, + "i2c_i801": { + "size": "36864", + "refcount": "0" + }, + "snd_intel_sdw_acpi": { + "size": "16384", + "refcount": "1" + }, + "snd_hda_codec": { + "size": "217088", + "refcount": "2" + }, + "i2c_smbus": { + "size": "16384", + "refcount": "1" + }, + "snd_hda_core": { + "size": "151552", + "refcount": "3" + }, + "snd_hwdep": { + "size": "20480", + "refcount": "1" + }, + "snd_pcm": { + "size": "200704", + "refcount": "3" + }, + "snd_timer": { + "size": "49152", + "refcount": "1" + }, + "snd": { + "size": "147456", + "refcount": "6" + }, + "soundcore": { + "size": "16384", + "refcount": "1" + }, + "lpc_ich": { + "size": "32768", + "refcount": "0" + }, + "joydev": { + "size": "32768", + "refcount": "0" + }, + "input_leds": { + "size": "12288", + "refcount": "0" + }, + "mac_hid": { + "size": "12288", + "refcount": "0" + }, + "serio_raw": { + "size": "20480", + "refcount": "0" + }, + "dm_multipath": { + "size": "45056", + "refcount": "0" + }, + "msr": { + "size": "12288", + "refcount": "0" + }, + "efi_pstore": { + "size": "12288", + "refcount": "0" + }, + "nfnetlink": { + "size": "20480", + "refcount": "2" + }, + "dmi_sysfs": { + "size": "24576", + "refcount": "0" + }, + "qemu_fw_cfg": { + "size": "24576", + "refcount": "0" + }, + "ip_tables": { + "size": "36864", + "refcount": "0" + }, + "x_tables": { + "size": "69632", + "refcount": "1" + }, + "autofs4": { + "size": "57344", + "refcount": "2" + }, + "btrfs": { + "size": "2015232", + "refcount": "0" + }, + "blake2b_generic": { + "size": "24576", + "refcount": "0" + }, + "raid10": { + "size": "73728", + "refcount": "0" + }, + "raid456": { + "size": "192512", + "refcount": "0" + }, + "async_raid6_recov": { + "size": "20480", + "refcount": "1" + }, + "async_memcpy": { + "size": "16384", + "refcount": "2" + }, + "async_pq": { + "size": "20480", + "refcount": "2" + }, + "async_xor": { + "size": "16384", + "refcount": "3" + }, + "async_tx": { + "size": "16384", + "refcount": "5" + }, + "xor": { + "size": "20480", + "refcount": "2" + }, + "raid6_pq": { + "size": "126976", + "refcount": "4" + }, + "libcrc32c": { + "size": "12288", + "refcount": "2" + }, + "raid1": { + "size": "57344", + "refcount": "0" + }, + "raid0": { + "size": "24576", + "refcount": "0" + }, + "hid_generic": { + "size": "12288", + "refcount": "0" + }, + "usbhid": { + "size": "77824", + "refcount": "0" + }, + "hid": { + "size": "184320", + "refcount": "2" + }, + "crct10dif_pclmul": { + "size": "12288", + "refcount": "1" + }, + "crc32_pclmul": { + "size": "12288", + "refcount": "0" + }, + "polyval_clmulni": { + "size": "12288", + "refcount": "0" + }, + "polyval_generic": { + "size": "12288", + "refcount": "1" + }, + "ghash_clmulni_intel": { + "size": "16384", + "refcount": "0" + }, + "sha256_ssse3": { + "size": "32768", + "refcount": "0" + }, + "psmouse": { + "size": "217088", + "refcount": "0" + }, + "ahci": { + "size": "49152", + "refcount": "0", + "version": "3.0" + }, + "sha1_ssse3": { + "size": "32768", + "refcount": "0" + }, + "qxl": { + "size": "86016", + "refcount": "0" + }, + "xhci_pci": { + "size": "24576", + "refcount": "0" + }, + "drm_ttm_helper": { + "size": "12288", + "refcount": "1" + }, + "libahci": { + "size": "57344", + "refcount": "1" + }, + "xhci_pci_renesas": { + "size": "20480", + "refcount": "1" + }, + "ttm": { + "size": "110592", + "refcount": "2" + }, + "virtio_rng": { + "size": "12288", + "refcount": "0" + }, + "aesni_intel": { + "size": "356352", + "refcount": "0" + }, + "crypto_simd": { + "size": "16384", + "refcount": "1" + }, + "cryptd": { + "size": "28672", + "refcount": "2" + } + } + }, + "keys": { + "ssh": { + "host_dsa_public": "ssh-dss AAAAB3NzaC1kc3MAAACBAJFo9BLAw4WKEs5hgipk5m423FzBsDXCZSMcC9ca/om/1VYzMqImixGe3uICDzNFUWxFoLJTQAOccyzo6MXZiQqwWJDLFi5qOSr6w2XcMyE+zd4wOyMoDiVM5fizmG8K3FzrqvGjwBcHcBdOQnavSijoj38DN25J9zhrid5BY4WlAAAAFQDxXrCyG52XCzn3FV4ej38wJBkomQAAAIBovGPJ4mP2P6BK8lHl0PPbktwQbWlpJ13oz6REJFDVcUi7vV26bX/BjQX+ohzZQzljdz1SpUbPc/8nuA4darYkVh91eBi307EN8IdxRHj2eBgp/ZG4yshIebG3WHrwJD/xUjjZ1MRfyDT1ermVi4LvjjPgWDxLZnPpMaR6S1nzgQAAAIEAj0Vd6DCWslvlsZ8+N53HWsqPi3gnx35JoLPz9Z2epkKIKqmEHav+93G3hdfztVa4I4t3phoPniQchYryF5+RNg8hqxKzjNtrIqUYCeuf2NJrksNsH7OZygPHZpqt4kTuwAGZxjxEGfAI0y8DhkU2ntp2LnzRnWH106BQBCmcXwo= fauxhai.local", + "host_rsa_public": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCtLCeqtqr/HbnORckw1ukdLhpfGoOPFi5/esKEokzTqq1gsgQ2V8emmyjfq1i6XXfRtSBxkdlHv/GWdP5wBTuE2G85MzBkVSQPvmwQN8lX/JMPEEtKXkeOo0o92/PiSmvY4eRsdF0mw40Uvg7jtE3f3fxj497kzh5fKtkrHnF4x9gXCbVdr3FqXJfggR5IJwAxToerbK7x/uRS+7YuZI9Pip3tt14nv9ezwXcuGb/tvjWOZINiFl8izVIFKi7sxfTX09p4NgamxRS7TD2Yd0jT8nEoF9UZTsgXcJ1kDSx7N7NxFfNfP6rCdOGRRz4gUhXtsUjG/XkxPeCwZ7A9VnOD fauxhai.local" + } + }, + "languages": { + "ruby": { + "platform": "x86_64-linux-gnu", + "version": "3.1.2", + "release_date": "2022-04-12", + "target": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_vendor": "pc", + "target_os": "linux-gnu", + "host": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "bin_dir": "/usr/local/bin", + "ruby_bin": "/usr/local/bin/ruby", + "gem_bin": "/usr/local/bin/gem", + "gems_dir": "/usr/local/gems" + }, + "powershell": null + }, + "lsb": { + "id": "Ubuntu", + "description": "Ubuntu Noble Numbat (development branch)", + "release": "24.04", + "codename": "noble" + }, + "macaddress": "11:11:11:11:11:11", + "machinename": "Fauxhai", + "memory": { + "total": "1048576kB" + }, + "network": { + "interfaces": { + "lo": { + "mtu": "65536", + "flags": [ + "LOOPBACK", + "UP", + "LOWER_UP" + ], + "encapsulation": "Loopback", + "addresses": { + "127.0.0.1": { + "family": "inet", + "prefixlen": "8", + "netmask": "255.0.0.0", + "scope": "Node", + "ip_scope": "LOOPBACK" + }, + "::1": { + "family": "inet6", + "prefixlen": "128", + "scope": "Node", + "tags": [ + + ], + "ip_scope": "LINK LOCAL LOOPBACK" + } + }, + "state": "unknown" + }, + "eth0": { + "type": "eth", + "number": "0", + "mtu": "1500", + "flags": [ + "BROADCAST", + "MULTICAST", + "UP", + "LOWER_UP" + ], + "encapsulation": "Ethernet", + "addresses": { + "11:11:11:11:11:11": { + "family": "lladdr" + }, + "10.0.0.2": { + "family": "inet", + "prefixlen": "24", + "netmask": "255.255.255.0", + "broadcast": "10.0.0.255", + "scope": "Global", + "ip_scope": "RFC1918 PRIVATE" + }, + "fe80::11:1111:1111:1111": { + "family": "inet6", + "prefixlen": "64", + "scope": "Link", + "tags": [ + + ], + "ip_scope": "LINK LOCAL UNICAST" + } + }, + "state": "up", + "arp": { + "10.0.0.1": "fe:ff:ff:ff:ff:ff" + }, + "routes": [ + { + "destination": "default", + "family": "inet", + "via": "10.0.0.1" + }, + { + "destination": "10.0.0.0/24", + "family": "inet", + "scope": "link", + "proto": "kernel", + "src": "10.0.0.2" + }, + { + "destination": "fe80::/64", + "family": "inet6", + "metric": "256", + "proto": "kernel" + } + ], + "ring_params": { + } + } + }, + "default_interface": "eth0", + "default_gateway": "10.0.0.1" + }, + "ohai_time": 1711051005.6819391, + "os": "linux", + "os_version": "6.8.0-11-generic", + "packages": { + "adduser": { + "version": "3.137ubuntu1", + "arch": "all" + }, + "amd64-microcode": { + "version": "3.20231019.1ubuntu1", + "arch": "amd64" + }, + "apparmor": { + "version": "4.0.0~alpha4-0ubuntu1", + "arch": "amd64" + }, + "apport": { + "version": "2.28.0-0ubuntu1", + "arch": "all" + }, + "apport-core-dump-handler": { + "version": "2.28.0-0ubuntu1", + "arch": "all" + }, + "apport-symptoms": { + "version": "0.24", + "arch": "all" + }, + "appstream": { + "version": "1.0.2-1", + "arch": "amd64" + }, + "apt": { + "version": "2.7.12", + "arch": "amd64" + }, + "apt-utils": { + "version": "2.7.12", + "arch": "amd64" + }, + "base-files": { + "version": "13ubuntu7", + "arch": "amd64" + }, + "base-passwd": { + "version": "3.6.3", + "arch": "amd64" + }, + "bash": { + "version": "5.2.21-2ubuntu2", + "arch": "amd64" + }, + "bash-completion": { + "version": "1:2.11-8", + "arch": "all" + }, + "bc": { + "version": "1.07.1-3build1", + "arch": "amd64" + }, + "bcache-tools": { + "version": "1.0.8-5", + "arch": "amd64" + }, + "bind9-dnsutils": { + "version": "1:9.18.21-0ubuntu1", + "arch": "amd64" + }, + "bind9-host": { + "version": "1:9.18.21-0ubuntu1", + "arch": "amd64" + }, + "bind9-libs": { + "version": "1:9.18.21-0ubuntu1", + "arch": "amd64" + }, + "bolt": { + "version": "0.9.6-2", + "arch": "amd64" + }, + "bsdextrautils": { + "version": "2.39.3-6ubuntu2", + "arch": "amd64" + }, + "bsdutils": { + "version": "1:2.39.3-6ubuntu2", + "arch": "amd64" + }, + "btrfs-progs": { + "version": "6.6.3-1.1", + "arch": "amd64" + }, + "busybox-initramfs": { + "version": "1:1.36.1-6ubuntu1", + "arch": "amd64" + }, + "busybox-static": { + "version": "1:1.36.1-6ubuntu1", + "arch": "amd64" + }, + "byobu": { + "version": "6.11-0ubuntu1", + "arch": "all" + }, + "ca-certificates": { + "version": "20240203", + "arch": "all" + }, + "cloud-guest-utils": { + "version": "0.33-1", + "arch": "all" + }, + "cloud-init": { + "version": "24.1.1-0ubuntu1", + "arch": "all" + }, + "cloud-initramfs-copymods": { + "version": "0.48", + "arch": "all" + }, + "cloud-initramfs-dyn-netconf": { + "version": "0.48", + "arch": "all" + }, + "command-not-found": { + "version": "23.04.0", + "arch": "all" + }, + "console-setup": { + "version": "1.226ubuntu1", + "arch": "all" + }, + "console-setup-linux": { + "version": "1.226ubuntu1", + "arch": "all" + }, + "coreutils": { + "version": "9.4-2ubuntu4", + "arch": "amd64" + }, + "cpio": { + "version": "2.15+dfsg-1ubuntu1", + "arch": "amd64" + }, + "cron": { + "version": "3.0pl1-184ubuntu1", + "arch": "amd64" + }, + "cron-daemon-common": { + "version": "3.0pl1-184ubuntu1", + "arch": "all" + }, + "cryptsetup": { + "version": "2:2.7.0-1ubuntu1", + "arch": "amd64" + }, + "cryptsetup-bin": { + "version": "2:2.7.0-1ubuntu1", + "arch": "amd64" + }, + "cryptsetup-initramfs": { + "version": "2:2.7.0-1ubuntu1", + "arch": "all" + }, + "curl": { + "version": "8.5.0-2ubuntu2", + "arch": "amd64" + }, + "dash": { + "version": "0.5.12-6ubuntu4", + "arch": "amd64" + }, + "dbus": { + "version": "1.14.10-4ubuntu1", + "arch": "amd64" + }, + "dbus-bin": { + "version": "1.14.10-4ubuntu1", + "arch": "amd64" + }, + "dbus-daemon": { + "version": "1.14.10-4ubuntu1", + "arch": "amd64" + }, + "dbus-session-bus-common": { + "version": "1.14.10-4ubuntu1", + "arch": "all" + }, + "dbus-system-bus-common": { + "version": "1.14.10-4ubuntu1", + "arch": "all" + }, + "dbus-user-session": { + "version": "1.14.10-4ubuntu1", + "arch": "amd64" + }, + "debconf": { + "version": "1.5.86", + "arch": "all" + }, + "debconf-i18n": { + "version": "1.5.86", + "arch": "all" + }, + "debianutils": { + "version": "5.17", + "arch": "amd64" + }, + "dhcpcd-base": { + "version": "1:10.0.6-1ubuntu1", + "arch": "amd64" + }, + "diffutils": { + "version": "1:3.10-1", + "arch": "amd64" + }, + "dirmngr": { + "version": "2.4.4-2ubuntu7", + "arch": "amd64" + }, + "distro-info": { + "version": "1.7", + "arch": "amd64" + }, + "distro-info-data": { + "version": "0.60", + "arch": "all" + }, + "dmeventd": { + "version": "2:1.02.185-3ubuntu1", + "arch": "amd64" + }, + "dmidecode": { + "version": "3.5-3", + "arch": "amd64" + }, + "dmsetup": { + "version": "2:1.02.185-3ubuntu1", + "arch": "amd64" + }, + "dosfstools": { + "version": "4.2-1.1", + "arch": "amd64" + }, + "dpkg": { + "version": "1.22.4ubuntu5", + "arch": "amd64" + }, + "dracut-install": { + "version": "060+5-1ubuntu2", + "arch": "amd64" + }, + "e2fsprogs": { + "version": "1.47.0-2ubuntu1", + "arch": "amd64" + }, + "e2fsprogs-l10n": { + "version": "1.47.0-2ubuntu1", + "arch": "all" + }, + "eatmydata": { + "version": "131-1", + "arch": "all" + }, + "ed": { + "version": "1.20.1-1", + "arch": "amd64" + }, + "eject": { + "version": "2.39.3-6ubuntu2", + "arch": "amd64" + }, + "ethtool": { + "version": "1:6.7-1", + "arch": "amd64" + }, + "fdisk": { + "version": "2.39.3-6ubuntu2", + "arch": "amd64" + }, + "file": { + "version": "1:5.45-2", + "arch": "amd64" + }, + "finalrd": { + "version": "9build1", + "arch": "all" + }, + "findutils": { + "version": "4.9.0-5", + "arch": "amd64" + }, + "firmware-sof-signed": { + "version": "2023.12.1-1ubuntu1", + "arch": "all" + }, + "fonts-lato": { + "version": "2.015-1", + "arch": "all" + }, + "fonts-ubuntu-console": { + "version": "0.869-0ubuntu1", + "arch": "all" + }, + "friendly-recovery": { + "version": "0.2.42", + "arch": "all" + }, + "ftp": { + "version": "20230507-2", + "arch": "all" + }, + "fuse3": { + "version": "3.14.0-5", + "arch": "amd64" + }, + "fwupd": { + "version": "1.9.14-1", + "arch": "amd64" + }, + "fwupd-signed": { + "version": "1.52+1.4-1", + "arch": "amd64" + }, + "gawk": { + "version": "1:5.2.1-2", + "arch": "amd64" + }, + "gcc-13-base": { + "version": "13.2.0-17ubuntu2", + "arch": "amd64" + }, + "gcc-14-base": { + "version": "14-20240303-1ubuntu1", + "arch": "amd64" + }, + "gdisk": { + "version": "1.0.10-1", + "arch": "amd64" + }, + "gettext-base": { + "version": "0.21-14ubuntu1", + "arch": "amd64" + }, + "gir1.2-girepository-2.0": { + "version": "1.79.1-1", + "arch": "amd64" + }, + "gir1.2-glib-2.0": { + "version": "2.79.2-1~ubuntu1", + "arch": "amd64" + }, + "gir1.2-packagekitglib-1.0": { + "version": "1.2.8-2", + "arch": "amd64" + }, + "git": { + "version": "1:2.43.0-1ubuntu1", + "arch": "amd64" + }, + "git-man": { + "version": "1:2.43.0-1ubuntu1", + "arch": "all" + }, + "gnupg": { + "version": "2.4.4-2ubuntu7", + "arch": "all" + }, + "gnupg-l10n": { + "version": "2.4.4-2ubuntu7", + "arch": "all" + }, + "gnupg-utils": { + "version": "2.4.4-2ubuntu7", + "arch": "amd64" + }, + "gpg": { + "version": "2.4.4-2ubuntu7", + "arch": "amd64" + }, + "gpg-agent": { + "version": "2.4.4-2ubuntu7", + "arch": "amd64" + }, + "gpg-wks-client": { + "version": "2.4.4-2ubuntu7", + "arch": "amd64" + }, + "gpgconf": { + "version": "2.4.4-2ubuntu7", + "arch": "amd64" + }, + "gpgsm": { + "version": "2.4.4-2ubuntu7", + "arch": "amd64" + }, + "gpgv": { + "version": "2.4.4-2ubuntu7", + "arch": "amd64" + }, + "grep": { + "version": "3.11-4", + "arch": "amd64" + }, + "groff-base": { + "version": "1.23.0-3", + "arch": "amd64" + }, + "grub-common": { + "version": "2.12-1ubuntu4", + "arch": "amd64" + }, + "grub-gfxpayload-lists": { + "version": "0.7build1", + "arch": "amd64" + }, + "grub-pc": { + "version": "2.12-1ubuntu4", + "arch": "amd64" + }, + "grub-pc-bin": { + "version": "2.12-1ubuntu4", + "arch": "amd64" + }, + "grub2-common": { + "version": "2.12-1ubuntu4", + "arch": "amd64" + }, + "gzip": { + "version": "1.12-1ubuntu2", + "arch": "amd64" + }, + "hdparm": { + "version": "9.65+ds-1", + "arch": "amd64" + }, + "hostname": { + "version": "3.23+nmu2ubuntu1", + "arch": "amd64" + }, + "htop": { + "version": "3.3.0-4", + "arch": "amd64" + }, + "ibverbs-providers": { + "version": "50.0-2", + "arch": "amd64" + }, + "inetutils-telnet": { + "version": "2:2.5-3ubuntu1", + "arch": "amd64" + }, + "info": { + "version": "7.1-3", + "arch": "amd64" + }, + "init": { + "version": "1.66ubuntu1", + "arch": "amd64" + }, + "init-system-helpers": { + "version": "1.66ubuntu1", + "arch": "all" + }, + "initramfs-tools": { + "version": "0.142ubuntu20", + "arch": "all" + }, + "initramfs-tools-bin": { + "version": "0.142ubuntu20", + "arch": "amd64" + }, + "initramfs-tools-core": { + "version": "0.142ubuntu20", + "arch": "all" + }, + "install-info": { + "version": "7.1-3", + "arch": "amd64" + }, + "intel-microcode": { + "version": "3.20240312.1", + "arch": "amd64" + }, + "iproute2": { + "version": "6.1.0-1ubuntu2", + "arch": "amd64" + }, + "iptables": { + "version": "1.8.10-3ubuntu1", + "arch": "amd64" + }, + "iputils-ping": { + "version": "3:20240117-1", + "arch": "amd64" + }, + "iputils-tracepath": { + "version": "3:20240117-1", + "arch": "amd64" + }, + "iso-codes": { + "version": "4.16.0-1", + "arch": "all" + }, + "iucode-tool": { + "version": "2.3.1-3", + "arch": "amd64" + }, + "javascript-common": { + "version": "11+nmu1", + "arch": "all" + }, + "jq": { + "version": "1.7.1-2", + "arch": "amd64" + }, + "kbd": { + "version": "2.6.4-2ubuntu1", + "arch": "amd64" + }, + "keyboard-configuration": { + "version": "1.226ubuntu1", + "arch": "all" + }, + "keyboxd": { + "version": "2.4.4-2ubuntu7", + "arch": "amd64" + }, + "klibc-utils": { + "version": "2.0.13-4", + "arch": "amd64" + }, + "kmod": { + "version": "30+20230601-2ubuntu1", + "arch": "amd64" + }, + "kpartx": { + "version": "0.9.4-5ubuntu3", + "arch": "amd64" + }, + "krb5-locales": { + "version": "1.20.1-5build1", + "arch": "all" + }, + "landscape-common": { + "version": "24.02-0ubuntu3", + "arch": "amd64" + }, + "less": { + "version": "590-2ubuntu1", + "arch": "amd64" + }, + "libacl1": { + "version": "2.3.2-1", + "arch": "amd64" + }, + "libaio1": { + "version": "0.3.113-5", + "arch": "amd64" + }, + "libapparmor1": { + "version": "4.0.0~alpha4-0ubuntu1", + "arch": "amd64" + }, + "libappstream5": { + "version": "1.0.2-1", + "arch": "amd64" + }, + "libapt-pkg6.0": { + "version": "2.7.12", + "arch": "amd64" + }, + "libarchive13": { + "version": "3.7.2-1ubuntu2", + "arch": "amd64" + }, + "libargon2-1": { + "version": "0~20190702+dfsg-4", + "arch": "amd64" + }, + "libassuan0": { + "version": "2.5.6-1", + "arch": "amd64" + }, + "libatasmart4": { + "version": "0.19-5build2", + "arch": "amd64" + }, + "libatm1": { + "version": "1:2.5.1-5", + "arch": "amd64" + }, + "libattr1": { + "version": "1:2.5.2-1", + "arch": "amd64" + }, + "libaudit-common": { + "version": "1:3.1.2-2", + "arch": "all" + }, + "libaudit1": { + "version": "1:3.1.2-2", + "arch": "amd64" + }, + "libblkid1": { + "version": "2.39.3-6ubuntu2", + "arch": "amd64" + }, + "libblockdev-crypto3": { + "version": "3.1.0-1", + "arch": "amd64" + }, + "libblockdev-fs3": { + "version": "3.1.0-1", + "arch": "amd64" + }, + "libblockdev-loop3": { + "version": "3.1.0-1", + "arch": "amd64" + }, + "libblockdev-mdraid3": { + "version": "3.1.0-1", + "arch": "amd64" + }, + "libblockdev-nvme3": { + "version": "3.1.0-1", + "arch": "amd64" + }, + "libblockdev-part3": { + "version": "3.1.0-1", + "arch": "amd64" + }, + "libblockdev-swap3": { + "version": "3.1.0-1", + "arch": "amd64" + }, + "libblockdev-utils3": { + "version": "3.1.0-1", + "arch": "amd64" + }, + "libblockdev3": { + "version": "3.1.0-1", + "arch": "amd64" + }, + "libbpf1": { + "version": "1:1.3.0-2", + "arch": "amd64" + }, + "libbrotli1": { + "version": "1.1.0-2", + "arch": "amd64" + }, + "libbsd0": { + "version": "0.11.8-1", + "arch": "amd64" + }, + "libbytesize-common": { + "version": "2.10-1ubuntu1", + "arch": "all" + }, + "libbytesize1": { + "version": "2.10-1ubuntu1", + "arch": "amd64" + }, + "libbz2-1.0": { + "version": "1.0.8-5ubuntu1", + "arch": "amd64" + }, + "libc-bin": { + "version": "2.39-0ubuntu2", + "arch": "amd64" + }, + "libc6": { + "version": "2.39-0ubuntu2", + "arch": "amd64" + }, + "libcap-ng0": { + "version": "0.8.4-2", + "arch": "amd64" + }, + "libcap2": { + "version": "1:2.66-5ubuntu1", + "arch": "amd64" + }, + "libcap2-bin": { + "version": "1:2.66-5ubuntu1", + "arch": "amd64" + }, + "libcbor0.10": { + "version": "0.10.2-1.2ubuntu1", + "arch": "amd64" + }, + "libcom-err2": { + "version": "1.47.0-2ubuntu1", + "arch": "amd64" + }, + "libcrypt1": { + "version": "1:4.4.36-4", + "arch": "amd64" + }, + "libcryptsetup12": { + "version": "2:2.7.0-1ubuntu1", + "arch": "amd64" + }, + "libcurl3-gnutls": { + "version": "8.5.0-2ubuntu2", + "arch": "amd64" + }, + "libcurl4": { + "version": "8.5.0-2ubuntu2", + "arch": "amd64" + }, + "libdb5.3": { + "version": "5.3.28+dfsg2-4", + "arch": "amd64" + }, + "libdbus-1-3": { + "version": "1.14.10-4ubuntu1", + "arch": "amd64" + }, + "libdbus-glib-1-2": { + "version": "0.112-3", + "arch": "amd64" + }, + "libdebconfclient0": { + "version": "0.271ubuntu1", + "arch": "amd64" + }, + "libdevmapper-event1.02.1": { + "version": "2:1.02.185-3ubuntu1", + "arch": "amd64" + }, + "libdevmapper1.02.1": { + "version": "2:1.02.185-3ubuntu1", + "arch": "amd64" + }, + "libdrm-common": { + "version": "2.4.120-2", + "arch": "all" + }, + "libdrm2": { + "version": "2.4.120-2", + "arch": "amd64" + }, + "libduktape207": { + "version": "2.7.0+tests-0ubuntu2", + "arch": "amd64" + }, + "libdw1": { + "version": "0.190-1", + "arch": "amd64" + }, + "libeatmydata1": { + "version": "131-1", + "arch": "amd64" + }, + "libedit2": { + "version": "3.1-20230828-1", + "arch": "amd64" + }, + "libefiboot1t64": { + "version": "38-3.1", + "arch": "amd64" + }, + "libefivar1t64": { + "version": "38-3.1", + "arch": "amd64" + }, + "libelf1": { + "version": "0.190-1", + "arch": "amd64" + }, + "liberror-perl": { + "version": "0.17029-2", + "arch": "all" + }, + "libestr0": { + "version": "0.1.11-1", + "arch": "amd64" + }, + "libevdev2": { + "version": "1.13.1+dfsg-1", + "arch": "amd64" + }, + "libevent-core-2.1-7": { + "version": "2.1.12-stable-9", + "arch": "amd64" + }, + "libexpat1": { + "version": "2.6.0-1", + "arch": "amd64" + }, + "libext2fs2": { + "version": "1.47.0-2ubuntu1", + "arch": "amd64" + }, + "libfastjson4": { + "version": "1.2304.0-1", + "arch": "amd64" + }, + "libfdisk1": { + "version": "2.39.3-6ubuntu2", + "arch": "amd64" + }, + "libffi8": { + "version": "3.4.6-1", + "arch": "amd64" + }, + "libfido2-1": { + "version": "1.14.0-1", + "arch": "amd64" + }, + "libflashrom1": { + "version": "1.3.0-2.1ubuntu1", + "arch": "amd64" + }, + "libfreetype6": { + "version": "2.13.2+dfsg-1", + "arch": "amd64" + }, + "libfribidi0": { + "version": "1.0.13-3", + "arch": "amd64" + }, + "libftdi1-2": { + "version": "1.5-6build3", + "arch": "amd64" + }, + "libfuse3-3": { + "version": "3.14.0-5", + "arch": "amd64" + }, + "libfwupd2": { + "version": "1.9.14-1", + "arch": "amd64" + }, + "libgcc-s1": { + "version": "14-20240303-1ubuntu1", + "arch": "amd64" + }, + "libgcrypt20": { + "version": "1.10.3-2", + "arch": "amd64" + }, + "libgdbm-compat4": { + "version": "1.23-5", + "arch": "amd64" + }, + "libgdbm6": { + "version": "1.23-5", + "arch": "amd64" + }, + "libgirepository-1.0-1": { + "version": "1.79.1-1", + "arch": "amd64" + }, + "libglib2.0-0": { + "version": "2.79.2-1~ubuntu1", + "arch": "amd64" + }, + "libglib2.0-bin": { + "version": "2.79.2-1~ubuntu1", + "arch": "amd64" + }, + "libglib2.0-data": { + "version": "2.79.2-1~ubuntu1", + "arch": "all" + }, + "libgmp10": { + "version": "2:6.3.0+dfsg-2ubuntu4", + "arch": "amd64" + }, + "libgnutls30": { + "version": "3.8.3-1ubuntu1", + "arch": "amd64" + }, + "libgpg-error-l10n": { + "version": "1.47-3build1", + "arch": "all" + }, + "libgpg-error0": { + "version": "1.47-3build1", + "arch": "amd64" + }, + "libgpgme11": { + "version": "1.18.0-4ubuntu1", + "arch": "amd64" + }, + "libgpm2": { + "version": "1.20.7-10build1", + "arch": "amd64" + }, + "libgssapi-krb5-2": { + "version": "1.20.1-5build1", + "arch": "amd64" + }, + "libgstreamer1.0-0": { + "version": "1.22.10-1", + "arch": "amd64" + }, + "libgudev-1.0-0": { + "version": "1:238-3", + "arch": "amd64" + }, + "libgusb2": { + "version": "0.4.8-1", + "arch": "amd64" + }, + "libhogweed6": { + "version": "3.9.1-2", + "arch": "amd64" + }, + "libibverbs1": { + "version": "50.0-2", + "arch": "amd64" + }, + "libicu74": { + "version": "74.2-1ubuntu1", + "arch": "amd64" + }, + "libidn2-0": { + "version": "2.3.7-2", + "arch": "amd64" + }, + "libimobiledevice6": { + "version": "1.3.0-7.1build1", + "arch": "amd64" + }, + "libinih1": { + "version": "55-1ubuntu1", + "arch": "amd64" + }, + "libintl-perl": { + "version": "1.33-1build1", + "arch": "all" + }, + "libintl-xs-perl": { + "version": "1.33-1build1", + "arch": "amd64" + }, + "libip4tc2": { + "version": "1.8.10-3ubuntu1", + "arch": "amd64" + }, + "libip6tc2": { + "version": "1.8.10-3ubuntu1", + "arch": "amd64" + }, + "libisns0": { + "version": "0.101-0.2", + "arch": "amd64" + }, + "libjansson4": { + "version": "2.14-2", + "arch": "amd64" + }, + "libjcat1": { + "version": "0.2.0-2", + "arch": "amd64" + }, + "libjq1": { + "version": "1.7.1-2", + "arch": "amd64" + }, + "libjs-jquery": { + "version": "3.6.1+dfsg+~3.5.14-1", + "arch": "all" + }, + "libjson-c5": { + "version": "0.17-1", + "arch": "amd64" + }, + "libjson-glib-1.0-0": { + "version": "1.8.0-2", + "arch": "amd64" + }, + "libjson-glib-1.0-common": { + "version": "1.8.0-2", + "arch": "all" + }, + "libk5crypto3": { + "version": "1.20.1-5build1", + "arch": "amd64" + }, + "libkeyutils1": { + "version": "1.6.3-3", + "arch": "amd64" + }, + "libklibc": { + "version": "2.0.13-4", + "arch": "amd64" + }, + "libkmod2": { + "version": "30+20230601-2ubuntu1", + "arch": "amd64" + }, + "libkrb5-3": { + "version": "1.20.1-5build1", + "arch": "amd64" + }, + "libkrb5support0": { + "version": "1.20.1-5build1", + "arch": "amd64" + }, + "libksba8": { + "version": "1.6.6-1", + "arch": "amd64" + }, + "libldap-common": { + "version": "2.6.7+dfsg-1~exp1ubuntu1", + "arch": "all" + }, + "libldap2": { + "version": "2.6.7+dfsg-1~exp1ubuntu1", + "arch": "amd64" + }, + "liblmdb0": { + "version": "0.9.31-1", + "arch": "amd64" + }, + "liblocale-gettext-perl": { + "version": "1.07-6build1", + "arch": "amd64" + }, + "liblvm2cmd2.03": { + "version": "2.03.16-3ubuntu1", + "arch": "amd64" + }, + "liblz4-1": { + "version": "1.9.4-1", + "arch": "amd64" + }, + "liblzma5": { + "version": "5.4.5-0.3", + "arch": "amd64" + }, + "liblzo2-2": { + "version": "2.10-2build3", + "arch": "amd64" + }, + "libmagic-mgc": { + "version": "1:5.45-2", + "arch": "amd64" + }, + "libmagic1": { + "version": "1:5.45-2", + "arch": "amd64" + }, + "libmaxminddb0": { + "version": "1.9.1-1", + "arch": "amd64" + }, + "libmbim-glib4": { + "version": "1.30.0-1", + "arch": "amd64" + }, + "libmbim-proxy": { + "version": "1.30.0-1", + "arch": "amd64" + }, + "libmbim-utils": { + "version": "1.30.0-1", + "arch": "amd64" + }, + "libmd0": { + "version": "1.1.0-2", + "arch": "amd64" + }, + "libmm-glib0": { + "version": "1.22.0-3", + "arch": "amd64" + }, + "libmnl0": { + "version": "1.0.5-2", + "arch": "amd64" + }, + "libmodule-find-perl": { + "version": "0.16-2", + "arch": "all" + }, + "libmodule-scandeps-perl": { + "version": "1.35-1", + "arch": "all" + }, + "libmount1": { + "version": "2.39.3-6ubuntu2", + "arch": "amd64" + }, + "libmpfr6": { + "version": "4.2.1-1", + "arch": "amd64" + }, + "libmspack0": { + "version": "0.11-1", + "arch": "amd64" + }, + "libncurses6": { + "version": "6.4+20240113-1ubuntu1", + "arch": "amd64" + }, + "libncursesw6": { + "version": "6.4+20240113-1ubuntu1", + "arch": "amd64" + }, + "libnetfilter-conntrack3": { + "version": "1.0.9-6", + "arch": "amd64" + }, + "libnetplan0": { + "version": "0.107.1-3", + "arch": "amd64" + }, + "libnettle8": { + "version": "3.9.1-2", + "arch": "amd64" + }, + "libnewt0.52": { + "version": "0.52.24-2ubuntu1", + "arch": "amd64" + }, + "libnfnetlink0": { + "version": "1.0.2-2", + "arch": "amd64" + }, + "libnftables1": { + "version": "1.0.9-1", + "arch": "amd64" + }, + "libnftnl11": { + "version": "1.2.6-2", + "arch": "amd64" + }, + "libnghttp2-14": { + "version": "1.59.0-1", + "arch": "amd64" + }, + "libnl-3-200": { + "version": "3.7.0-0.3", + "arch": "amd64" + }, + "libnl-genl-3-200": { + "version": "3.7.0-0.3", + "arch": "amd64" + }, + "libnl-route-3-200": { + "version": "3.7.0-0.3", + "arch": "amd64" + }, + "libnpth0": { + "version": "1.6-3build2", + "arch": "amd64" + }, + "libnsl2": { + "version": "1.3.0-3", + "arch": "amd64" + }, + "libnspr4": { + "version": "2:4.35-1.1", + "arch": "amd64" + }, + "libnss-systemd": { + "version": "255.2-3ubuntu2", + "arch": "amd64" + }, + "libnss3": { + "version": "2:3.98-1", + "arch": "amd64" + }, + "libntfs-3g89": { + "version": "1:2022.10.3-1ubuntu1", + "arch": "amd64" + }, + "libnuma1": { + "version": "2.0.18-1", + "arch": "amd64" + }, + "libnvme1": { + "version": "1.8-2", + "arch": "amd64" + }, + "libonig5": { + "version": "6.9.9-1", + "arch": "amd64" + }, + "libopeniscsiusr": { + "version": "2.1.9-3ubuntu1", + "arch": "amd64" + }, + "libp11-kit0": { + "version": "0.25.3-4ubuntu1", + "arch": "amd64" + }, + "libpackagekit-glib2-18": { + "version": "1.2.8-2", + "arch": "amd64" + }, + "libpam-cap": { + "version": "1:2.66-5ubuntu1", + "arch": "amd64" + }, + "libpam-modules": { + "version": "1.5.2-9.1ubuntu3", + "arch": "amd64" + }, + "libpam-modules-bin": { + "version": "1.5.2-9.1ubuntu3", + "arch": "amd64" + }, + "libpam-runtime": { + "version": "1.5.2-9.1ubuntu3", + "arch": "all" + }, + "libpam-systemd": { + "version": "255.2-3ubuntu2", + "arch": "amd64" + }, + "libpam0g": { + "version": "1.5.2-9.1ubuntu3", + "arch": "amd64" + }, + "libparted2": { + "version": "3.6-3", + "arch": "amd64" + }, + "libpcap0.8": { + "version": "1.10.4-4ubuntu3", + "arch": "amd64" + }, + "libpci3": { + "version": "1:3.10.0-2", + "arch": "amd64" + }, + "libpcre2-8-0": { + "version": "10.42-4ubuntu1", + "arch": "amd64" + }, + "libperl5.38": { + "version": "5.38.2-3", + "arch": "amd64" + }, + "libpipeline1": { + "version": "1.5.7-1", + "arch": "amd64" + }, + "libplist3": { + "version": "2.2.0-7", + "arch": "amd64" + }, + "libplymouth5": { + "version": "24.004.60-1ubuntu3", + "arch": "amd64" + }, + "libpng16-16": { + "version": "1.6.43-1", + "arch": "amd64" + }, + "libpolkit-agent-1-0": { + "version": "124-1", + "arch": "amd64" + }, + "libpolkit-gobject-1-0": { + "version": "124-1", + "arch": "amd64" + }, + "libpopt0": { + "version": "1.19+dfsg-1", + "arch": "amd64" + }, + "libproc-processtable-perl": { + "version": "0.636-1build1", + "arch": "amd64" + }, + "libproc2-0": { + "version": "2:4.0.4-4ubuntu1", + "arch": "amd64" + }, + "libprotobuf-c1": { + "version": "1.4.1-1ubuntu2", + "arch": "amd64" + }, + "libpsl5": { + "version": "0.21.2-1build1", + "arch": "amd64" + }, + "libpython3-stdlib": { + "version": "3.12.1-0ubuntu2", + "arch": "amd64" + }, + "libpython3.12": { + "version": "3.12.2-1", + "arch": "amd64" + }, + "libpython3.12-minimal": { + "version": "3.12.2-1", + "arch": "amd64" + }, + "libpython3.12-stdlib": { + "version": "3.12.2-1", + "arch": "amd64" + }, + "libqmi-glib5": { + "version": "1.34.0-2", + "arch": "amd64" + }, + "libqmi-proxy": { + "version": "1.34.0-2", + "arch": "amd64" + }, + "libqmi-utils": { + "version": "1.34.0-2", + "arch": "amd64" + }, + "libqrtr-glib0": { + "version": "1.2.2-1ubuntu2", + "arch": "amd64" + }, + "libreadline8": { + "version": "8.2-3", + "arch": "amd64" + }, + "libreiserfscore0": { + "version": "1:3.6.27-7", + "arch": "amd64" + }, + "librtmp1": { + "version": "2.4+20151223.gitfa8646d.1-2build4", + "arch": "amd64" + }, + "libruby": { + "version": "1:3.1+1", + "arch": "amd64" + }, + "libruby3.1": { + "version": "3.1.2-7ubuntu4", + "arch": "amd64" + }, + "libsasl2-2": { + "version": "2.1.28+dfsg1-4", + "arch": "amd64" + }, + "libsasl2-modules": { + "version": "2.1.28+dfsg1-4", + "arch": "amd64" + }, + "libsasl2-modules-db": { + "version": "2.1.28+dfsg1-4", + "arch": "amd64" + }, + "libseccomp2": { + "version": "2.5.5-1ubuntu1", + "arch": "amd64" + }, + "libselinux1": { + "version": "3.5-2build1", + "arch": "amd64" + }, + "libsemanage-common": { + "version": "3.5-1build2", + "arch": "all" + }, + "libsemanage2": { + "version": "3.5-1build2", + "arch": "amd64" + }, + "libsensors-config": { + "version": "1:3.6.0-9", + "arch": "all" + }, + "libsensors5": { + "version": "1:3.6.0-9", + "arch": "amd64" + }, + "libsepol2": { + "version": "3.5-2", + "arch": "amd64" + }, + "libsgutils2-1.46-2": { + "version": "1.46-3ubuntu3", + "arch": "amd64" + }, + "libsigsegv2": { + "version": "2.14-1ubuntu1", + "arch": "amd64" + }, + "libslang2": { + "version": "2.3.3-3", + "arch": "amd64" + }, + "libsmartcols1": { + "version": "2.39.3-6ubuntu2", + "arch": "amd64" + }, + "libsodium23": { + "version": "1.0.18-1build2", + "arch": "amd64" + }, + "libsort-naturally-perl": { + "version": "1.03-4", + "arch": "all" + }, + "libsqlite3-0": { + "version": "3.45.1-1", + "arch": "amd64" + }, + "libss2": { + "version": "1.47.0-2ubuntu1", + "arch": "amd64" + }, + "libssh-4": { + "version": "0.10.6-2", + "arch": "amd64" + }, + "libssl3": { + "version": "3.0.10-1ubuntu4", + "arch": "amd64" + }, + "libstdc++6": { + "version": "14-20240303-1ubuntu1", + "arch": "amd64" + }, + "libstemmer0d": { + "version": "2.2.0-4", + "arch": "amd64" + }, + "libsystemd-shared": { + "version": "255.2-3ubuntu2", + "arch": "amd64" + }, + "libsystemd0": { + "version": "255.2-3ubuntu2", + "arch": "amd64" + }, + "libtasn1-6": { + "version": "4.19.0-3", + "arch": "amd64" + }, + "libtcl8.6": { + "version": "8.6.13+dfsg-2", + "arch": "amd64" + }, + "libterm-readkey-perl": { + "version": "2.38-2build2", + "arch": "amd64" + }, + "libtext-charwidth-perl": { + "version": "0.04-11build1", + "arch": "amd64" + }, + "libtext-iconv-perl": { + "version": "1.7-8build1", + "arch": "amd64" + }, + "libtext-wrapi18n-perl": { + "version": "0.06-10", + "arch": "all" + }, + "libtinfo6": { + "version": "6.4+20240113-1ubuntu1", + "arch": "amd64" + }, + "libtirpc-common": { + "version": "1.3.4+ds-1build1", + "arch": "all" + }, + "libtirpc3": { + "version": "1.3.4+ds-1build1", + "arch": "amd64" + }, + "libtss2-esys-3.0.2-0": { + "version": "4.0.1-7ubuntu1", + "arch": "amd64" + }, + "libtss2-mu-4.0.1-0": { + "version": "4.0.1-7ubuntu1", + "arch": "amd64" + }, + "libtss2-sys1": { + "version": "4.0.1-7ubuntu1", + "arch": "amd64" + }, + "libtss2-tcti-cmd0": { + "version": "4.0.1-7ubuntu1", + "arch": "amd64" + }, + "libtss2-tcti-device0": { + "version": "4.0.1-7ubuntu1", + "arch": "amd64" + }, + "libtss2-tcti-mssim0": { + "version": "4.0.1-7ubuntu1", + "arch": "amd64" + }, + "libtss2-tcti-swtpm0": { + "version": "4.0.1-7ubuntu1", + "arch": "amd64" + }, + "libuchardet0": { + "version": "0.0.8-1", + "arch": "amd64" + }, + "libudev1": { + "version": "255.2-3ubuntu2", + "arch": "amd64" + }, + "libudisks2-0": { + "version": "2.10.1-1ubuntu2", + "arch": "amd64" + }, + "libunistring5": { + "version": "1.1-2", + "arch": "amd64" + }, + "libunwind8": { + "version": "1.6.2-3", + "arch": "amd64" + }, + "libupower-glib3": { + "version": "1.90.2-8", + "arch": "amd64" + }, + "liburcu8": { + "version": "0.14.0-3", + "arch": "amd64" + }, + "libusb-1.0-0": { + "version": "2:1.0.26-1", + "arch": "amd64" + }, + "libusbmuxd6": { + "version": "2.0.2-4", + "arch": "amd64" + }, + "libutempter0": { + "version": "1.2.1-3", + "arch": "amd64" + }, + "libuuid1": { + "version": "2.39.3-6ubuntu2", + "arch": "amd64" + }, + "libuv1": { + "version": "1.48.0-1", + "arch": "amd64" + }, + "libvolume-key1": { + "version": "0.3.12-5build2", + "arch": "amd64" + }, + "libwrap0": { + "version": "7.6.q-32", + "arch": "amd64" + }, + "libx11-6": { + "version": "2:1.8.7-1", + "arch": "amd64" + }, + "libx11-data": { + "version": "2:1.8.7-1", + "arch": "all" + }, + "libxau6": { + "version": "1:1.0.9-1build5", + "arch": "amd64" + }, + "libxcb1": { + "version": "1.15-1", + "arch": "amd64" + }, + "libxdmcp6": { + "version": "1:1.1.3-0ubuntu5", + "arch": "amd64" + }, + "libxext6": { + "version": "2:1.3.4-1build1", + "arch": "amd64" + }, + "libxkbcommon0": { + "version": "1.6.0-1", + "arch": "amd64" + }, + "libxml2": { + "version": "2.9.14+dfsg-1.3ubuntu1", + "arch": "amd64" + }, + "libxmlb2": { + "version": "0.3.15-1", + "arch": "amd64" + }, + "libxmlsec1": { + "version": "1.2.38-1", + "arch": "amd64" + }, + "libxmlsec1-openssl": { + "version": "1.2.38-1", + "arch": "amd64" + }, + "libxmuu1": { + "version": "2:1.1.3-3", + "arch": "amd64" + }, + "libxslt1.1": { + "version": "1.1.35-1", + "arch": "amd64" + }, + "libxtables12": { + "version": "1.8.10-3ubuntu1", + "arch": "amd64" + }, + "libxxhash0": { + "version": "0.8.2-2", + "arch": "amd64" + }, + "libyajl-dev": { + "version": "2.1.0-5", + "arch": "amd64" + }, + "libyajl2": { + "version": "2.1.0-5", + "arch": "amd64" + }, + "libyaml-0-2": { + "version": "0.2.5-1", + "arch": "amd64" + }, + "libzstd1": { + "version": "1.5.5+dfsg2-2", + "arch": "amd64" + }, + "linux-base": { + "version": "4.5ubuntu9", + "arch": "all" + }, + "linux-firmware": { + "version": "20240318.git3b128b60-0ubuntu1", + "arch": "amd64" + }, + "linux-generic": { + "version": "6.8.0-11.11+1", + "arch": "amd64" + }, + "linux-headers-6.8.0-11": { + "version": "6.8.0-11.11", + "arch": "all" + }, + "linux-headers-6.8.0-11-generic": { + "version": "6.8.0-11.11", + "arch": "amd64" + }, + "linux-headers-generic": { + "version": "6.8.0-11.11+1", + "arch": "amd64" + }, + "linux-image-6.8.0-11-generic": { + "version": "6.8.0-11.11", + "arch": "amd64" + }, + "linux-image-generic": { + "version": "6.8.0-11.11+1", + "arch": "amd64" + }, + "linux-modules-6.8.0-11-generic": { + "version": "6.8.0-11.11", + "arch": "amd64" + }, + "linux-modules-extra-6.8.0-11-generic": { + "version": "6.8.0-11.11", + "arch": "amd64" + }, + "locales": { + "version": "2.39-0ubuntu2", + "arch": "all" + }, + "login": { + "version": "1:4.13+dfsg1-4ubuntu1", + "arch": "amd64" + }, + "logrotate": { + "version": "3.21.0-2", + "arch": "amd64" + }, + "logsave": { + "version": "1.47.0-2ubuntu1", + "arch": "amd64" + }, + "lsb-base": { + "version": "11.6", + "arch": "all" + }, + "lsb-release": { + "version": "12.0-2", + "arch": "all" + }, + "lshw": { + "version": "02.19.git.2021.06.19.996aaad9c7-2build1", + "arch": "amd64" + }, + "lsof": { + "version": "4.95.0-1build1", + "arch": "amd64" + }, + "lvm2": { + "version": "2.03.16-3ubuntu1", + "arch": "amd64" + }, + "lxd-agent-loader": { + "version": "0.6", + "arch": "all" + }, + "lxd-installer": { + "version": "4", + "arch": "all" + }, + "man-db": { + "version": "2.12.0-3", + "arch": "amd64" + }, + "manpages": { + "version": "6.05.01-1", + "arch": "all" + }, + "mawk": { + "version": "1.3.4.20240123-1", + "arch": "amd64" + }, + "mdadm": { + "version": "4.3-1ubuntu1", + "arch": "amd64" + }, + "media-types": { + "version": "10.1.0", + "arch": "all" + }, + "modemmanager": { + "version": "1.22.0-3", + "arch": "amd64" + }, + "motd-news-config": { + "version": "13ubuntu7", + "arch": "all" + }, + "mount": { + "version": "2.39.3-6ubuntu2", + "arch": "amd64" + }, + "mtr-tiny": { + "version": "0.95-1.1", + "arch": "amd64" + }, + "multipath-tools": { + "version": "0.9.4-5ubuntu3", + "arch": "amd64" + }, + "nano": { + "version": "7.2-2", + "arch": "amd64" + }, + "ncurses-base": { + "version": "6.4+20240113-1ubuntu1", + "arch": "all" + }, + "ncurses-bin": { + "version": "6.4+20240113-1ubuntu1", + "arch": "amd64" + }, + "ncurses-term": { + "version": "6.4+20240113-1ubuntu1", + "arch": "all" + }, + "needrestart": { + "version": "3.6-7ubuntu3", + "arch": "all" + }, + "netbase": { + "version": "6.4", + "arch": "all" + }, + "netcat-openbsd": { + "version": "1.226-1ubuntu1", + "arch": "amd64" + }, + "netplan-generator": { + "version": "0.107.1-3", + "arch": "amd64" + }, + "netplan.io": { + "version": "0.107.1-3", + "arch": "amd64" + }, + "networkd-dispatcher": { + "version": "2.2.4-1", + "arch": "all" + }, + "nftables": { + "version": "1.0.9-1", + "arch": "amd64" + }, + "ntfs-3g": { + "version": "1:2022.10.3-1ubuntu1", + "arch": "amd64" + }, + "numactl": { + "version": "2.0.18-1", + "arch": "amd64" + }, + "ohai": { + "version": "18.1.3-2", + "arch": "all" + }, + "open-iscsi": { + "version": "2.1.9-3ubuntu1", + "arch": "amd64" + }, + "open-vm-tools": { + "version": "2:12.3.5-4", + "arch": "amd64" + }, + "openssh-client": { + "version": "1:9.6p1-3ubuntu2", + "arch": "amd64" + }, + "openssh-server": { + "version": "1:9.6p1-3ubuntu2", + "arch": "amd64" + }, + "openssh-sftp-server": { + "version": "1:9.6p1-3ubuntu2", + "arch": "amd64" + }, + "openssl": { + "version": "3.0.10-1ubuntu4", + "arch": "amd64" + }, + "os-prober": { + "version": "1.81ubuntu3", + "arch": "amd64" + }, + "overlayroot": { + "version": "0.48", + "arch": "all" + }, + "packagekit": { + "version": "1.2.8-2", + "arch": "amd64" + }, + "packagekit-tools": { + "version": "1.2.8-2", + "arch": "amd64" + }, + "parted": { + "version": "3.6-3", + "arch": "amd64" + }, + "passwd": { + "version": "1:4.13+dfsg1-4ubuntu1", + "arch": "amd64" + }, + "pastebinit": { + "version": "1.6.2-1", + "arch": "all" + }, + "patch": { + "version": "2.7.6-7build2", + "arch": "amd64" + }, + "pci.ids": { + "version": "0.0~2024.02.02-1", + "arch": "all" + }, + "pciutils": { + "version": "1:3.10.0-2", + "arch": "amd64" + }, + "perl": { + "version": "5.38.2-3", + "arch": "amd64" + }, + "perl-base": { + "version": "5.38.2-3", + "arch": "amd64" + }, + "perl-modules-5.38": { + "version": "5.38.2-3", + "arch": "all" + }, + "pinentry-curses": { + "version": "1.2.1-3ubuntu1", + "arch": "amd64" + }, + "plymouth": { + "version": "24.004.60-1ubuntu3", + "arch": "amd64" + }, + "plymouth-theme-ubuntu-text": { + "version": "24.004.60-1ubuntu3", + "arch": "amd64" + }, + "polkitd": { + "version": "124-1", + "arch": "amd64" + }, + "pollinate": { + "version": "4.33-3.1ubuntu1", + "arch": "all" + }, + "powermgmt-base": { + "version": "1.37", + "arch": "all" + }, + "procps": { + "version": "2:4.0.4-4ubuntu1", + "arch": "amd64" + }, + "psmisc": { + "version": "23.6-2", + "arch": "amd64" + }, + "publicsuffix": { + "version": "20231001.0357-0.1", + "arch": "all" + }, + "python-apt-common": { + "version": "2.7.6", + "arch": "all" + }, + "python-babel-localedata": { + "version": "2.10.3-3build1", + "arch": "all" + }, + "python3": { + "version": "3.12.1-0ubuntu2", + "arch": "amd64" + }, + "python3-apport": { + "version": "2.28.0-0ubuntu1", + "arch": "all" + }, + "python3-apt": { + "version": "2.7.6", + "arch": "amd64" + }, + "python3-attr": { + "version": "23.2.0-2", + "arch": "all" + }, + "python3-automat": { + "version": "22.10.0-2", + "arch": "all" + }, + "python3-babel": { + "version": "2.10.3-3build1", + "arch": "all" + }, + "python3-bcrypt": { + "version": "3.2.2-1", + "arch": "amd64" + }, + "python3-blinker": { + "version": "1.7.0-1", + "arch": "all" + }, + "python3-certifi": { + "version": "2023.11.17-1", + "arch": "all" + }, + "python3-cffi-backend": { + "version": "1.16.0-2", + "arch": "amd64" + }, + "python3-chardet": { + "version": "5.2.0+dfsg-1", + "arch": "all" + }, + "python3-click": { + "version": "8.1.6-1", + "arch": "all" + }, + "python3-colorama": { + "version": "0.4.6-4", + "arch": "all" + }, + "python3-commandnotfound": { + "version": "23.04.0", + "arch": "all" + }, + "python3-configobj": { + "version": "5.0.8-3", + "arch": "all" + }, + "python3-constantly": { + "version": "23.10.4-1", + "arch": "all" + }, + "python3-cryptography": { + "version": "41.0.7-3", + "arch": "amd64" + }, + "python3-dbus": { + "version": "1.3.2-5build1", + "arch": "amd64" + }, + "python3-debconf": { + "version": "1.5.86", + "arch": "all" + }, + "python3-debian": { + "version": "0.1.49ubuntu2", + "arch": "all" + }, + "python3-distro": { + "version": "1.9.0-1", + "arch": "all" + }, + "python3-distro-info": { + "version": "1.7", + "arch": "all" + }, + "python3-distupgrade": { + "version": "1:24.04.7", + "arch": "all" + }, + "python3-distutils": { + "version": "3.11.5-1", + "arch": "all" + }, + "python3-gdbm": { + "version": "3.11.5-1", + "arch": "amd64" + }, + "python3-gi": { + "version": "3.47.0-3", + "arch": "amd64" + }, + "python3-hamcrest": { + "version": "2.1.0-1", + "arch": "all" + }, + "python3-httplib2": { + "version": "0.20.4-3", + "arch": "all" + }, + "python3-hyperlink": { + "version": "21.0.0-5", + "arch": "all" + }, + "python3-idna": { + "version": "3.6-2", + "arch": "all" + }, + "python3-incremental": { + "version": "22.10.0-1", + "arch": "all" + }, + "python3-jinja2": { + "version": "3.1.2-1ubuntu1", + "arch": "all" + }, + "python3-json-pointer": { + "version": "2.0-0ubuntu1", + "arch": "all" + }, + "python3-jsonpatch": { + "version": "1.32-3", + "arch": "all" + }, + "python3-jsonschema": { + "version": "4.10.3-2ubuntu1", + "arch": "all" + }, + "python3-jwt": { + "version": "2.7.0-1", + "arch": "all" + }, + "python3-launchpadlib": { + "version": "1.11.0-6", + "arch": "all" + }, + "python3-lazr.restfulclient": { + "version": "0.14.6-1", + "arch": "all" + }, + "python3-lazr.uri": { + "version": "1.0.6-3", + "arch": "all" + }, + "python3-lib2to3": { + "version": "3.11.5-1", + "arch": "all" + }, + "python3-magic": { + "version": "2:0.4.27-2", + "arch": "all" + }, + "python3-markdown-it": { + "version": "3.0.0-2", + "arch": "all" + }, + "python3-markupsafe": { + "version": "2.1.5-1", + "arch": "amd64" + }, + "python3-mdurl": { + "version": "0.1.2-1", + "arch": "all" + }, + "python3-minimal": { + "version": "3.12.1-0ubuntu2", + "arch": "amd64" + }, + "python3-netifaces": { + "version": "0.11.0-2build2", + "arch": "amd64" + }, + "python3-netplan": { + "version": "0.107.1-3", + "arch": "amd64" + }, + "python3-newt": { + "version": "0.52.24-2ubuntu1", + "arch": "amd64" + }, + "python3-oauthlib": { + "version": "3.2.2-1", + "arch": "all" + }, + "python3-openssl": { + "version": "23.2.0-1", + "arch": "all" + }, + "python3-pexpect": { + "version": "4.9-2", + "arch": "all" + }, + "python3-pkg-resources": { + "version": "68.1.2-2", + "arch": "all" + }, + "python3-problem-report": { + "version": "2.28.0-0ubuntu1", + "arch": "all" + }, + "python3-ptyprocess": { + "version": "0.7.0-5", + "arch": "all" + }, + "python3-pyasn1": { + "version": "0.4.8-4", + "arch": "all" + }, + "python3-pyasn1-modules": { + "version": "0.2.8-1", + "arch": "all" + }, + "python3-pygments": { + "version": "2.17.2+dfsg-1", + "arch": "all" + }, + "python3-pyparsing": { + "version": "3.1.1-1", + "arch": "all" + }, + "python3-pyrsistent": { + "version": "0.20.0-1", + "arch": "amd64" + }, + "python3-requests": { + "version": "2.31.0+dfsg-1ubuntu1", + "arch": "all" + }, + "python3-rich": { + "version": "13.7.1-1", + "arch": "all" + }, + "python3-serial": { + "version": "3.5-2", + "arch": "all" + }, + "python3-service-identity": { + "version": "24.1.0-1", + "arch": "all" + }, + "python3-setuptools": { + "version": "68.1.2-2", + "arch": "all" + }, + "python3-six": { + "version": "1.16.0-4", + "arch": "all" + }, + "python3-software-properties": { + "version": "0.99.42", + "arch": "all" + }, + "python3-systemd": { + "version": "235-1build3", + "arch": "amd64" + }, + "python3-twisted": { + "version": "23.10.0-2", + "arch": "all" + }, + "python3-tz": { + "version": "2024.1-2", + "arch": "all" + }, + "python3-update-manager": { + "version": "1:24.04.4", + "arch": "all" + }, + "python3-urllib3": { + "version": "2.0.7-1", + "arch": "all" + }, + "python3-wadllib": { + "version": "1.3.6-5", + "arch": "all" + }, + "python3-xkit": { + "version": "0.5.0ubuntu6", + "arch": "all" + }, + "python3-yaml": { + "version": "6.0.1-2", + "arch": "amd64" + }, + "python3-zope.interface": { + "version": "6.1-1", + "arch": "amd64" + }, + "python3.12": { + "version": "3.12.2-1", + "arch": "amd64" + }, + "python3.12-minimal": { + "version": "3.12.2-1", + "arch": "amd64" + }, + "rake": { + "version": "13.0.6-3", + "arch": "all" + }, + "readline-common": { + "version": "8.2-3", + "arch": "all" + }, + "rsync": { + "version": "3.2.7-1", + "arch": "amd64" + }, + "rsyslog": { + "version": "8.2312.0-3ubuntu3", + "arch": "amd64" + }, + "ruby": { + "version": "1:3.1+1", + "arch": "amd64" + }, + "ruby-addressable": { + "version": "2.8.5-1", + "arch": "all" + }, + "ruby-bcrypt-pbkdf": { + "version": "1.1.0-2build3", + "arch": "amd64" + }, + "ruby-chef-config": { + "version": "16.12.3-2", + "arch": "all" + }, + "ruby-chef-utils": { + "version": "16.12.3-2", + "arch": "all" + }, + "ruby-ed25519": { + "version": "1.3.0+ds-1build3", + "arch": "amd64" + }, + "ruby-fauxhai": { + "version": "7.5.0-1", + "arch": "all" + }, + "ruby-ffi": { + "version": "1.16.3+dfsg-1build1", + "arch": "amd64" + }, + "ruby-ffi-yajl": { + "version": "2.3.1-3build5", + "arch": "amd64" + }, + "ruby-fuzzyurl": { + "version": "0.8.0-1.1", + "arch": "all" + }, + "ruby-ipaddress": { + "version": "0.8.3-3", + "arch": "all" + }, + "ruby-mixlib-cli": { + "version": "2.1.6-1", + "arch": "all" + }, + "ruby-mixlib-config": { + "version": "3.0.6-1", + "arch": "all" + }, + "ruby-mixlib-log": { + "version": "3.0.8-1", + "arch": "all" + }, + "ruby-mixlib-shellout": { + "version": "3.2.5-2", + "arch": "all" + }, + "ruby-net-scp": { + "version": "4.0.0-1", + "arch": "all" + }, + "ruby-net-ssh": { + "version": "1:7.2.1-1", + "arch": "all" + }, + "ruby-net-telnet": { + "version": "0.2.0-1", + "arch": "all" + }, + "ruby-plist": { + "version": "3.7.0-1", + "arch": "all" + }, + "ruby-public-suffix": { + "version": "4.0.6+ds-2", + "arch": "all" + }, + "ruby-rubygems": { + "version": "3.4.20-1", + "arch": "all" + }, + "ruby-sdbm": { + "version": "1.0.0-5build3", + "arch": "amd64" + }, + "ruby-tomlrb": { + "version": "1.3.0-2", + "arch": "all" + }, + "ruby-train-core": { + "version": "3.2.28-3", + "arch": "all" + }, + "ruby-webrick": { + "version": "1.8.1-1", + "arch": "all" + }, + "ruby-xmlrpc": { + "version": "0.3.2-2", + "arch": "all" + }, + "ruby3.1": { + "version": "3.1.2-7ubuntu4", + "arch": "amd64" + }, + "rubygems-integration": { + "version": "1.18", + "arch": "all" + }, + "run-one": { + "version": "1.17-0ubuntu2", + "arch": "all" + }, + "sbsigntool": { + "version": "0.9.4-3.1ubuntu4", + "arch": "amd64" + }, + "screen": { + "version": "4.9.1-1", + "arch": "amd64" + }, + "secureboot-db": { + "version": "1.9", + "arch": "amd64" + }, + "sed": { + "version": "4.9-2", + "arch": "amd64" + }, + "sensible-utils": { + "version": "0.0.22", + "arch": "all" + }, + "sg3-utils": { + "version": "1.46-3ubuntu3", + "arch": "amd64" + }, + "sg3-utils-udev": { + "version": "1.46-3ubuntu3", + "arch": "all" + }, + "sgml-base": { + "version": "1.31", + "arch": "all" + }, + "shared-mime-info": { + "version": "2.4-1", + "arch": "amd64" + }, + "snapd": { + "version": "2.60.4+23.10", + "arch": "amd64" + }, + "software-properties-common": { + "version": "0.99.42", + "arch": "all" + }, + "sosreport": { + "version": "4.5.6-0ubuntu2", + "arch": "amd64" + }, + "squashfs-tools": { + "version": "1:4.6.1-1", + "arch": "amd64" + }, + "ssh-import-id": { + "version": "5.11-0ubuntu2", + "arch": "all" + }, + "strace": { + "version": "6.6-0ubuntu1", + "arch": "amd64" + }, + "sudo": { + "version": "1.9.15p5-3ubuntu1", + "arch": "amd64" + }, + "sysstat": { + "version": "12.6.1-1ubuntu1", + "arch": "amd64" + }, + "systemd": { + "version": "255.2-3ubuntu2", + "arch": "amd64" + }, + "systemd-dev": { + "version": "255.2-3ubuntu2", + "arch": "all" + }, + "systemd-hwe-hwdb": { + "version": "255.1.3", + "arch": "all" + }, + "systemd-resolved": { + "version": "255.2-3ubuntu2", + "arch": "amd64" + }, + "systemd-sysv": { + "version": "255.2-3ubuntu2", + "arch": "amd64" + }, + "systemd-timesyncd": { + "version": "255.2-3ubuntu2", + "arch": "amd64" + }, + "sysvinit-utils": { + "version": "3.08-6ubuntu2", + "arch": "amd64" + }, + "tar": { + "version": "1.35+dfsg-3", + "arch": "amd64" + }, + "tcl": { + "version": "8.6.13", + "arch": "amd64" + }, + "tcl8.6": { + "version": "8.6.13+dfsg-2", + "arch": "amd64" + }, + "tcpdump": { + "version": "4.99.4-3ubuntu1", + "arch": "amd64" + }, + "telnet": { + "version": "0.17+2.5-3ubuntu1", + "arch": "all" + }, + "thermald": { + "version": "2.5.6-2", + "arch": "amd64" + }, + "thin-provisioning-tools": { + "version": "0.9.0-2ubuntu2", + "arch": "amd64" + }, + "time": { + "version": "1.9-0.2", + "arch": "amd64" + }, + "tmux": { + "version": "3.4-1", + "arch": "amd64" + }, + "tnftp": { + "version": "20230507-2", + "arch": "amd64" + }, + "tpm-udev": { + "version": "0.6ubuntu1", + "arch": "all" + }, + "tzdata": { + "version": "2024a-1ubuntu1", + "arch": "all" + }, + "ubuntu-advantage-tools": { + "version": "31.1", + "arch": "all" + }, + "ubuntu-drivers-common": { + "version": "1:0.9.7.6", + "arch": "amd64" + }, + "ubuntu-keyring": { + "version": "2023.11.28.1", + "arch": "all" + }, + "ubuntu-minimal": { + "version": "1.536build1", + "arch": "amd64" + }, + "ubuntu-pro-client": { + "version": "31.1", + "arch": "amd64" + }, + "ubuntu-pro-client-l10n": { + "version": "31.1", + "arch": "amd64" + }, + "ubuntu-release-upgrader-core": { + "version": "1:24.04.7", + "arch": "all" + }, + "ubuntu-server": { + "version": "1.536build1", + "arch": "amd64" + }, + "ubuntu-server-minimal": { + "version": "1.536build1", + "arch": "amd64" + }, + "ubuntu-standard": { + "version": "1.536build1", + "arch": "amd64" + }, + "ucf": { + "version": "3.0043+nmu1", + "arch": "all" + }, + "udev": { + "version": "255.2-3ubuntu2", + "arch": "amd64" + }, + "udisks2": { + "version": "2.10.1-1ubuntu2", + "arch": "amd64" + }, + "ufw": { + "version": "0.36.2-5", + "arch": "all" + }, + "unattended-upgrades": { + "version": "2.9.1+nmu4ubuntu1", + "arch": "all" + }, + "unzip": { + "version": "6.0-28ubuntu3", + "arch": "amd64" + }, + "update-manager-core": { + "version": "1:24.04.4", + "arch": "all" + }, + "update-notifier-common": { + "version": "3.192.67", + "arch": "all" + }, + "upower": { + "version": "1.90.2-8", + "arch": "amd64" + }, + "usb-modeswitch": { + "version": "2.6.1-3ubuntu2", + "arch": "amd64" + }, + "usb-modeswitch-data": { + "version": "20191128-6", + "arch": "all" + }, + "usb.ids": { + "version": "2024.01.30-1", + "arch": "all" + }, + "usbmuxd": { + "version": "1.1.1-3ubuntu1", + "arch": "amd64" + }, + "usbutils": { + "version": "1:017-3", + "arch": "amd64" + }, + "util-linux": { + "version": "2.39.3-6ubuntu2", + "arch": "amd64" + }, + "uuid-runtime": { + "version": "2.39.3-6ubuntu2", + "arch": "amd64" + }, + "vim": { + "version": "2:9.1.0016-1ubuntu2", + "arch": "amd64" + }, + "vim-common": { + "version": "2:9.1.0016-1ubuntu2", + "arch": "all" + }, + "vim-runtime": { + "version": "2:9.1.0016-1ubuntu2", + "arch": "all" + }, + "vim-tiny": { + "version": "2:9.1.0016-1ubuntu2", + "arch": "amd64" + }, + "wget": { + "version": "1.21.4-1ubuntu1", + "arch": "amd64" + }, + "whiptail": { + "version": "0.52.24-2ubuntu1", + "arch": "amd64" + }, + "wireless-regdb": { + "version": "2022.06.06-0ubuntu2", + "arch": "all" + }, + "xauth": { + "version": "1:1.1.2-1", + "arch": "amd64" + }, + "xdg-user-dirs": { + "version": "0.18-1", + "arch": "amd64" + }, + "xfsprogs": { + "version": "6.6.0-1ubuntu1", + "arch": "amd64" + }, + "xkb-data": { + "version": "2.41-2", + "arch": "all" + }, + "xml-core": { + "version": "0.19", + "arch": "all" + }, + "xxd": { + "version": "2:9.1.0016-1ubuntu2", + "arch": "amd64" + }, + "xz-utils": { + "version": "5.4.5-0.3", + "arch": "amd64" + }, + "zerofree": { + "version": "1.1.1-1build3", + "arch": "amd64" + }, + "zip": { + "version": "3.0-13", + "arch": "amd64" + }, + "zlib1g": { + "version": "1:1.3.dfsg-3ubuntu1", + "arch": "amd64" + }, + "zstd": { + "version": "1.5.5+dfsg2-2", + "arch": "amd64" + } + }, + "platform": "ubuntu", + "platform_family": "debian", + "platform_version": "24.04", + "root_group": "root", + "shard_seed": 135208802, + "shells": [ + "/bin/sh", + "/usr/bin/sh", + "/bin/bash", + "/usr/bin/bash", + "/bin/rbash", + "/usr/bin/rbash", + "/usr/bin/dash", + "/usr/bin/screen", + "/usr/bin/tmux" + ], + "time": { + "timezone": "GMT" + }, + "uptime": "30 days 15 hours 07 minutes 30 seconds", + "uptime_seconds": 2646450, + "virtualization": { + "systems": { + } + } +} diff --git a/lib/fauxhai/platforms/windows/2022.json b/lib/fauxhai/platforms/windows/2022.json new file mode 100644 index 00000000..debb1fb5 --- /dev/null +++ b/lib/fauxhai/platforms/windows/2022.json @@ -0,0 +1,743 @@ +{ + "chef_packages": { + "chef": { + "version": "17.10.3", + "chef_root": "c:/opscode/chef/embedded/lib/ruby/gems/3.0.0/gems/chef-17.10.3-universal-mingw32/lib", + "chef_effortless": null + }, + "ohai": { + "version": "17.9.0", + "ohai_root": "c:/opscode/chef/embedded/lib/ruby/gems/3.0.0/gems/ohai-17.9.0/lib/ohai" + } + }, + "command": { + }, + "counters": { + "network": { + "interfaces": { + "lo": { + "tx": { + "queuelen": "1", + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "carrier": 0, + "collisions": 0 + }, + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0 + } + }, + "0xe": { + "rx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "frame": 0, + "compressed": 0, + "multicast": 0 + }, + "tx": { + "bytes": 0, + "packets": 0, + "errors": 0, + "drop": 0, + "overrun": 0, + "collisions": 0, + "carrier": 0, + "compressed": 0 + } + } + } + } + }, + "cpu": { + "real": 1, + "total": 1, + "cores": 1 + }, + "current_user": "fauxhai", + "dmi": { + "chassis": { + "all_records": [ + { + "AudibleAlarm": null, + "BreachDescription": null, + "CableManagementStrategy": null, + "Caption": "System Enclosure", + "ChassisTypes": [ + 1 + ], + "CreationClassName": "Win32_SystemEnclosure", + "CurrentRequiredOrProduced": null, + "Depth": null, + "Description": "System Enclosure", + "HeatGeneration": null, + "Height": null, + "HotSwappable": null, + "InstallDate": null, + "LockPresent": false, + "Manufacturer": "Amazon EC2", + "Model": null, + "Name": "System Enclosure", + "NumberOfPowerCords": null, + "OtherIdentifyingInfo": null, + "PartNumber": null, + "PoweredOn": null, + "Removable": null, + "Replaceable": null, + "SecurityBreach": null, + "SecurityStatus": 3, + "SerialNumber": "", + "ServiceDescriptions": null, + "ServicePhilosophy": null, + "SKU": null, + "SMBIOSAssetTag": "Amazon EC2", + "Status": null, + "Tag": "System Enclosure 0", + "TypeDescriptions": null, + "Version": "", + "VisibleAlarm": null, + "Weight": null, + "Width": null + } + ], + "description": "System Enclosure", + "manufacturer": "Amazon EC2", + "serial_number": "", + "smbios_asset_tag": "Amazon EC2", + "tag": "System Enclosure 0", + "version": "", + "family": "System Enclosure" + }, + "processor": { + "all_records": [ + { + "AddressWidth": 64, + "Architecture": 9, + "AssetTag": "", + "Availability": 3, + "Caption": "Intel64 Family 6 Model 85 Stepping 7", + "Characteristics": 60, + "ConfigManagerErrorCode": null, + "ConfigManagerUserConfig": null, + "CpuStatus": 1, + "CreationClassName": "Win32_Processor", + "CurrentClockSpeed": 2500, + "CurrentVoltage": 16, + "DataWidth": 64, + "Description": "Intel64 Family 6 Model 85 Stepping 7", + "DeviceID": "CPU0", + "ErrorCleared": null, + "ErrorDescription": null, + "ExtClock": 100, + "Family": 179, + "InstallDate": null, + "L2CacheSize": 24576, + "L2CacheSpeed": null, + "L3CacheSize": 36608, + "L3CacheSpeed": 0, + "LastErrorCode": null, + "Level": 6, + "LoadPercentage": 1, + "Manufacturer": "GenuineIntel", + "MaxClockSpeed": 2500, + "Name": "Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz", + "NumberOfCores": 1, + "NumberOfEnabledCore": 1, + "NumberOfLogicalProcessors": 2, + "OtherFamilyDescription": null, + "PartNumber": "", + "PNPDeviceID": null, + "PowerManagementCapabilities": null, + "PowerManagementSupported": false, + "ProcessorId": "BFEBFBFF00050657", + "ProcessorType": 3, + "Revision": 21767, + "Role": "CPU", + "SecondLevelAddressTranslationExtensions": false, + "SerialNumber": "", + "SocketDesignation": "CPU 0", + "Status": "OK", + "StatusInfo": 3, + "Stepping": null, + "SystemCreationClassName": "Win32_ComputerSystem", + "SystemName": "TESTCLUSTERWD01", + "ThreadCount": 2, + "UniqueId": null, + "UpgradeMethod": 54, + "Version": "", + "VirtualizationFirmwareEnabled": false, + "VMMonitorModeExtensions": false, + "VoltageCaps": null + } + ], + "asset_tag": "", + "description": "Intel64 Family 6 Model 85 Stepping 7", + "device_id": "CPU0", + "manufacturer": "GenuineIntel", + "part_number": "", + "processor_id": "BFEBFBFF00050657", + "role": "CPU", + "serial_number": "", + "socket_designation": "CPU 0", + "status": "OK", + "system_name": "TESTCLUSTERWD01", + "version": "", + "family": "Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz" + }, + "bios": { + "all_records": [ + { + "BiosCharacteristics": [ + 7, + 19, + 32, + 44 + ], + "BIOSVersion": [ + "AMAZON - 1" + ], + "BuildNumber": null, + "Caption": "Default System BIOS", + "CodeSet": null, + "CurrentLanguage": null, + "Description": "Default System BIOS", + "EmbeddedControllerMajorVersion": 255, + "EmbeddedControllerMinorVersion": 255, + "IdentificationCode": null, + "InstallableLanguages": null, + "InstallDate": null, + "LanguageEdition": null, + "ListOfLanguages": null, + "Manufacturer": "Amazon EC2", + "Name": "Default System BIOS", + "OtherTargetOS": null, + "PrimaryBIOS": true, + "ReleaseDate": "20171016000000.000000+000", + "SerialNumber": "ec205780-ea1b-88c7-41cf-63b2e43cf3c4", + "SMBIOSBIOSVersion": "1.0", + "SMBIOSMajorVersion": 2, + "SMBIOSMinorVersion": 7, + "SMBIOSPresent": true, + "SoftwareElementID": "Default System BIOS", + "SoftwareElementState": 3, + "Status": "OK", + "SystemBiosMajorVersion": 1, + "SystemBiosMinorVersion": 0, + "TargetOperatingSystem": 0, + "Version": "AMAZON - 1" + } + ], + "description": "Default System BIOS", + "manufacturer": "Amazon EC2", + "release_date": "20171016000000.000000+000", + "serial_number": "ec205780-ea1b-88c7-41cf-63b2e43cf3c4", + "smbiosbios_version": "1.0", + "software_element_id": "Default System BIOS", + "status": "OK", + "version": "AMAZON - 1", + "family": "Default System BIOS" + }, + "system": { + "all_records": [ + { + "Caption": "Computer System Product", + "Description": "Computer System Product", + "IdentifyingNumber": "ec205780-ea1b-88c7-41cf-63b2e43cf3c4", + "Name": "t3.medium", + "SKUNumber": null, + "UUID": "EC205780-EA1B-88C7-41CF-63B2E43CF3C4", + "Vendor": "Amazon EC2", + "Version": "" + } + ], + "description": "Computer System Product", + "uuid": "EC205780-EA1B-88C7-41CF-63B2E43CF3C4", + "version": "", + "manufacturer": "Amazon EC2", + "serial_number": "ec205780-ea1b-88c7-41cf-63b2e43cf3c4", + "family": "t3.medium" + }, + "base_board": { + "all_records": [ + { + "Caption": "Base Board", + "ConfigOptions": null, + "CreationClassName": "Win32_BaseBoard", + "Depth": null, + "Description": "Base Board", + "Height": null, + "HostingBoard": false, + "HotSwappable": false, + "InstallDate": null, + "Manufacturer": "Amazon EC2", + "Model": null, + "Name": "Base Board", + "OtherIdentifyingInfo": null, + "PartNumber": null, + "PoweredOn": true, + "Product": null, + "Removable": false, + "Replaceable": false, + "RequirementsDescription": null, + "RequiresDaughterBoard": false, + "SerialNumber": null, + "SKU": null, + "SlotLayout": null, + "SpecialRequirements": null, + "Status": "OK", + "Tag": "Base Board", + "Version": null, + "Weight": null, + "Width": null + } + ], + "description": "Base Board", + "manufacturer": "Amazon EC2", + "status": "OK", + "tag": "Base Board", + "family": "Base Board" + } + }, + "domain": "local", + "filesystem": { + "by_device": { + "": { + "kb_size": 64422408, + "kb_available": 41364717, + "kb_used": 23057691, + "percent_used": 35, + "fs_type": "ntfs", + "drive_type": 3, + "drive_type_string": "local", + "drive_type_human": "Local Fixed Disk", + "volume_name": "", + "mounts": [ + "C:" + ] + } + }, + "by_mountpoint": { + "C:": { + "kb_size": 64422408, + "kb_available": 41364717, + "kb_used": 23057691, + "percent_used": 35, + "fs_type": "ntfs", + "drive_type": 3, + "drive_type_string": "local", + "drive_type_human": "Local Fixed Disk", + "volume_name": "", + "devices": [ + "" + ] + } + }, + "by_pair": { + ",C:": { + "kb_size": 64422408, + "kb_available": 41364717, + "kb_used": 23057691, + "percent_used": 35, + "mount": "C:", + "fs_type": "ntfs", + "drive_type": 3, + "drive_type_string": "local", + "drive_type_human": "Local Fixed Disk", + "volume_name": "", + "device": "" + } + } + }, + "fips": { + "kernel": { + "enabled": true + } + }, + "fqdn": "fauxhai.local", + "hostname": "Fauxhai", + "idle": "30 days 15 hours 07 minutes 30 seconds", + "idletime_seconds": 2646450, + "ipaddress": "10.0.0.2", + "kernel": { + "os_info": { + "boot_device": "\\Device\\HarddiskVolume1", + "build_number": "20348", + "build_type": "Multiprocessor Free", + "caption": "Microsoft Windows Server 2022 Datacenter", + "code_set": "1252", + "country_code": "1", + "csd_version": null, + "cs_name": "TESTCLUSTERWD01", + "current_time_zone": -300, + "data_execution_prevention_32_bit_applications": true, + "data_execution_prevention_available": true, + "data_execution_prevention_drivers": true, + "data_execution_prevention_support_policy": 3, + "debug": false, + "description": "", + "distributed": false, + "encryption_level": 256, + "foreground_application_boost": 2, + "install_date": "20231108163413.000000-300", + "large_system_cache": null, + "last_boot_up_time": "20231108183708.500000-300", + "local_date_time": "20231114130525.982000-300", + "locale": "0409", + "manufacturer": "Microsoft Corporation", + "max_number_of_processes": -1, + "max_process_memory_size": "137438953344", + "mui_languages": [ + "en-US" + ], + "name": "Microsoft Windows Server 2022 Datacenter|C:\\Windows|\\Device\\Harddisk0\\Partition1", + "number_of_licensed_users": 0, + "number_of_processes": 135, + "number_of_users": 7, + "operating_system_sku": 8, + "organization": "Amazon.com", + "os_architecture": "64-bit", + "os_language": 1033, + "os_product_suite": 400, + "os_type": 18, + "other_type_description": null, + "pae_enabled": null, + "plus_product_id": null, + "plus_version_number": null, + "portable_operating_system": false, + "primary": true, + "product_type": 3, + "registered_user": "EC2", + "serial_number": "00454-60000-00001-AA411", + "service_pack_major_version": 0, + "service_pack_minor_version": 0, + "size_stored_in_paging_files": "1441792", + "status": "OK", + "suite_mask": 400, + "system_device": "\\Device\\HarddiskVolume1", + "system_directory": "C:\\Windows\\system32", + "system_drive": "C:", + "total_visible_memory_size": "4132380", + "version": "10.0.20348", + "windows_directory": "C:\\Windows" + }, + "name": "Microsoft Windows Server 2022 Datacenter", + "release": "10.0.20348", + "version": "10.0.20348 Build 20348", + "os": "WINNT", + "product_type": "Server", + "server_core": false, + "cs_info": { + "admin_password_status": 3, + "automatic_managed_pagefile": true, + "automatic_reset_boot_option": true, + "automatic_reset_capability": true, + "boot_option_on_limit": null, + "boot_option_on_watch_dog": null, + "boot_rom_supported": true, + "boot_status": null, + "bootup_state": "Normal boot", + "caption": "TESTCLUSTERWD01", + "chassis_bootup_state": 3, + "chassis_sku_number": null, + "current_time_zone": -300, + "daylight_in_effect": false, + "description": "AT/AT COMPATIBLE", + "dns_host_name": "testclusterwd01", + "domain": "mtvn.ad.viacom.com", + "domain_role": 3, + "enable_daylight_savings_time": true, + "front_panel_reset_status": 3, + "hypervisor_present": true, + "infrared_supported": false, + "initial_load_info": null, + "install_date": null, + "keyboard_password_status": 3, + "last_load_info": null, + "manufacturer": "Amazon EC2", + "model": "t3.medium", + "name": "TESTCLUSTERWD01", + "name_format": null, + "network_server_mode_enabled": true, + "number_of_logical_processors": 2, + "number_of_processors": 1, + "oem_string_array": null, + "part_of_domain": true, + "pause_after_reset": "-1", + "pc_system_type": 1, + "pc_system_type_ex": 1, + "power_management_capabilities": null, + "power_management_supported": null, + "power_on_password_status": 3, + "power_state": 0, + "power_supply_state": 3, + "primary_owner_contact": null, + "primary_owner_name": "EC2", + "reset_capability": 1, + "reset_count": -1, + "reset_limit": -1, + "roles": [ + "LM_Workstation", + "LM_Server", + "NT", + "Server_NT" + ], + "status": "OK", + "support_contact_description": null, + "system_family": null, + "system_sku_number": null, + "system_startup_delay": null, + "system_startup_options": null, + "system_startup_setting": null, + "system_type": "x64-based PC", + "thermal_state": 3, + "total_physical_memory": "4231557120", + "user_name": null, + "wake_up_type": 6, + "workgroup": null + }, + "machine": "x86_64", + "system_type": "Desktop" + }, + "keys": { + "ssh": { + "host_dsa_public": "ssh-dss AAAAB3NzaC1kc3MAAACBAJFo9BLAw4WKEs5hgipk5m423FzBsDXCZSMcC9ca/om/1VYzMqImixGe3uICDzNFUWxFoLJTQAOccyzo6MXZiQqwWJDLFi5qOSr6w2XcMyE+zd4wOyMoDiVM5fizmG8K3FzrqvGjwBcHcBdOQnavSijoj38DN25J9zhrid5BY4WlAAAAFQDxXrCyG52XCzn3FV4ej38wJBkomQAAAIBovGPJ4mP2P6BK8lHl0PPbktwQbWlpJ13oz6REJFDVcUi7vV26bX/BjQX+ohzZQzljdz1SpUbPc/8nuA4darYkVh91eBi307EN8IdxRHj2eBgp/ZG4yshIebG3WHrwJD/xUjjZ1MRfyDT1ermVi4LvjjPgWDxLZnPpMaR6S1nzgQAAAIEAj0Vd6DCWslvlsZ8+N53HWsqPi3gnx35JoLPz9Z2epkKIKqmEHav+93G3hdfztVa4I4t3phoPniQchYryF5+RNg8hqxKzjNtrIqUYCeuf2NJrksNsH7OZygPHZpqt4kTuwAGZxjxEGfAI0y8DhkU2ntp2LnzRnWH106BQBCmcXwo= fauxhai.local", + "host_rsa_public": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCtLCeqtqr/HbnORckw1ukdLhpfGoOPFi5/esKEokzTqq1gsgQ2V8emmyjfq1i6XXfRtSBxkdlHv/GWdP5wBTuE2G85MzBkVSQPvmwQN8lX/JMPEEtKXkeOo0o92/PiSmvY4eRsdF0mw40Uvg7jtE3f3fxj497kzh5fKtkrHnF4x9gXCbVdr3FqXJfggR5IJwAxToerbK7x/uRS+7YuZI9Pip3tt14nv9ezwXcuGb/tvjWOZINiFl8izVIFKi7sxfTX09p4NgamxRS7TD2Yd0jT8nEoF9UZTsgXcJ1kDSx7N7NxFfNfP6rCdOGRRz4gUhXtsUjG/XkxPeCwZ7A9VnOD fauxhai.local" + } + }, + "languages": { + "ruby": { + "platform": "x64-mingw32", + "version": "3.0.3", + "release_date": "2021-11-24", + "target": "x86_64-w64-mingw32", + "target_cpu": "x64", + "target_vendor": "w64", + "target_os": "mingw32", + "host": "x86_64-w64-mingw32", + "host_cpu": "x64", + "host_os": "mingw32", + "host_vendor": "w64", + "bin_dir": "/usr/local/bin", + "ruby_bin": "/usr/local/bin/ruby", + "gem_bin": "/usr/local/bin/gem", + "gems_dir": "/usr/local/gems" + }, + "powershell": { + "version": "5.1.20348.2031", + "ws_man_stack_version": "3.0", + "serialization_version": "1.1.0.1", + "clr_version": "4.0.30319.42000", + "build_version": "10.0.20348.2031", + "compatible_versions": [ + "1.0", + "2.0", + "3.0", + "4.0", + "5.0", + "5.1.20348.2031" + ], + "remoting_protocol_version": "2.3" + } + }, + "macaddress": "11:11:11:11:11:11", + "machinename": "Fauxhai", + "memory": { + "total": "1048576kB" + }, + "network": { + "interfaces": { + "0xe": { + "configuration": { + "caption": "[00000012] Ethernet Adapter", + "database_path": "%SystemRoot%\\System32\\drivers\\etc", + "default_ip_gateway": [ + "default_gateway" + ], + "description": "Ethernet Adapter", + "dhcp_enabled": false, + "dns_domain_suffix_search_order": [ + + ], + "dns_enabled_for_wins_resolution": false, + "dns_host_name": "Fauxhai", + "domain_dns_registration_enabled": false, + "full_dns_registration_enabled": true, + "gateway_cost_metric": [ + 0 + ], + "index": 12, + "interface_index": 14, + "ip_address": [ + "10.0.0.2" + ], + "ip_connection_metric": 5, + "ip_enabled": true, + "ip_filter_security_enabled": false, + "ip_sec_permit_ip_protocols": [ + + ], + "ip_sec_permit_tcp_ports": [ + + ], + "ip_sec_permit_udp_ports": [ + + ], + "ip_subnet": [ + "255.255.255.0", + "64" + ], + "mac_address": "11:11:11:11:11:11", + "service_name": "netkvm", + "setting_id": "{00000000-0000-0000-0000-000000000000}", + "tcpip_netbios_options": 0, + "tcp_window_size": 64240, + "wins_enable_lm_hosts_lookup": true, + "wins_scope_id": "" + }, + "instance": { + "adapter_type": "Ethernet 802.3", + "adapter_type_id": 0, + "availability": 3, + "caption": "[00000012] Ethernet Adapter", + "config_manager_error_code": 0, + "config_manager_user_config": false, + "creation_class_name": "Win32_NetworkAdapter", + "description": "Ethernet Adapter", + "device_id": "12", + "guid": "{00000000-0000-0000-0000-000000000000}", + "index": 12, + "installed": true, + "interface_index": 14, + "mac_address": "11:11:11:11:11:11", + "manufacturer": "", + "max_number_controlled": 0, + "name": "Ethernet Adapter", + "net_connection_id": "Ethernet", + "net_connection_status": 2, + "net_enabled": true, + "physical_adapter": true, + "pnp_device_id": "PCI\\VEN_0000&DEV_0000&SUBSYS_000000000&REV_00\\0&0000000000&00", + "power_management_supported": false, + "product_name": "Ethernet Adapter", + "service_name": "netkvm", + "speed": "10000000000", + "system_creation_class_name": "Win32_ComputerSystem", + "system_name": "Fauxhai", + "time_of_last_reset": "20000101000001.000000+000" + }, + "counters": { + }, + "addresses": { + "10.0.0.2": { + "prefixlen": "24", + "netmask": "255.255.255.0", + "broadcast": "10.0.0.255", + "family": "inet" + }, + "11:11:11:11:11:11": { + "family": "lladdr" + } + }, + "type": "Ethernet 802.3", + "arp": { + "10.0.0.1": "fe:ff:ff:ff:ff:ff" + }, + "encapsulation": "Ethernet" + } + }, + "default_gateway": "10.0.0.1", + "default_interface": "0xe" + }, + "ohai_time": 1699985137.0182061, + "os": "windows", + "os_version": "10.0.20348", + "packages": { + "Amazon SSM Agent": { + "version": "3.2.1630.0", + "publisher": "Amazon Web Services" + }, + "New Relic Infrastructure Agent": { + "version": "1.40.0", + "publisher": "New Relic, Inc.", + "installdate": "20231108" + }, + "Chef Infra Client v17.10.3": { + "version": "17.10.3.1", + "publisher": "Chef Software, Inc.", + "installdate": "20231108" + }, + "Microsoft Visual C++ 2019 X64 Additional Runtime - 14.29.30139": { + "version": "14.29.30139", + "publisher": "Microsoft Corporation", + "installdate": "20220713" + }, + "AWS Command Line Interface v2": { + "version": "2.13.33.0", + "publisher": "Amazon Web Services", + "installdate": "20231108" + }, + "Microsoft Visual C++ 2019 X64 Minimum Runtime - 14.29.30139": { + "version": "14.29.30139", + "publisher": "Microsoft Corporation", + "installdate": "20220713" + }, + "aws-cfn-bootstrap": { + "version": "2.0.28", + "publisher": "Amazon Web Services" + }, + "Amazon EC2Launch": { + "version": "2.0.1643.0", + "publisher": "Amazon Web Services", + "installdate": "20231011" + }, + "AWS PV Drivers": { + "version": "8.4.3", + "publisher": "Amazon Web Services", + "installdate": "20230215" + }, + "Microsoft Edge Update": { + "version": "1.3.181.5" + }, + "Tanium Client 7.4.8.1042": { + "version": "7.4.8.1042", + "publisher": "Tanium Inc." + }, + "Microsoft Edge": { + "version": "119.0.2151.58", + "publisher": "Microsoft Corporation", + "installdate": "20231011" + }, + "Microsoft Visual C++ 2015-2019 Redistributable (x64) - 14.29.30139": { + "version": "14.29.30139.0", + "publisher": "Microsoft Corporation" + }, + "CrowdStrike Windows Sensor": { + "version": "7.01.17312.0", + "publisher": "CrowdStrike, Inc.", + "installdate": "20231108" + } + }, + "platform": "windows", + "platform_family": "windows", + "platform_version": "10.0.20348", + "root_group": "Administrators", + "shard_seed": 25827336, + "time": { + "timezone": "GMT" + }, + "uptime": "30 days 15 hours 07 minutes 30 seconds", + "uptime_seconds": 2646450, + "virtualization": { + "systems": { + } + } +} diff --git a/lib/fauxhai/runner/default.rb b/lib/fauxhai/runner/default.rb index f188bb90..08cd9a31 100644 --- a/lib/fauxhai/runner/default.rb +++ b/lib/fauxhai/runner/default.rb @@ -268,6 +268,7 @@ def whitelist_attributes lsb ohai_time os + os_release os_version packages platform diff --git a/lib/fauxhai/version.rb b/lib/fauxhai/version.rb index 0b67f84c..e600ac48 100644 --- a/lib/fauxhai/version.rb +++ b/lib/fauxhai/version.rb @@ -1,3 +1,3 @@ module Fauxhai - VERSION = "9.3.0".freeze + VERSION = "9.4.5".freeze end diff --git a/platforms.json b/platforms.json index 6ba79a0f..ac386ef8 100644 --- a/platforms.json +++ b/platforms.json @@ -13,6 +13,14 @@ "8": { "deprecated": false, "path": "lib/fauxhai/platforms/almalinux/8.json" + }, + "9": { + "deprecated": false, + "path": "lib/fauxhai/platforms/almalinux/9.json" + }, + "10": { + "deprecated": false, + "path": "lib/fauxhai/platforms/almalinux/10.json" } }, "amazon": { @@ -23,6 +31,10 @@ "2018.03": { "deprecated": true, "path": "lib/fauxhai/platforms/amazon/2018.03.json" + }, + "2023": { + "deprecated": false, + "path": "lib/fauxhai/platforms/amazon/2023.json" } }, "arch": { @@ -49,6 +61,16 @@ "path": "lib/fauxhai/platforms/centos/8.json" } }, + "centos-stream": { + "8": { + "deprecated": false, + "path": "lib/fauxhai/platforms/centos-stream/8.json" + }, + "9": { + "deprecated": false, + "path": "lib/fauxhai/platforms/centos-stream/9.json" + } + }, "clearos": { "7.4": { "deprecated": false, @@ -75,6 +97,10 @@ "11": { "deprecated": false, "path": "lib/fauxhai/platforms/debian/11.json" + }, + "12": { + "deprecated": false, + "path": "lib/fauxhai/platforms/debian/12.json" } }, "dragonfly4": { @@ -154,6 +180,10 @@ "deprecated": false, "path": "lib/fauxhai/platforms/oracle/6.10.json" }, + "7": { + "deprecated": false, + "path": "lib/fauxhai/platforms/oracle/7.json" + }, "7.5": { "deprecated": true, "path": "lib/fauxhai/platforms/oracle/7.5.json" @@ -161,6 +191,14 @@ "7.6": { "deprecated": false, "path": "lib/fauxhai/platforms/oracle/7.6.json" + }, + "8": { + "deprecated": false, + "path": "lib/fauxhai/platforms/oracle/8.json" + }, + "9": { + "deprecated": false, + "path": "lib/fauxhai/platforms/oracle/9.json" } }, "raspbian": { @@ -189,12 +227,20 @@ "8": { "deprecated": false, "path": "lib/fauxhai/platforms/redhat/8.json" + }, + "9": { + "deprecated": false, + "path": "lib/fauxhai/platforms/redhat/9.json" } }, "rocky": { "8": { "deprecated": false, "path": "lib/fauxhai/platforms/rocky/8.json" + }, + "9": { + "deprecated": false, + "path": "lib/fauxhai/platforms/rocky/9.json" } }, "smartos": { @@ -235,6 +281,14 @@ "20.04": { "deprecated": false, "path": "lib/fauxhai/platforms/ubuntu/20.04.json" + }, + "22.04": { + "deprecated": false, + "path": "lib/fauxhai/platforms/ubuntu/22.04.json" + }, + "24.04": { + "deprecated": false, + "path": "lib/fauxhai/platforms/ubuntu/24.04.json" } }, "windows": { @@ -258,9 +312,13 @@ "deprecated": false, "path": "lib/fauxhai/platforms/windows/2019.json" }, + "2022": { + "deprecated": false, + "path": "lib/fauxhai/platforms/windows/2022.json" + }, "8.1": { "deprecated": false, "path": "lib/fauxhai/platforms/windows/8.1.json" } } -} \ No newline at end of file +} diff --git a/sonar-project.properties b/sonar-project.properties new file mode 100644 index 00000000..6e694296 --- /dev/null +++ b/sonar-project.properties @@ -0,0 +1,21 @@ +# must be unique in a given SonarQube instance +sonar.projectKey=chef_fauxhai_AYcpqaYGJ4YHsO5MtJYJ + +# defaults to project key +sonar.projectName=fauxhai +# defaults to 'not provided' +#sonar.projectVersion=1.0 + +sonar.sources=. +sonar.exclusions=**/*_test.go + +sonar.tests=. +sonar.test.inclusions=**/*_test.go + +# Encoding of the source code. Default is default system encoding +#sonar.sourceEncoding=UTF-8 + +# skip C-language processor +sonar.c.file.suffixes=- +sonar.cpp.file.suffixes=- +sonar.objc.file.suffixes=- \ No newline at end of file diff --git a/spec/mocker_spec.rb b/spec/mocker_spec.rb index 35f64401..87bb0732 100644 --- a/spec/mocker_spec.rb +++ b/spec/mocker_spec.rb @@ -47,7 +47,7 @@ context "with a Windows platform and no version" do let(:options) { { platform: "windows" } } - it { is_expected.to eq "2019" } + it { is_expected.to eq "2022" } end context "with a Windows platform and an exact partial version" do