diff --git a/Vagrantfile b/Vagrantfile index 4ef09c2..aa30905 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -2,110 +2,69 @@ # vi: set ft=ruby : # All Vagrant configuration is done below. The "2" in Vagrant.configure -# configures the configuration version (we support older styles for -# backwards compatibility). Please don't change it unless you know what -# you're doing. +# configures the configuration version. +# +# Documentation for all configuration options can be found here: +# https://www.vagrantup.com/docs/vagrantfile Vagrant.configure(2) do |config| - # The most common configuration options are documented and commented below. - # For a complete reference, please see the online documentation at - # https://docs.vagrantup.com. - - # Every Vagrant development environment requires a box. You can search for - # boxes at https://atlas.hashicorp.com/search. - config.vm.box = "bento/ubuntu-18.04" config.vm.provider :virtualbox do |vb| - # Customize the amount of memory on the VM: vb.memory = "1024" vb.cpus = 2 end - config.vm.provider :docker do |d, override| - d.image = "nishidayuya/docker-vagrant-ubuntu:xenial" - d.has_ssh = true - override.vm.box = nil - override.ssh.port = 22 - end - - # Disable automatic box update checking. If you disable this, then - # boxes will only be checked for updates when the user runs - # `vagrant box outdated`. This is not recommended. - # config.vm.box_check_update = false - - # Create a forwarded port mapping which allows access to a specific port - # within the machine from a port on the host machine. In the example below, - # accessing "localhost:8080" will access port 80 on the guest machine. - # config.vm.network "forwarded_port", guest: 389, host: 389 - - # Create a private network, which allows host-only access to the machine - # using a specific IP. - config.vm.network "private_network", ip: "192.168.56.5" - - # Create a public network, which generally matched to bridged network. - # Bridged networks make the machine appear as another physical device on - # your network. - # config.vm.network "public_network" - - # Share an additional folder to the guest VM. The first argument is - # the path on the host to the actual folder. The second argument is - # the path on the guest to mount the folder. And the optional third - # argument is a set of non-required options. - # config.vm.synced_folder "../data", "/vagrant_data" - - # Provider-specific configuration so you can fine-tune various - # backing providers for Vagrant. These expose provider-specific options. - # Example for VirtualBox: - # - # config.vm.provider "virtualbox" do |vb| - # # Display the VirtualBox GUI when booting the machine - # vb.gui = true - # - # # Customize the amount of memory on the VM: - # vb.memory = "1024" - # end - # - # View the documentation for the provider you are using for more - # information on available options. - - # Define a Vagrant Push strategy for pushing to Atlas. Other push strategies - # such as FTP and Heroku are also available. See the documentation at - # https://docs.vagrantup.com/v2/push/atlas.html for more information. - # config.push.define "atlas" do |push| - # push.app = "YOUR_ATLAS_USERNAME/YOUR_APPLICATION_NAME" + # config.vm.provider :docker do |d, override| + # d.image = "nishidayuya/docker-vagrant-ubuntu:xenial" + # d.has_ssh = true + # override.vm.box = nil + # override.ssh.port = 22 # end - # Enable provisioning with a shell script. Additional provisioners such as - # Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the - # documentation for more information about their specific syntax and use. - # config.vm.provision "shell", inline: <<-SHELL - # sudo apt-get update - # sudo apt-get install -y apache2 - # SHELL + # TODO change to ldap/dirsrv + config.vm.define "default" do |ldap| + ldap.vm.box = "bento/ubuntu-18.04" + ldap.vm.network "forwarded_port", guest: 389, host: 389 + ldap.vm.network "private_network", ip: "192.168.56.5" - config.vm.provision :chef_zero do |chef| - chef.version = '15.3.14' - chef.arguments = "--chef-license accept" - chef.cookbooks_path = ['cookbooks', 'site-cookbooks'] - chef.data_bags_path = 'data_bags' - chef.roles_path = 'roles' - chef.node_name = "vagrant-node" - chef.nodes_path = 'nodes' - chef.environments_path = 'environments' - chef.encrypted_data_bag_secret_key_path = '.chef/encrypted_data_bag_secret' - chef.environment = 'development' - chef.add_recipe 'kosmos-base' - chef.add_recipe 'kosmos-dirsrv' - # chef.add_recipe 'kosmos-bitcoin::source' - # chef.add_recipe 'kosmos-mediawiki' - # chef.add_recipe 'kosmos-wordpress' - # chef.add_recipe 'kosmos-ejabberd' - # chef.add_recipe 'kosmos-hubot::botka_freenode' - # chef.add_recipe 'ipfs' - # chef.add_recipe 'kredits-github' - # chef.add_recipe 'sockethub' - # chef.add_recipe 'kosmos-mastodon' - # chef.add_recipe 'kosmos-mastodon::nginx' - # chef.add_recipe '5apps-hubot::xmpp_botka' - # chef.add_recipe 'kosmos-hubot' + ldap.vm.provision :chef_zero do |chef| + chef.version = "15.3.14" + chef.node_name = "vagrant-node" + chef.arguments = "--chef-license accept" + chef.cookbooks_path = ["cookbooks", "site-cookbooks"] + chef.data_bags_path = "data_bags" + chef.roles_path = "roles" + chef.nodes_path = "nodes" + chef.environments_path = "environments" + chef.encrypted_data_bag_secret_key_path = ".chef/encrypted_data_bag_secret" + chef.environment = "development" + + chef.add_recipe "kosmos-base" + chef.add_recipe "kosmos-dirsrv" + end end + + config.vm.define "bitcoin" do |bitcoin| + bitcoin.vm.box = "generic/ubuntu2004" + bitcoin.vm.network "forwarded_port", guest: 4201, host: 4201 + bitcoin.vm.network "private_network", ip: "192.168.56.6" + # bitcoin.vm.synced_folder "../kredits/yap/", "/opt/yap" + + bitcoin.vm.provision :chef_zero do |chef| + chef.version = "15.13.8" + chef.node_name = "vagrant-node-bitcoin" + chef.arguments = "--chef-license accept" + chef.cookbooks_path = ["cookbooks", "site-cookbooks"] + chef.data_bags_path = "data_bags" + chef.roles_path = "roles" + chef.nodes_path = "nodes" + chef.environments_path = "environments" + chef.encrypted_data_bag_secret_key_path = ".chef/encrypted_data_bag_secret" + chef.environment = "development" + + chef.add_recipe "kosmos-base" + chef.add_recipe "kosmos-bitcoin::source" + # chef.add_recipe "kosmos-bitcoin::foo" + end + end + end diff --git a/environments/development.json b/environments/development.json index 7f8bff0..7286ac2 100644 --- a/environments/development.json +++ b/environments/development.json @@ -6,9 +6,6 @@ "default_attributes": { }, "override_attributes": { - "kosmos-parity": { - "debian_package_dir": "/vagrant" - }, "kosmos-mastodon": { "elasticsearch": { "allocated_memory": "128m" @@ -18,6 +15,8 @@ "master_hostname": "localhost" }, "bitcoin": { + "username": "vagrant", + "usergroup": "vagrant", "conf": { "testnet": 1, "irc": 1, diff --git a/nodes/vagrant-node-bitcoin.json b/nodes/vagrant-node-bitcoin.json new file mode 100644 index 0000000..36855f0 --- /dev/null +++ b/nodes/vagrant-node-bitcoin.json @@ -0,0 +1,7796 @@ +{ + "name": "vagrant-node-bitcoin", + "chef_environment": "development", + "override": { + "nodejs": { + "repo": "https://deb.nodesource.com/node_14.x", + "package_action": { + "nodejs": "upgrade" + } + }, + "kosmos-mastodon": { + "elasticsearch": { + "allocated_memory": "128m" + } + }, + "kosmos-dirsrv": { + "master_hostname": "localhost" + }, + "bitcoin": { + "username": "vagrant", + "usergroup": "vagrant", + "conf": { + "testnet": 1, + "irc": 1, + "dnsseed": 1, + "upnp": 1, + "checkblocks": 10, + "checklevel": 1, + "txindex": 1, + "whitelist": "127.0.0.1", + "listen": 1, + "server": 1, + "rpcport": 8332, + "rpcssl": 0, + "rpcuser": "bitcoind", + "rpcbind": "127.0.0.1:8336", + "port": 8335, + "gen": 0, + "zmqpubrawblock": "tcp://127.0.0.1:8337", + "zmqpubrawtx": "tcp://127.0.0.1:8338" + } + } + }, + "normal": { + "tags": [ + + ] + }, + "default": { + "poise-service": { + "provider": "auto", + "options": { + + } + }, + "poise-archive": { + "seven_zip": { + "version": "16.04", + "url": "http://www.7-zip.org/a/7z%{version_tag}%{arch_tag}.exe" + } + }, + "poise-javascript": { + "provider": "auto", + "options": { + + }, + "install_nodejs": true, + "install_iojs": false + }, + "ark": { + "apache_mirror": "http://apache.mirrors.tds.net", + "prefix_root": "/usr/local", + "prefix_bin": "/usr/local/bin", + "prefix_home": "/usr/local", + "tar": null, + "sevenzip_binary": null, + "package_dependencies": [ + "libtool", + "autoconf", + "make", + "unzip", + "rsync", + "gcc", + "autogen", + "shtool", + "pkg-config" + ] + }, + "logrotate": { + "package": { + "name": "logrotate", + "source": null, + "version": null, + "provider": null, + "action": "upgrade" + }, + "directory": "/etc/logrotate.d", + "cron": { + "install": false, + "name": "logrotate", + "command": "/usr/sbin/logrotate /etc/logrotate.conf", + "minute": 35, + "hour": 2 + }, + "global": { + "weekly": true, + "rotate": 4, + "create": "", + "/var/log/wtmp": { + "missingok": true, + "monthly": true, + "create": "0664 root utmp", + "rotate": 1 + }, + "/var/log/btmp": { + "missingok": true, + "monthly": true, + "create": "0660 root utmp", + "rotate": 1 + } + } + }, + "backup": { + "dir": "/usr/local/lib/backup", + "default_model": true, + "compression": { + "best": true, + "fast": false + }, + "user": "backup", + "archives": { + + }, + "mysql": { + "databases": [ + + ], + "username": "root", + "host": "localhost" + }, + "postgresql": { + "databases": { + + }, + "username": "postgres", + "host": "localhost", + "port": 5432 + }, + "redis": { + "databases": [ + + ], + "host": "localhost", + "invoke_save": false, + "dump_dir": "/var/lib/redis" + }, + "orbit": { + "keep": 10 + }, + "cron": { + "hour": "05", + "minute": "7" + }, + "s3": { + "keep": 15, + "bucket": "kosmos-dev-backups" + } + }, + "firewall": { + "allow_ssh": false, + "allow_winrm": false, + "allow_mosh": false, + "allow_loopback": false, + "allow_icmp": false, + "firewalld": { + "permanent": false + }, + "iptables": { + "defaults": { + "policy": { + "input": "DROP", + "forward": "DROP", + "output": "ACCEPT" + }, + "ruleset": { + "*filter": 1, + ":INPUT DROP": 2, + ":FORWARD DROP": 3, + ":OUTPUT ACCEPT": 4, + "COMMIT_FILTER": 100 + } + } + }, + "ubuntu_iptables": false, + "redhat7_iptables": false, + "allow_established": true, + "ipv6_enabled": true, + "ufw": { + "defaults": { + "ipv6": "yes", + "manage_builtins": "no", + "ipt_sysctl": "/etc/ufw/sysctl.conf", + "ipt_modules": "nf_conntrack_ftp nf_nat_ftp nf_conntrack_netbios_ns", + "policy": { + "input": "DROP", + "output": "ACCEPT", + "forward": "DROP", + "application": "SKIP" + } + } + }, + "windows": { + "defaults": { + "policy": { + "input": "blockinbound", + "output": "allowoutbound" + } + } + } + }, + "git": { + "prefix": "/usr/local", + "version": "2.17.1", + "url": "https://nodeload.github.com/git/git/tar.gz/v%{version}", + "checksum": "690f12cc5691e5adaf2dd390eae6f5acce68ae0d9bd9403814f8a1433833f02a", + "use_pcre": false, + "server": { + "base_path": "/srv/git", + "export_all": true + } + }, + "golang": { + "scm": true, + "scm_packages": [ + "git", + "mercurial", + "bzr" + ], + "install_dir": "/usr/local", + "gopath": "/opt/go", + "gobin": "/opt/go/bin", + "packages": [ + + ] + }, + "msys2": { + "url": "http://downloads.sourceforge.net/project/msys2/Base/x86_64/msys2-base-x86_64-20160205.tar.xz", + "checksum": "7e97e2af042e1b6f62cf0298fe84839014ef3d4a3e7825cffc6931c66cc0fc20" + }, + "build-essential": { + "compile_time": false, + "msys2": { + "path": "\\msys2" + } + }, + "yum-epel": { + "repos": [ + + ] + }, + "yum": { + "epel-debuginfo": { + "repositoryid": "epel-debuginfo", + "description": "Extra Packages for 20 - $basearch - Debug", + "mirrorlist": "https://mirrors.fedoraproject.org/mirrorlist?repo=epel-debug-20&arch=$basearch", + "gpgkey": "https://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-20", + "gpgcheck": true, + "enabled": false, + "managed": false, + "make_cache": true + }, + "epel-modular-debuginfo": { + "repositoryid": "epel-modular-debuginfo", + "description": "Extra Packages for Enterprise Linux Modular $releasever - $basearch - Debug", + "mirrorlist": "https://mirrors.fedoraproject.org/metalink?repo=epel-modular-debug-$releasever&arch=$basearch&infra=$infra&content=$contentdir", + "gpgkey": "https://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-8", + "gpgcheck": true, + "enabled": false, + "managed": false, + "make_cache": true + }, + "epel-modular-source": { + "repositoryid": "epel-modular-source", + "description": "Extra Packages for Enterprise Linux Modular $releasever - $basearch - Source", + "mirrorlist": "https://mirrors.fedoraproject.org/metalink?repo=epel-modular-source-$releasever&arch=$basearch&infra=$infra&content=$contentdir", + "gpgkey": "https://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-8", + "gpgcheck": true, + "enabled": false, + "managed": false, + "make_cache": true + }, + "epel-modular": { + "repositoryid": "epel-modular", + "description": "Extra Packages for Enterprise Linux Modular $releasever - $basearch", + "mirrorlist": "https://mirrors.fedoraproject.org/metalink?repo=epel-modular-$releasever&arch=$basearch&infra=$infra&content=$contentdir", + "gpgkey": "https://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-8", + "gpgcheck": true, + "enabled": false, + "managed": false, + "make_cache": true + }, + "epel-next-debuginfo": { + "repositoryid": "epel-next-debuginfo", + "description": "Extra Packages for 20 - $basearch - Next - Debug", + "mirrorlist": "https://mirrors.fedoraproject.org/mirrorlist?repo=epel-next-debug-20&arch=$basearch", + "gpgkey": "https://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-20", + "gpgcheck": true, + "enabled": false, + "managed": false, + "make_cache": true + }, + "epel-next-source": { + "repositoryid": "epel-next-source", + "description": "Extra Packages for 20 $basearch - Next -Source", + "mirrorlist": "https://mirrors.fedoraproject.org/mirrorlist?repo=epel-next-source-20&arch=$basearch", + "gpgkey": "https://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-20", + "gpgcheck": true, + "enabled": false, + "managed": false, + "make_cache": true + }, + "epel-next-testing-debuginfo": { + "repositoryid": "epel-next-testing-debuginfo", + "description": "Extra Packages for 20 - $basearch - Next - Testing Debug", + "mirrorlist": "https://mirrors.fedoraproject.org/mirrorlist?repo=epel-testing-next-debug-20&arch=$basearch", + "gpgkey": "https://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-20", + "gpgcheck": true, + "enabled": false, + "managed": false, + "make_cache": true + }, + "epel-next-testing-source": { + "repositoryid": "epel-next-testing-source", + "description": "Extra Packages for 20 - $basearch - Next - Testing Source", + "mirrorlist": "https://mirrors.fedoraproject.org/mirrorlist?repo=testing-source-epel20&arch=$basearch", + "gpgkey": "https://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-20", + "gpgcheck": true, + "enabled": false, + "managed": false, + "make_cache": true + }, + "epel-next-testing": { + "repositoryid": "epel-next-testing", + "description": "Extra Packages for 20 - $basearch - Next - Testing", + "mirrorlist": "https://mirrors.fedoraproject.org/mirrorlist?repo=epel-testing-next-20&arch=$basearch", + "gpgkey": "https://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-20", + "gpgcheck": true, + "enabled": false, + "managed": false, + "make_cache": true + }, + "epel-next": { + "repositoryid": "epel-next", + "gpgcheck": true, + "description": "Extra Packages for $releasever - Next - $basearch", + "mirrorlist": "https://mirrors.fedoraproject.org/mirrorlist?repo=epel-next-20&arch=$basearch", + "gpgkey": "https://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-20", + "enabled": true, + "managed": true, + "make_cache": true + }, + "epel-playground-debuginfo": { + "repositoryid": "epel-playground-debuginfo", + "description": "Extra Packages for Enterprise Linux $releasever - Playground - $basearch - Debug", + "mirrorlist": "https://mirrors.fedoraproject.org/metalink?repo=playground-debug-epel$releasever&arch=$basearch&infra=$infra&content=$contentdir", + "gpgkey": "https://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-8", + "gpgcheck": true, + "enabled": false, + "managed": false, + "make_cache": true + }, + "epel-playground-source": { + "repositoryid": "epel-playground-source", + "description": "Extra Packages for Enterprise Linux $releasever - Playground - $basearch - Source", + "mirrorlist": "https://mirrors.fedoraproject.org/metalink?repo=playground-source-epel$releasever&arch=$basearch&infra=$infra&content=$contentdir", + "gpgkey": "https://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-8", + "gpgcheck": true, + "enabled": false, + "managed": false, + "make_cache": true + }, + "epel-playground": { + "repositoryid": "epel-playground", + "description": "Extra Packages for Enterprise Linux $releasever - Playground - $basearch", + "mirrorlist": "https://mirrors.fedoraproject.org/metalink?repo=playground-epel$releasever&arch=$basearch&infra=$infra&content=$contentdir", + "gpgkey": "https://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-8", + "gpgcheck": true, + "enabled": false, + "managed": false, + "make_cache": true + }, + "epel-source": { + "repositoryid": "epel-source", + "description": "Extra Packages for 20 - $basearch - Source", + "mirrorlist": "https://mirrors.fedoraproject.org/mirrorlist?repo=epel-source-20&arch=$basearch", + "gpgkey": "https://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-20", + "gpgcheck": true, + "enabled": false, + "managed": false, + "make_cache": true + }, + "epel-testing-debuginfo": { + "repositoryid": "epel-testing-debuginfo", + "description": "Extra Packages for 20 - $basearch - Testing Debug", + "mirrorlist": "https://mirrors.fedoraproject.org/mirrorlist?repo=testing-debug-epel20&arch=$basearch", + "gpgkey": "https://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-20", + "gpgcheck": true, + "enabled": false, + "managed": false, + "make_cache": true + }, + "epel-testing-modular-debuginfo": { + "repositoryid": "epel-testing-modular-debuginfo", + "description": "Extra Packages for Enterprise Linux Modular $releasever - Testing - $basearch - Debug", + "mirrorlist": "https://mirrors.fedoraproject.org/metalink?repo=testing-modular-debug-epel$releasever&arch=$basearch&infra=$infra&content=$contentdir", + "gpgkey": "https://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-8", + "gpgcheck": true, + "enabled": false, + "managed": false, + "make_cache": true + }, + "epel-testing-modular-source": { + "repositoryid": "epel-testing-modular-source", + "description": "Extra Packages for Enterprise Linux Modular $releasever- Testing - $basearch - Source", + "mirrorlist": "https://mirrors.fedoraproject.org/metalink?repo=testing-modular-source-epel$releasever&arch=$basearch&infra=$infra&content=$contentdir", + "gpgkey": "https://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-8", + "gpgcheck": true, + "enabled": false, + "managed": false, + "make_cache": true + }, + "epel-testing-modular": { + "repositoryid": "epel-testing-modular", + "description": "Extra Packages for Enterprise Linux Modular $releasever - Testing - $basearch", + "mirrorlist": "https://mirrors.fedoraproject.org/metalink?repo=testing-modular-epel$releasever&arch=$basearch&infra=$infra&content=$contentdir", + "gpgkey": "https://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-8", + "gpgcheck": true, + "enabled": false, + "managed": false, + "make_cache": true + }, + "epel-testing-source": { + "repositoryid": "epel-testing-source", + "description": "Extra Packages for 20 - $basearch - Testing Source", + "mirrorlist": "https://mirrors.fedoraproject.org/mirrorlist?repo=testing-source-epel20&arch=$basearch", + "gpgkey": "https://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-20", + "gpgcheck": true, + "enabled": false, + "managed": false, + "make_cache": true + }, + "epel-testing": { + "repositoryid": "epel-testing", + "description": "Extra Packages for 20 - $basearch - Testing ", + "mirrorlist": "https://mirrors.fedoraproject.org/mirrorlist?repo=testing-epel20&arch=$basearch", + "gpgkey": "https://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-20", + "gpgcheck": true, + "enabled": false, + "managed": false, + "make_cache": true + }, + "epel": { + "repositoryid": "epel", + "gpgcheck": true, + "description": "Extra Packages for 20 - $basearch", + "mirrorlist": "https://mirrors.fedoraproject.org/mirrorlist?repo=epel-20&arch=$basearch", + "gpgkey": "https://download.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-20", + "enabled": true, + "managed": true, + "make_cache": true + }, + "main": { + "cachedir": "/var/cache/yum/$basearch/$releasever", + "distroverpkg": "ubuntu-release", + "alwaysprompt": null, + "assumeyes": null, + "bandwidth": null, + "bugtracker_url": null, + "clean_requirements_on_remove": null, + "color": null, + "color_list_available_downgrade": null, + "color_list_available_install": null, + "color_list_available_reinstall": null, + "color_list_available_upgrade": null, + "color_list_installed_extra": null, + "color_list_installed_newer": null, + "color_list_installed_older": null, + "color_list_installed_reinstall": null, + "color_search_match": null, + "color_update_installed": null, + "color_update_local": null, + "color_update_remote": null, + "commands": null, + "deltarpm": null, + "debuglevel": null, + "diskspacecheck": null, + "enable_group_conditionals": null, + "errorlevel": null, + "exactarch": null, + "exclude": null, + "gpgcheck": true, + "group_package_types": null, + "groupremove_leaf_only": null, + "history_list_view": null, + "history_record": null, + "history_record_packages": null, + "http_caching": null, + "ip_resolve": null, + "installonly_limit": null, + "installonlypkgs": null, + "installroot": null, + "keepalive": null, + "keepcache": false, + "kernelpkgnames": null, + "localpkg_gpgcheck": false, + "logfile": "/var/log/yum.log", + "max_retries": null, + "mdpolicy": null, + "metadata_expire": null, + "mirrorlist_expire": null, + "multilib_policy": null, + "obsoletes": null, + "overwrite_groups": null, + "password": null, + "path": "/etc/yum.conf", + "persistdir": null, + "pluginconfpath": null, + "pluginpath": null, + "plugins": null, + "protected_multilib": null, + "protected_packages": null, + "proxy": null, + "proxy_password": null, + "proxy_username": null, + "recent": null, + "repo_gpgcheck": null, + "reposdir": null, + "reset_nice": null, + "rpmverbosity": null, + "showdupesfromrepos": null, + "skip_broken": null, + "ssl_check_cert_permissions": null, + "sslcacert": null, + "sslclientcert": null, + "sslclientkey": null, + "sslverify": null, + "syslog_device": null, + "syslog_facility": null, + "syslog_ident": null, + "throttle": null, + "timeout": null, + "tolerant": false, + "tsflags": null, + "username": null + } + }, + "nginx": { + "version": "1.12.1", + "package_name": "nginx", + "port": "80", + "dir": "/etc/nginx", + "script_dir": "/usr/sbin", + "log_dir": "/var/log/nginx", + "log_dir_perm": "0750", + "binary": "/usr/sbin/nginx", + "default_root": "/var/www/nginx-default", + "ulimit": "1024", + "cleanup_runit": true, + "repo_source": "nginx", + "install_method": "package", + "user": "www-data", + "user_home": "/var/www", + "upstart": { + "runlevels": "2345", + "respawn_limit": null, + "foreground": true + }, + "group": "www-data", + "gzip": "on", + "gzip_static": "off", + "gzip_http_version": "1.0", + "gzip_comp_level": "2", + "gzip_proxied": "any", + "gzip_vary": "off", + "gzip_buffers": null, + "gzip_types": [ + "text/plain", + "text/css", + "application/x-javascript", + "text/xml", + "application/xml", + "application/rss+xml", + "application/atom+xml", + "image/svg+xml", + "text/javascript", + "application/javascript", + "application/json", + "text/mathml" + ], + "gzip_min_length": 1000, + "gzip_disable": "MSIE [1-6]\\.", + "keepalive": "on", + "keepalive_requests": 100, + "keepalive_timeout": 65, + "worker_processes": 2, + "worker_connections": 1024, + "worker_rlimit_nofile": null, + "multi_accept": false, + "event": null, + "accept_mutex_delay": null, + "server_tokens": null, + "server_names_hash_bucket_size": 64, + "variables_hash_max_size": 1024, + "variables_hash_bucket_size": 64, + "sendfile": "on", + "underscores_in_headers": null, + "tcp_nodelay": "on", + "tcp_nopush": "on", + "access_log_options": null, + "error_log_options": null, + "disable_access_log": false, + "log_formats": { + + }, + "default_site_enabled": true, + "types_hash_max_size": 2048, + "types_hash_bucket_size": 64, + "proxy_read_timeout": null, + "client_body_buffer_size": null, + "client_max_body_size": null, + "large_client_header_buffers": null, + "map_hash_max_size": null, + "proxy_buffer_size": null, + "proxy_buffers": null, + "proxy_busy_buffers_size": null, + "default": { + "modules": [ + + ] + }, + "extra_configs": { + + }, + "ohai_plugin_enabled": true, + "load_modules": [ + + ], + "auth_request": { + "url": "http://mdounin.ru/hg/ngx_http_auth_request_module/archive/662785733552.tar.gz", + "checksum": "2057bdefd2137a5000d9dbdbfca049d1ba7832ad2b9f8855a88ea5dfa70bd8c1" + }, + "devel": { + "version": "0.3.0", + "url": "https://github.com/simpl/ngx_devel_kit/archive/v0.3.0.tar.gz", + "checksum": "88e05a99a8a7419066f5ae75966fb1efc409bad4522d14986da074554ae61619" + }, + "echo": { + "version": "0.61", + "url": "https://github.com/openresty/echo-nginx-module/archive/v0.61.tar.gz", + "checksum": "2e6a03032555f5da1bdff2ae96c96486f447da3da37c117e0f964ae0753d22aa" + }, + "geoip": { + "path": "/srv/geoip", + "enable_city": true, + "country_dat_url": "http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz", + "country_dat_checksum": null, + "city_dat_url": "http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz", + "city_dat_checksum": null, + "lib_version": "1.6.9", + "lib_url": "https://github.com/maxmind/geoip-api-c/releases/download/v1.6.9/GeoIP-1.6.9.tar.gz", + "lib_checksum": "4b446491843de67c1af9b887da17a3e5939e0aeed4826923a5f4bf09d845096f" + }, + "headers_more": { + "version": "0.30", + "source_url": "https://github.com/openresty/headers-more-nginx-module/archive/v0.30.tar.gz", + "source_checksum": "2aad309a9313c21c7c06ee4e71a39c99d4d829e31c8b3e7d76f8c964ea8047f5" + }, + "lua": { + "version": "0.10.10", + "url": "https://github.com/chaoslawful/lua-nginx-module/archive/v0.10.10.tar.gz", + "checksum": "b4acb84e2d631035a516d61830c910ef6e6485aba86096221ec745e0dbb3fbc9" + }, + "luajit": { + "version": "2.0.4", + "url": "http://luajit.org/download/LuaJIT-2.0.4.tar.gz", + "checksum": "620fa4eb12375021bef6e4f237cbd2dd5d49e56beb414bee052c746beef1807d" + }, + "naxsi": { + "version": "0.54", + "url": "https://github.com/nbs-system/naxsi/archive/0.54.tar.gz", + "checksum": "9cc2c09405bc71f78ef26a8b6d70afcea3fccbe8125df70cb0cfc480133daba5" + }, + "openssl_source": { + "version": "1.0.2k", + "url": "http://www.openssl.org/source/openssl-1.0.2k.tar.gz" + }, + "pagespeed": { + "version": "1.11.33.2", + "url": "https://github.com/pagespeed/ngx_pagespeed/archive/release-1.11.33.2-beta.tar.gz", + "packages": { + "rhel": [ + "pcre-devel", + "zlib-devel" + ], + "debian": [ + "zlib1g-dev", + "libpcre3", + "libpcre3-dev" + ] + } + }, + "psol": { + "url": "https://dl.google.com/dl/page-speed/psol/1.11.33.2.tar.gz" + }, + "passenger": { + "version": "4.0.57", + "root": "/var/lib/gems/2.7.0/gems/passenger-4.0.57", + "ruby": "/usr/bin/ruby2.7", + "conf_file": "/etc/nginx/conf.d/mod-http-passenger.conf", + "packages": { + "rhel": [ + "ruby-devel", + "curl-devel" + ], + "fedora": [ + "ruby-devel", + "libcurl-devel" + ], + "debian": [ + "ruby-dev", + "libcurl4-gnutls-dev", + "libnginx-mod-http-passenger" + ] + }, + "install_rake": true, + "spawn_method": "smart-lv2", + "buffer_response": "on", + "max_pool_size": 6, + "min_instances": 1, + "max_instances_per_app": 0, + "pool_idle_time": 300, + "max_requests": 0, + "gem_binary": null, + "show_version_in_header": "on", + "passenger_log_file": null, + "nodejs": null + }, + "enable_rate_limiting": false, + "rate_limiting_zone_name": "default", + "rate_limiting_backoff": "10m", + "rate_limit": "1r/s", + "upstream_repository": "https://nginx.org/packages/ubuntu", + "repo_signing_key": "https://nginx.org/keys/nginx_signing.key", + "set_misc": { + "version": "0.30", + "url": "https://github.com/agentzh/set-misc-nginx-module/archive/v0.30.tar.gz", + "checksum": "59920dd3f92c2be32627121605751b52eae32b5884be09f2e4c53fb2fae8aabc" + }, + "socketproxy": { + "root": "/usr/share/nginx/apps", + "app_owner": "root", + "logname": "socketproxy", + "log_level": "error" + }, + "init_style": "systemd", + "source": { + "version": "1.12.1", + "prefix": "/opt/nginx-1.12.1", + "conf_path": "/etc/nginx/nginx.conf", + "sbin_path": "/opt/nginx-1.12.1/sbin/nginx", + "default_configure_flags": [ + "--prefix=/opt/nginx-1.12.1", + "--conf-path=/etc/nginx/nginx.conf", + "--sbin-path=/opt/nginx-1.12.1/sbin/nginx", + "--with-cc-opt=-Wno-error" + ], + "url": "http://nginx.org/download/nginx-1.12.1.tar.gz", + "checksum": "8793bf426485a30f91021b6b945a9fd8a84d87d17b566562c3797aba8fac76fb", + "modules": [ + "nginx::http_ssl_module", + "nginx::http_gzip_static_module" + ], + "use_existing_user": false + }, + "configure_flags": [ + + ], + "status": { + "port": "8090" + }, + "syslog": { + "git_repo": "https://github.com/yaoweibin/nginx_syslog_patch.git", + "git_revision": "master" + }, + "upload_progress": { + "url": "https://github.com/masterzen/nginx-upload-progress-module/tarball/v0.9.0", + "checksum": "3fb903dab595cf6656fa0fc5743a48daffbba2f6b5c554836be630800eaad4e2", + "javascript_output": true, + "zone_name": "proxied", + "zone_size": "1m" + } + }, + "openssl": { + "restart_services": [ + + ] + }, + "chocolatey": { + "upgrade": false, + "sensitive": false, + "install_vars": { + "chocolateyProxyLocation": null, + "chocolateyProxyUser": null, + "chocolateyProxyPassword": null, + "chocolateyVersion": null, + "chocolateyDownloadUrl": "https://chocolatey.org/api/v2/package/chocolatey", + "chocolateyUseWindowsCompression": null + } + }, + "nodejs": { + "install_method": "package", + "version": "10.16.3", + "prefix_url": { + "node": "https://nodejs.org/dist/" + }, + "tmpdir": "/tmp", + "source": { + "url": null, + "checksum": "db5a5e03a815b84a1266a4b48bb6a6d887175705f84fd2472f0d28e5e305a1f8" + }, + "binary": { + "url": null, + "checksum": { + "linux_x64": "2f0397bb81c1d0c9901b9aff82a933257bf60f3992227b86107111a75b9030d9", + "linux_arm64": "3bab16e7107092e43426e082ee9fd88ef0a43a35816f662f14563bcc5152600d" + }, + "append_env_path": true + }, + "make_threads": 2, + "manage_node": true, + "npm": { + "install_method": "embedded", + "version": "latest" + }, + "install_repo": true, + "repo": "https://deb.nodesource.com/node_10.x", + "keyserver": "keyserver.ubuntu.com", + "key": "1655a0ab68576280", + "packages": [ + "nodejs" + ], + "package_action": { + "default": "install" + }, + "package_options": { + "default": "" + } + }, + "ulimit": { + "pam_su_template_cookbook": null, + "users": { + + }, + "security_limits_directory": "/etc/security/limits.d", + "ulimit_overriding_sudo_file_name": "sudo", + "ulimit_overriding_sudo_file_cookbook": null + }, + "redisio": { + "redis_config": { + "template_cookbook": "redisio", + "template_source": "redis.conf.erb" + }, + "safe_install": true, + "package_install": false, + "package_name": "redis-server", + "bypass_setup": false, + "mirror": "http://download.redis.io/releases/", + "base_name": "redis-", + "artifact_type": "tar.gz", + "base_piddir": "/var/run/redis", + "version": "3.2.11", + "install_dir": null, + "job_control": "systemd", + "init.d": { + "required_start": [ + + ], + "required_stop": [ + + ] + }, + "default_settings": { + "user": "redis", + "group": "redis", + "permissions": "0644", + "homedir": "/var/lib/redis", + "shell": "/bin/false", + "systemuser": true, + "uid": null, + "ulimit": 0, + "configdir": "/etc/redis", + "name": null, + "tcpbacklog": "511", + "address": null, + "databases": "16", + "backuptype": "rdb", + "datadir": "/var/lib/redis", + "unixsocket": null, + "unixsocketperm": null, + "timeout": "0", + "keepalive": "0", + "loglevel": "notice", + "logfile": null, + "syslogenabled": "yes", + "syslogfacility": "local0", + "shutdown_save": false, + "save": null, + "stopwritesonbgsaveerror": "yes", + "rdbcompression": "yes", + "rdbchecksum": "yes", + "dbfilename": null, + "slaveof": null, + "protected_mode": null, + "masterauth": null, + "slaveservestaledata": "yes", + "slavereadonly": "yes", + "repldisklesssync": "no", + "repldisklesssyncdelay": "5", + "replpingslaveperiod": "10", + "repltimeout": "60", + "repldisabletcpnodelay": "no", + "replbacklogsize": "1mb", + "replbacklogttl": 3600, + "slavepriority": "100", + "requirepass": null, + "rename_commands": null, + "maxclients": 10000, + "maxmemory": null, + "maxmemorypolicy": null, + "maxmemorysamples": null, + "appendfilename": null, + "appendfsync": "everysec", + "noappendfsynconrewrite": "no", + "aofrewritepercentage": "100", + "aofrewriteminsize": "64mb", + "aofloadtruncated": "yes", + "luatimelimit": "5000", + "slowloglogslowerthan": "10000", + "slowlogmaxlen": "1024", + "notifykeyspaceevents": "", + "hashmaxziplistentries": "512", + "hashmaxziplistvalue": "64", + "listmaxziplistentries": "512", + "listmaxziplistvalue": "64", + "setmaxintsetentries": "512", + "zsetmaxziplistentries": "128", + "zsetmaxziplistvalue": "64", + "hllsparsemaxbytes": "3000", + "activerehasing": "yes", + "clientoutputbufferlimit": [ + [ + "normal", + "0", + "0", + "0" + ], + [ + "slave", + "256mb", + "64mb", + "60" + ], + [ + "pubsub", + "32mb", + "8mb", + "60" + ] + ], + "hz": "10", + "aofrewriteincrementalfsync": "yes", + "clusterenabled": "no", + "clusterconfigfile": null, + "clusternodetimeout": 5000, + "includes": null, + "data_bag_name": null, + "data_bag_item": null, + "data_bag_key": null, + "minslavestowrite": null, + "minslavesmaxlag": null, + "breadcrumb": true + }, + "servers": null, + "bin_path": "/usr/local/bin", + "gem": { + "name": "redis", + "version": null + }, + "sentinel_defaults": { + "user": "redis", + "configdir": "/etc/redis", + "sentinel_bind": null, + "sentinel_port": 26379, + "monitor": null, + "down_after_milliseconds": 30000, + "can-failover": "yes", + "parallel-syncs": 1, + "failover_timeout": 900000, + "loglevel": "notice", + "logfile": null, + "syslogenabled": "yes", + "syslogfacility": "local0", + "quorum_count": 2, + "data_bag_name": null, + "data_bag_item": null, + "data_bag_key": null, + "announce-ip": null, + "announce-port": null, + "notification-script": null, + "client-reconfig-script": null + }, + "sentinel": { + "manage_config": true + }, + "sentinels": null + }, + "apt": { + "cacher_dir": "/var/cache/apt-cacher-ng", + "cacher_interface": null, + "cacher_port": 3142, + "compiletime": false, + "compile_time_update": false, + "key_proxy": "", + "periodic_update_min_delay": 86400, + "launchpad_api_version": "1.0", + "unattended_upgrades": { + "enable": false, + "update_package_lists": true, + "allowed_origins": [ + "Ubuntu focal" + ], + "origins_patterns": [ + + ], + "package_blacklist": [ + + ], + "auto_fix_interrupted_dpkg": false, + "minimal_steps": false, + "install_on_shutdown": false, + "mail": null, + "sender": null, + "mail_only_on_error": true, + "remove_unused_dependencies": false, + "automatic_reboot": false, + "automatic_reboot_time": "now", + "dl_limit": null, + "random_sleep": null, + "syslog_enable": false, + "syslog_facility": "daemon", + "dpkg_options": [ + + ] + }, + "cacher_client": { + "cacher_server": { + + } + }, + "confd": { + "force_confask": false, + "force_confdef": false, + "force_confmiss": false, + "force_confnew": false, + "force_confold": false, + "install_recommends": true, + "install_suggests": false + } + }, + "tor": { + "DataDirectory": "/var/lib/tor", + "MinLogLevel": "notice", + "LogDestination": "/var/log/tor/log", + "SocksPorts": [ + "9050" + ], + "HiddenServices": { + + }, + "relay": { + "enabled": false, + "ORPort": "9001", + "Address": null, + "OutboundBindAddress": null, + "Nickname": "IDidntEditTheConfig", + "RelayBandwidthRate": null, + "RelayBandwidthBurst": null, + "ContactInfo": null, + "ExitPolicy": [ + "reject *:*" + ], + "BridgeRelay": 0, + "PublishServerDescriptor": 1, + "Directory": false, + "DirPort": "9030", + "DirPortFrontPage": null, + "MyFamily": [ + + ] + } + }, + "bitcoin": { + "version": "0.21.1", + "checksum": "caff23449220cf45753f312cefede53a9eac64000bb300797916526236b6a1e0", + "username": "satoshi", + "usergroup": "bitcoin", + "network": "mainnet", + "conf_path": "/home/satoshi/.bitcoin/bitcoin.conf", + "walletdir": "/home/satoshi/.bitcoin", + "datadir": "/mnt/data/bitcoin", + "conf": { + "irc": 1, + "dnsseed": 1, + "upnp": 1, + "checkblocks": 10, + "checklevel": 1, + "txindex": 1, + "whitelist": "127.0.0.1", + "listen": 1, + "server": 1, + "rpcssl": 0, + "rpcuser": "satoshi", + "rpcbind": "127.0.0.1:8332", + "gen": 0, + "zmqpubrawblock": "tcp://127.0.0.1:8337", + "zmqpubrawtx": "tcp://127.0.0.1:8338" + }, + "tor_enabled": true + }, + "c-lightning": { + "repo": "https://github.com/ElementsProject/lightning", + "revision": "v0.10.2", + "source_dir": "/opt/c-lightning", + "lightning_dir": "/home/vagrant/.lightning", + "alias": "ln3.kosmos.org", + "rgb": "0D4F99", + "log_level": "info", + "public_ip": "148.251.237.73" + }, + "lnd": { + "repo": "https://github.com/lightningnetwork/lnd", + "revision": "v0.14.1-beta", + "source_dir": "/opt/lnd", + "lnd_dir": "/home/vagrant/.lnd", + "alias": "ln2.kosmos.org", + "color": "#5e0c99", + "log_level": "info", + "public_ip": "148.251.237.111", + "public_port": "9735", + "port": "9736", + "minchansize": "1000000", + "basefee": "1000", + "feerate": "50", + "auto_unlock": true + }, + "boltz": { + "repo": "https://github.com/BoltzExchange/boltz-lnd.git", + "revision": "v1.2.6", + "source_dir": "/opt/boltz", + "boltz_dir": "/home/vagrant/.boltz-lnd", + "grpc_host": "127.0.0.1", + "grpc_port": "9002", + "rest_disabled": "false", + "rest_host": "127.0.0.1", + "rest_port": "9003", + "no_macaroons": "false" + }, + "rtl": { + "repo": "https://github.com/Ride-The-Lightning/RTL.git", + "revision": "v0.12.1", + "host": "10.1.1.163", + "port": "3000" + }, + "lndhub": { + "repo": "https://gitea.kosmos.org/kosmos/lndhub.git", + "revision": "master", + "port": "3023", + "domain": "lndhub.kosmos.org" + }, + "dotnet": { + "ms_packages_src_url": "https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb", + "ms_packages_src_checksum": "4df5811c41fdded83eb9e2da9336a8dfa5594a79dc8a80133bd815f4f85b9991" + }, + "nbxplorer": { + "repo": "https://github.com/dgarage/NBXplorer", + "revision": "v2.2.20", + "source_dir": "/opt/nbxplorer", + "config_path": "/home/vagrant/.nbxplorer/Main/settings.config", + "port": "24445" + }, + "btcpay": { + "repo": "https://github.com/btcpayserver/btcpayserver", + "revision": "v1.3.7", + "source_dir": "/opt/btcpay", + "config_path": "/home/vagrant/.btcpayserver/Main/settings.config", + "log_path": "/home/vagrant/.btcpayserver/debug.log", + "port": "23001", + "domain": "btcpay.kosmos.org", + "postgres": { + "port": 5432, + "database": "btcpayserver", + "user": "satoshi" + } + } + }, + "automatic": { + "dmi": { + "dmidecode_version": "3.2", + "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": "7c0b7cff-656e-41d9-9a3b-6078ef1f1049", + "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": "7c0b7cff-656e-41d9-9a3b-6078ef1f1049", + "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.34", + "String 2": "vboxRev_150636" + } + ], + "string_1": "vboxVer_6.1.34", + "string_2": "vboxRev_150636" + } + }, + "virtualization": { + "systems": { + "vbox": "guest" + }, + "system": "vbox", + "role": "guest" + }, + "uptime_seconds": 39, + "uptime": "39 seconds", + "idletime_seconds": 42, + "idletime": "42 seconds", + "shells": [ + "/bin/sh", + "/bin/bash", + "/usr/bin/bash", + "/bin/rbash", + "/usr/bin/rbash", + "/bin/dash", + "/usr/bin/dash", + "/usr/bin/tmux", + "/usr/bin/screen" + ], + "lsb": { + "id": "Ubuntu", + "description": "Ubuntu 20.04.4 LTS", + "release": "20.04", + "codename": "focal" + }, + "memory": { + "swap": { + "cached": "0kB", + "total": "1999868kB", + "free": "1999868kB" + }, + "hugepages": { + "total": "0", + "free": "0", + "reserved": "0", + "surplus": "0" + }, + "directmap": { + "4k": "108480kB", + "2M": "940032kB" + }, + "total": "1000068kB", + "free": "207876kB", + "available": "618524kB", + "buffers": "81692kB", + "cached": "424584kB", + "active": "314544kB", + "inactive": "308884kB", + "dirty": "7920kB", + "writeback": "0kB", + "anon_pages": "135740kB", + "mapped": "66244kB", + "slab": "127900kB", + "slab_reclaimable": "81944kB", + "slab_unreclaim": "45956kB", + "page_tables": "2532kB", + "nfs_unstable": "0kB", + "bounce": "0kB", + "commit_limit": "2499900kB", + "committed_as": "431316kB", + "vmalloc_total": "34359738367kB", + "vmalloc_used": "9308kB", + "vmalloc_chunk": "0kB", + "hugepage_size": "2048kB", + "hugetlb": "0kB" + }, + "machine_id": "c671038f014e482ba1c6686dea08c7b1", + "kernel": { + "name": "Linux", + "release": "5.4.0-107-generic", + "version": "#121-Ubuntu SMP Thu Mar 24 16:04:27 UTC 2022", + "machine": "x86_64", + "processor": "x86_64", + "os": "GNU/Linux", + "modules": { + "vboxsf": { + "size": "81920", + "refcount": "12", + "version": "6.1.34 r150636" + }, + "dm_multipath": { + "size": "32768", + "refcount": "0" + }, + "scsi_dh_rdac": { + "size": "16384", + "refcount": "0", + "version": "01.00.0000.0000" + }, + "scsi_dh_emc": { + "size": "16384", + "refcount": "0" + }, + "scsi_dh_alua": { + "size": "20480", + "refcount": "0", + "version": "2.0" + }, + "intel_rapl_msr": { + "size": "20480", + "refcount": "0" + }, + "intel_rapl_common": { + "size": "24576", + "refcount": "1" + }, + "rapl": { + "size": "20480", + "refcount": "0" + }, + "input_leds": { + "size": "16384", + "refcount": "0" + }, + "serio_raw": { + "size": "20480", + "refcount": "0" + }, + "mac_hid": { + "size": "16384", + "refcount": "0" + }, + "vboxguest": { + "size": "348160", + "refcount": "2", + "version": "6.1.34 r150636" + }, + "sch_fq_codel": { + "size": "20480", + "refcount": "3" + }, + "ipmi_devintf": { + "size": "20480", + "refcount": "0" + }, + "ipmi_msghandler": { + "size": "106496", + "refcount": "1", + "version": "39.2" + }, + "msr": { + "size": "16384", + "refcount": "0" + }, + "ip_tables": { + "size": "32768", + "refcount": "0" + }, + "x_tables": { + "size": "40960", + "refcount": "1" + }, + "autofs4": { + "size": "45056", + "refcount": "2" + }, + "btrfs": { + "size": "1261568", + "refcount": "0" + }, + "zstd_compress": { + "size": "167936", + "refcount": "1" + }, + "raid10": { + "size": "61440", + "refcount": "0" + }, + "raid456": { + "size": "155648", + "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": "114688", + "refcount": "4" + }, + "libcrc32c": { + "size": "16384", + "refcount": "2" + }, + "raid1": { + "size": "45056", + "refcount": "0" + }, + "raid0": { + "size": "24576", + "refcount": "0" + }, + "multipath": { + "size": "20480", + "refcount": "0" + }, + "linear": { + "size": "20480", + "refcount": "0" + }, + "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.34 r150636" + }, + "ttm": { + "size": "106496", + "refcount": "1" + }, + "drm_kms_helper": { + "size": "184320", + "refcount": "1" + }, + "syscopyarea": { + "size": "16384", + "refcount": "1" + }, + "aesni_intel": { + "size": "372736", + "refcount": "0" + }, + "crypto_simd": { + "size": "16384", + "refcount": "1" + }, + "sysfillrect": { + "size": "16384", + "refcount": "1" + }, + "cryptd": { + "size": "24576", + "refcount": "2" + }, + "sysimgblt": { + "size": "16384", + "refcount": "1" + }, + "fb_sys_fops": { + "size": "16384", + "refcount": "1" + }, + "glue_helper": { + "size": "16384", + "refcount": "1" + }, + "psmouse": { + "size": "155648", + "refcount": "0" + }, + "drm": { + "size": "491520", + "refcount": "4" + }, + "ahci": { + "size": "40960", + "refcount": "3", + "version": "3.0" + }, + "libahci": { + "size": "32768", + "refcount": "1" + }, + "e1000": { + "size": "147456", + "refcount": "0", + "version": "7.3.21-k8-NAPI" + }, + "i2c_piix4": { + "size": "28672", + "refcount": "0" + }, + "pata_acpi": { + "size": "16384", + "refcount": "0", + "version": "0.2.3" + }, + "video": { + "size": "49152", + "refcount": "0" + } + } + }, + "os": "linux", + "os_version": "5.4.0-107-generic", + "platform": "ubuntu", + "platform_version": "20.04", + "platform_family": "debian", + "block_device": { + "loop1": { + "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" + }, + "loop4": { + "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" + }, + "loop0": { + "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": "268435456", + "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" + }, + "loop5": { + "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" + } + }, + "fips": { + "kernel": { + "enabled": false + } + }, + "systemd_paths": { + "temporary": "/tmp", + "temporary-large": "/var/tmp", + "system-binaries": "/usr/bin", + "system-include": "/usr/include", + "system-library-private": "/usr/lib", + "system-library-arch": "/usr/lib/x86_64-linux-gnu", + "system-shared": "/usr/share", + "system-configuration-factory": "/usr/share/factory/etc", + "system-state-factory": "/usr/share/factory/var", + "system-configuration": "/etc", + "system-runtime": "/run", + "system-runtime-logs": "/run/log", + "system-state-private": "/var/lib", + "system-state-logs": "/var/log", + "system-state-cache": "/var/cache", + "system-state-spool": "/var/spool", + "user-binaries": "/root/.local/bin", + "user-library-private": "/root/.local/lib", + "user-library-arch": "/root/.local/lib/x86_64-linux-gnu", + "user-shared": "/root/.local/share", + "user-configuration": "/root/.config", + "user-runtime": "/run/user/1000", + "user-state-cache": "/root/.cache", + "user": "/root", + "user-documents": "/root", + "user-music": "/root", + "user-pictures": "/root", + "user-videos": "/root", + "user-download": "/root", + "user-public": "/root", + "user-templates": "/root", + "user-desktop": "/root/Desktop", + "search-binaries": "/usr/local/sbin", + "search-binaries-default": "/usr/local/sbin", + "search-library-private": "/root/.local/lib", + "search-library-arch": "/root/.local/lib/x86_64-linux-gnu", + "search-shared": "/root/.local/share", + "search-configuration-factory": "/usr/local/share/factory/etc", + "search-state-factory": "/usr/local/share/factory/var", + "search-configuration": "/root/.config" + }, + "hostnamectl": { + "static_hostname": "ubuntu2004.localdomain", + "icon_name": "computer-vm", + "chassis": "vm", + "machine_id": "c671038f014e482ba1c6686dea08c7b1", + "boot_id": "fd129507820140cb9d17afdfd19de86b", + "virtualization": "oracle", + "operating_system": "Ubuntu 20.04.4 LTS", + "kernel": "Linux 5.4.0-107-generic", + "architecture": "x86-64" + }, + "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" + } + }, + "state": "unknown" + }, + "eth0": { + "type": "eth", + "number": "0", + "mtu": "1500", + "flags": [ + "BROADCAST", + "MULTICAST", + "UP", + "LOWER_UP" + ], + "encapsulation": "Ethernet", + "addresses": { + "08:00:27:B5:F3:6E": { + "family": "lladdr" + }, + "10.0.2.15": { + "family": "inet", + "prefixlen": "24", + "netmask": "255.255.255.0", + "broadcast": "10.0.2.255", + "scope": "Global" + }, + "fe80::a00:27ff:feb5:f36e": { + "family": "inet6", + "prefixlen": "64", + "scope": "Link", + "tags": [ + + ] + } + }, + "state": "up", + "arp": { + "10.0.2.2": "52:54:00:12:35:02" + }, + "routes": [ + { + "destination": "default", + "family": "inet", + "via": "10.0.2.2", + "metric": "100", + "proto": "dhcp", + "src": "10.0.2.15" + }, + { + "destination": "10.0.2.0/24", + "family": "inet", + "scope": "link", + "proto": "kernel", + "src": "10.0.2.15" + }, + { + "destination": "10.0.2.2", + "family": "inet", + "scope": "link", + "metric": "100", + "proto": "dhcp", + "src": "10.0.2.15" + }, + { + "destination": "fe80::/64", + "family": "inet6", + "metric": "256", + "proto": "kernel" + } + ], + "link_speed": 1000, + "duplex": "Full", + "port": "Twisted Pair", + "transceiver": "internal", + "auto_negotiation": "on", + "mdi_x": "off (auto)", + "ring_params": { + "max_rx": 4096, + "max_rx_mini": 0, + "max_rx_jumbo": 0, + "max_tx": 4096, + "current_rx": 256, + "current_rx_mini": 0, + "current_rx_jumbo": 0, + "current_tx": 256 + } + }, + "eth1": { + "type": "eth", + "number": "1", + "mtu": "1500", + "flags": [ + "BROADCAST", + "MULTICAST", + "UP", + "LOWER_UP" + ], + "encapsulation": "Ethernet", + "addresses": { + "08:00:27:4C:80:A3": { + "family": "lladdr" + }, + "192.168.56.6": { + "family": "inet", + "prefixlen": "24", + "netmask": "255.255.255.0", + "broadcast": "192.168.56.255", + "scope": "Global" + }, + "fe80::a00:27ff:fe4c:80a3": { + "family": "inet6", + "prefixlen": "64", + "scope": "Link", + "tags": [ + + ] + } + }, + "state": "up", + "routes": [ + { + "destination": "192.168.56.0/24", + "family": "inet", + "scope": "link", + "proto": "kernel", + "src": "192.168.56.6" + }, + { + "destination": "fe80::/64", + "family": "inet6", + "metric": "256", + "proto": "kernel" + } + ], + "link_speed": 1000, + "duplex": "Full", + "port": "Twisted Pair", + "transceiver": "internal", + "auto_negotiation": "on", + "mdi_x": "off (auto)", + "ring_params": { + "max_rx": 4096, + "max_rx_mini": 0, + "max_rx_jumbo": 0, + "max_tx": 4096, + "current_rx": 256, + "current_rx_mini": 0, + "current_rx_jumbo": 0, + "current_tx": 256 + } + } + }, + "default_interface": "eth0", + "default_gateway": "10.0.2.2" + }, + "counters": { + "network": { + "interfaces": { + "lo": { + "tx": { + "queuelen": "1000", + "bytes": "3720", + "packets": "40", + "errors": "0", + "drop": "0", + "carrier": "0", + "collisions": "0" + }, + "rx": { + "bytes": "3720", + "packets": "40", + "errors": "0", + "drop": "0", + "overrun": "0" + } + }, + "eth0": { + "tx": { + "queuelen": "1000", + "bytes": "341414", + "packets": "2049", + "errors": "0", + "drop": "0", + "carrier": "0", + "collisions": "0" + }, + "rx": { + "bytes": "320104", + "packets": "2449", + "errors": "0", + "drop": "0", + "overrun": "0" + } + }, + "eth1": { + "tx": { + "queuelen": "1000", + "bytes": "1156", + "packets": "14", + "errors": "0", + "drop": "0", + "carrier": "0", + "collisions": "0" + }, + "rx": { + "bytes": "3300", + "packets": "55", + "errors": "0", + "drop": "0", + "overrun": "0" + } + } + } + } + }, + "ipaddress": "10.0.2.15", + "macaddress": "08:00:27:B5:F3:6E", + "ip6address": "fe80::a00:27ff:fe4c:80a3", + "languages": { + "perl": { + "version": "5.30.0", + "archname": "x86_64-linux-gnu-thread-multi" + }, + "c": { + "gcc": { + "target": "x86_64-linux-gnu", + "configured_with": "../src/configure -v --with-pkgversion='Ubuntu 9.4.0-1ubuntu1~20.04.1' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr --with-gcc-major-version-only --program-suffix=-9 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib=auto --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none=/build/gcc-9-Av3uEd/gcc-9-9.4.0/debian/tmp-nvptx/usr,hsa --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu", + "thread_model": "posix", + "description": "gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1) ", + "version": "9.4.0" + } + }, + "ruby": { + "platform": "x86_64-linux-gnu", + "version": "2.7.0", + "release_date": "2019-12-25", + "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/bin", + "ruby_bin": "/usr/bin/ruby2.7", + "gems_dir": "/var/lib/gems/2.7.0", + "gem_bin": "/usr/bin/gem2.7" + }, + "nodejs": { + "version": "14.19.3" + } + }, + "keys": { + "ssh": { + "host_rsa_public": "AAAAB3NzaC1yc2EAAAADAQABAAABgQDF990mm+o3JG3/02/VhJ4vsZyiJJ0uW3NyIxqMR7DLxT0HHBg4HX/A8UaXxCQRG2GSM9Xz20D74p84cyu9AVUfhkHTKezUn5iH7Agw18YKkR3o/VUnLUg7UCuZfPubx8rlQC/XODcz6v+VlSYKtO6nCMF/dFOrdKJ36Knhop5ms5z8fFgHwdZBJDIOutBXp95ikvugZ0HOST09T+n7SdNLOT551Poa27CNlBaN245CUe+X9gnBSxJwfztX+tXNxJn6t6MGR1AlNTm3oh0hrgCcCPnkdgYIdg6i0Luy6HHSM42tQHsNomhhJgX6BTl4zJ+lXMbcvrvzsTpheD4jMkNxX1PstAzCVlbTpviZ8jn79y1h4i1ACjL7WYH4bEeCmwOCMH3Vd6PAjt84YZ4BgGwWXU2NNB+++pOHNV/FJTLlGrYXEs4kj/ATAFRshroYNM1stVi+Rm01C4V/qYEa/0Oinv96QfB3RF9lTy866d+PKMhS5QH87HwBeJt5K1s5pzc=", + "host_ecdsa_public": "AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJghFhd76I/FRcW2HoOFUHZKccLMZbzucOjjf0O6MaRCCPcLqyP2h0hBqOScuayk8bPOLKLS+hwzSIqKiITJZlE=", + "host_ecdsa_type": "ecdsa-sha2-nistp256", + "host_ed25519_public": "AAAAC3NzaC1lZDI1NTE5AAAAIBwk+ac2ZTxsapEby5jQp8KKMuSKrwzFfL2h/11NMqb8" + } + }, + "chef_packages": { + "ohai": { + "version": "15.12.0", + "ohai_root": "/opt/chef/embedded/lib/ruby/gems/2.6.0/gems/ohai-15.12.0/lib/ohai" + }, + "chef": { + "version": "15.13.8", + "chef_root": "/opt/chef/embedded/lib/ruby/gems/2.6.0/gems/chef-15.13.8/lib" + } + }, + "root_group": "root", + "hostname": "ubuntu2004", + "machinename": "ubuntu2004.localdomain", + "fqdn": "ubuntu2004.localdomain", + "domain": "localdomain", + "shard_seed": 8007109, + "filesystem": { + "by_device": { + "udev": { + "kb_size": "455052", + "kb_used": "0", + "kb_available": "455052", + "percent_used": "0%", + "total_inodes": "113763", + "inodes_used": "432", + "inodes_available": "113331", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "size=455052k", + "nr_inodes=113763", + "mode=755" + ], + "mounts": [ + "/dev" + ] + }, + "tmpfs": { + "kb_size": "100004", + "kb_used": "0", + "kb_available": "100004", + "percent_used": "0%", + "total_inodes": "125008", + "inodes_used": "22", + "inodes_available": "124986", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "size=100004k", + "mode=700", + "uid=1000", + "gid=1000" + ], + "mounts": [ + "/run", + "/dev/shm", + "/run/lock", + "/sys/fs/cgroup", + "/run/user/1000" + ] + }, + "/dev/sda3": { + "kb_size": "129125532", + "kb_used": "4324236", + "kb_available": "118199056", + "percent_used": "4%", + "total_inodes": "8232960", + "inodes_used": "166382", + "inodes_available": "8066578", + "inodes_percent_used": "3%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime", + "errors=remount-ro" + ], + "uuid": "93e56e87-d555-49b8-ae66-eb769adcaa6e", + "mounts": [ + "/" + ] + }, + "/dev/sda1": { + "kb_size": "466664", + "kb_used": "206192", + "kb_available": "225568", + "percent_used": "48%", + "total_inodes": "124672", + "inodes_used": "316", + "inodes_available": "124356", + "inodes_percent_used": "1%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime" + ], + "uuid": "6ea96ce0-09f5-4ad4-b6bb-b98789081685", + "mounts": [ + "/boot" + ] + }, + "v-csc-739684c4d": { + "kb_size": "976235204", + "kb_used": "667525544", + "kb_available": "308709660", + "percent_used": "69%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "mounts": [ + "/tmp/vagrant-chef/598d2b35b952f08e3f21d97a80fa7b8b/cookbooks" + ] + }, + "v-csc-1cb8244c4": { + "kb_size": "976235204", + "kb_used": "667525544", + "kb_available": "308709660", + "percent_used": "69%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "mounts": [ + "/tmp/vagrant-chef/10487ca2c138d025bf56ec2f9d36b3df/cookbooks" + ] + }, + "v-cse-b51052476": { + "kb_size": "976235204", + "kb_used": "667525544", + "kb_available": "308709660", + "percent_used": "69%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "mounts": [ + "/tmp/vagrant-chef/4ef9f7054db7390e352845d1b823179a/environments" + ] + }, + "v-csr-09c2592a7": { + "kb_size": "976235204", + "kb_used": "667525544", + "kb_available": "308709660", + "percent_used": "69%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "mounts": [ + "/tmp/vagrant-chef/a2b3b9ec0045ddd6811a62f251a38d0b/roles" + ] + }, + "v-csdb-967c7b1df": { + "kb_size": "976235204", + "kb_used": "667525544", + "kb_available": "308709660", + "percent_used": "69%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "mounts": [ + "/tmp/vagrant-chef/ee47c56074bd9d8f6bf1ffe056e04234/data_bags" + ] + }, + "v-csn-d26196e28": { + "kb_size": "976235204", + "kb_used": "667525544", + "kb_available": "308709660", + "percent_used": "69%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "mounts": [ + "/tmp/vagrant-chef/f43d5826f5c6edbc529dd61f2374efd8/nodes" + ] + }, + "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" + ], + "mounts": [ + "/sys/fs/cgroup/unified" + ] + }, + "cgroup": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "pids" + ], + "mounts": [ + "/sys/fs/cgroup/systemd", + "/sys/fs/cgroup/net_cls,net_prio", + "/sys/fs/cgroup/cpuset", + "/sys/fs/cgroup/freezer", + "/sys/fs/cgroup/devices", + "/sys/fs/cgroup/cpu,cpuacct", + "/sys/fs/cgroup/memory", + "/sys/fs/cgroup/hugetlb", + "/sys/fs/cgroup/blkio", + "/sys/fs/cgroup/rdma", + "/sys/fs/cgroup/perf_event", + "/sys/fs/cgroup/pids" + ] + }, + "pstore": { + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/fs/pstore" + ] + }, + "none": { + "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=28", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=16437" + ], + "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" + ] + }, + "tracefs": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/tracing" + ] + }, + "debugfs": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "mounts": [ + "/sys/kernel/debug" + ] + }, + "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" + ] + }, + "/dev/sda": { + "mounts": [ + + ] + }, + "/dev/sda2": { + "fs_type": "swap", + "uuid": "5bde3f46-fa48-4232-b33d-3a2e2a012b78", + "mounts": [ + + ] + } + }, + "by_mountpoint": { + "/dev": { + "kb_size": "455052", + "kb_used": "0", + "kb_available": "455052", + "percent_used": "0%", + "total_inodes": "113763", + "inodes_used": "432", + "inodes_available": "113331", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "size=455052k", + "nr_inodes=113763", + "mode=755" + ], + "devices": [ + "udev" + ] + }, + "/run": { + "kb_size": "100008", + "kb_used": "984", + "kb_available": "99024", + "percent_used": "1%", + "total_inodes": "125008", + "inodes_used": "654", + "inodes_available": "124354", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "size=100008k", + "mode=755" + ], + "devices": [ + "tmpfs" + ] + }, + "/": { + "kb_size": "129125532", + "kb_used": "4324236", + "kb_available": "118199056", + "percent_used": "4%", + "total_inodes": "8232960", + "inodes_used": "166382", + "inodes_available": "8066578", + "inodes_percent_used": "3%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime", + "errors=remount-ro" + ], + "uuid": "93e56e87-d555-49b8-ae66-eb769adcaa6e", + "devices": [ + "/dev/sda3" + ] + }, + "/dev/shm": { + "kb_size": "500032", + "kb_used": "0", + "kb_available": "500032", + "percent_used": "0%", + "total_inodes": "125008", + "inodes_used": "4", + "inodes_available": "125004", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev" + ], + "devices": [ + "tmpfs" + ] + }, + "/run/lock": { + "kb_size": "5120", + "kb_used": "0", + "kb_available": "5120", + "percent_used": "0%", + "total_inodes": "125008", + "inodes_used": "4", + "inodes_available": "125004", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "size=5120k" + ], + "devices": [ + "tmpfs" + ] + }, + "/sys/fs/cgroup": { + "kb_size": "500032", + "kb_used": "0", + "kb_available": "500032", + "percent_used": "0%", + "total_inodes": "125008", + "inodes_used": "18", + "inodes_available": "124990", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "mode=755" + ], + "devices": [ + "tmpfs" + ] + }, + "/boot": { + "kb_size": "466664", + "kb_used": "206192", + "kb_available": "225568", + "percent_used": "48%", + "total_inodes": "124672", + "inodes_used": "316", + "inodes_available": "124356", + "inodes_percent_used": "1%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime" + ], + "uuid": "6ea96ce0-09f5-4ad4-b6bb-b98789081685", + "devices": [ + "/dev/sda1" + ] + }, + "/tmp/vagrant-chef/598d2b35b952f08e3f21d97a80fa7b8b/cookbooks": { + "kb_size": "976235204", + "kb_used": "667525544", + "kb_available": "308709660", + "percent_used": "69%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "devices": [ + "v-csc-739684c4d" + ] + }, + "/tmp/vagrant-chef/10487ca2c138d025bf56ec2f9d36b3df/cookbooks": { + "kb_size": "976235204", + "kb_used": "667525544", + "kb_available": "308709660", + "percent_used": "69%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "devices": [ + "v-csc-1cb8244c4" + ] + }, + "/tmp/vagrant-chef/4ef9f7054db7390e352845d1b823179a/environments": { + "kb_size": "976235204", + "kb_used": "667525544", + "kb_available": "308709660", + "percent_used": "69%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "devices": [ + "v-cse-b51052476" + ] + }, + "/tmp/vagrant-chef/a2b3b9ec0045ddd6811a62f251a38d0b/roles": { + "kb_size": "976235204", + "kb_used": "667525544", + "kb_available": "308709660", + "percent_used": "69%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "devices": [ + "v-csr-09c2592a7" + ] + }, + "/tmp/vagrant-chef/ee47c56074bd9d8f6bf1ffe056e04234/data_bags": { + "kb_size": "976235204", + "kb_used": "667525544", + "kb_available": "308709660", + "percent_used": "69%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "devices": [ + "v-csdb-967c7b1df" + ] + }, + "/tmp/vagrant-chef/f43d5826f5c6edbc529dd61f2374efd8/nodes": { + "kb_size": "976235204", + "kb_used": "667525544", + "kb_available": "308709660", + "percent_used": "69%", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ], + "devices": [ + "v-csn-d26196e28" + ] + }, + "/run/user/1000": { + "kb_size": "100004", + "kb_used": "0", + "kb_available": "100004", + "percent_used": "0%", + "total_inodes": "125008", + "inodes_used": "22", + "inodes_available": "124986", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "size=100004k", + "mode=700", + "uid=1000", + "gid=1000" + ], + "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/unified": { + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "nsdelegate" + ], + "devices": [ + "cgroup2" + ] + }, + "/sys/fs/cgroup/systemd": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "xattr", + "name=systemd" + ], + "devices": [ + "cgroup" + ] + }, + "/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": [ + "none" + ] + }, + "/sys/fs/cgroup/net_cls,net_prio": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "net_cls", + "net_prio" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/cpuset": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "cpuset" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/freezer": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "freezer" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/devices": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "devices" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/cpu,cpuacct": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "cpu", + "cpuacct" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/memory": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "memory" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/hugetlb": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "hugetlb" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/blkio": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "blkio" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/rdma": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "rdma" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/perf_event": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "perf_event" + ], + "devices": [ + "cgroup" + ] + }, + "/sys/fs/cgroup/pids": { + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "pids" + ], + "devices": [ + "cgroup" + ] + }, + "/proc/sys/fs/binfmt_misc": { + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=28", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=16437" + ], + "devices": [ + "systemd-1" + ] + }, + "/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/tracing": { + "fs_type": "tracefs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "tracefs" + ] + }, + "/sys/kernel/debug": { + "fs_type": "debugfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ], + "devices": [ + "debugfs" + ] + }, + "/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" + ] + } + }, + "by_pair": { + "udev,/dev": { + "device": "udev", + "kb_size": "455052", + "kb_used": "0", + "kb_available": "455052", + "percent_used": "0%", + "mount": "/dev", + "total_inodes": "113763", + "inodes_used": "432", + "inodes_available": "113331", + "inodes_percent_used": "1%", + "fs_type": "devtmpfs", + "mount_options": [ + "rw", + "nosuid", + "noexec", + "relatime", + "size=455052k", + "nr_inodes=113763", + "mode=755" + ] + }, + "tmpfs,/run": { + "device": "tmpfs", + "kb_size": "100008", + "kb_used": "984", + "kb_available": "99024", + "percent_used": "1%", + "mount": "/run", + "total_inodes": "125008", + "inodes_used": "654", + "inodes_available": "124354", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "size=100008k", + "mode=755" + ] + }, + "/dev/sda3,/": { + "device": "/dev/sda3", + "kb_size": "129125532", + "kb_used": "4324236", + "kb_available": "118199056", + "percent_used": "4%", + "mount": "/", + "total_inodes": "8232960", + "inodes_used": "166382", + "inodes_available": "8066578", + "inodes_percent_used": "3%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime", + "errors=remount-ro" + ], + "uuid": "93e56e87-d555-49b8-ae66-eb769adcaa6e" + }, + "tmpfs,/dev/shm": { + "device": "tmpfs", + "kb_size": "500032", + "kb_used": "0", + "kb_available": "500032", + "percent_used": "0%", + "mount": "/dev/shm", + "total_inodes": "125008", + "inodes_used": "4", + "inodes_available": "125004", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev" + ] + }, + "tmpfs,/run/lock": { + "device": "tmpfs", + "kb_size": "5120", + "kb_used": "0", + "kb_available": "5120", + "percent_used": "0%", + "mount": "/run/lock", + "total_inodes": "125008", + "inodes_used": "4", + "inodes_available": "125004", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "size=5120k" + ] + }, + "tmpfs,/sys/fs/cgroup": { + "device": "tmpfs", + "kb_size": "500032", + "kb_used": "0", + "kb_available": "500032", + "percent_used": "0%", + "mount": "/sys/fs/cgroup", + "total_inodes": "125008", + "inodes_used": "18", + "inodes_available": "124990", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "ro", + "nosuid", + "nodev", + "noexec", + "mode=755" + ] + }, + "/dev/sda1,/boot": { + "device": "/dev/sda1", + "kb_size": "466664", + "kb_used": "206192", + "kb_available": "225568", + "percent_used": "48%", + "mount": "/boot", + "total_inodes": "124672", + "inodes_used": "316", + "inodes_available": "124356", + "inodes_percent_used": "1%", + "fs_type": "ext4", + "mount_options": [ + "rw", + "relatime" + ], + "uuid": "6ea96ce0-09f5-4ad4-b6bb-b98789081685" + }, + "v-csc-739684c4d,/tmp/vagrant-chef/598d2b35b952f08e3f21d97a80fa7b8b/cookbooks": { + "device": "v-csc-739684c4d", + "kb_size": "976235204", + "kb_used": "667525544", + "kb_available": "308709660", + "percent_used": "69%", + "mount": "/tmp/vagrant-chef/598d2b35b952f08e3f21d97a80fa7b8b/cookbooks", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ] + }, + "v-csc-1cb8244c4,/tmp/vagrant-chef/10487ca2c138d025bf56ec2f9d36b3df/cookbooks": { + "device": "v-csc-1cb8244c4", + "kb_size": "976235204", + "kb_used": "667525544", + "kb_available": "308709660", + "percent_used": "69%", + "mount": "/tmp/vagrant-chef/10487ca2c138d025bf56ec2f9d36b3df/cookbooks", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ] + }, + "v-cse-b51052476,/tmp/vagrant-chef/4ef9f7054db7390e352845d1b823179a/environments": { + "device": "v-cse-b51052476", + "kb_size": "976235204", + "kb_used": "667525544", + "kb_available": "308709660", + "percent_used": "69%", + "mount": "/tmp/vagrant-chef/4ef9f7054db7390e352845d1b823179a/environments", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ] + }, + "v-csr-09c2592a7,/tmp/vagrant-chef/a2b3b9ec0045ddd6811a62f251a38d0b/roles": { + "device": "v-csr-09c2592a7", + "kb_size": "976235204", + "kb_used": "667525544", + "kb_available": "308709660", + "percent_used": "69%", + "mount": "/tmp/vagrant-chef/a2b3b9ec0045ddd6811a62f251a38d0b/roles", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ] + }, + "v-csdb-967c7b1df,/tmp/vagrant-chef/ee47c56074bd9d8f6bf1ffe056e04234/data_bags": { + "device": "v-csdb-967c7b1df", + "kb_size": "976235204", + "kb_used": "667525544", + "kb_available": "308709660", + "percent_used": "69%", + "mount": "/tmp/vagrant-chef/ee47c56074bd9d8f6bf1ffe056e04234/data_bags", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ] + }, + "v-csn-d26196e28,/tmp/vagrant-chef/f43d5826f5c6edbc529dd61f2374efd8/nodes": { + "device": "v-csn-d26196e28", + "kb_size": "976235204", + "kb_used": "667525544", + "kb_available": "308709660", + "percent_used": "69%", + "mount": "/tmp/vagrant-chef/f43d5826f5c6edbc529dd61f2374efd8/nodes", + "fs_type": "vboxsf", + "mount_options": [ + "rw", + "nodev", + "relatime", + "iocharset=utf8", + "uid=1000", + "gid=1000", + "_netdev" + ] + }, + "tmpfs,/run/user/1000": { + "device": "tmpfs", + "kb_size": "100004", + "kb_used": "0", + "kb_available": "100004", + "percent_used": "0%", + "mount": "/run/user/1000", + "total_inodes": "125008", + "inodes_used": "22", + "inodes_available": "124986", + "inodes_percent_used": "1%", + "fs_type": "tmpfs", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "relatime", + "size=100004k", + "mode=700", + "uid=1000", + "gid=1000" + ] + }, + "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/unified": { + "device": "cgroup2", + "mount": "/sys/fs/cgroup/unified", + "fs_type": "cgroup2", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "nsdelegate" + ] + }, + "cgroup,/sys/fs/cgroup/systemd": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/systemd", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "xattr", + "name=systemd" + ] + }, + "pstore,/sys/fs/pstore": { + "device": "pstore", + "mount": "/sys/fs/pstore", + "fs_type": "pstore", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime" + ] + }, + "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", + "net_cls", + "net_prio" + ] + }, + "cgroup,/sys/fs/cgroup/cpuset": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/cpuset", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "cpuset" + ] + }, + "cgroup,/sys/fs/cgroup/freezer": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/freezer", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "freezer" + ] + }, + "cgroup,/sys/fs/cgroup/devices": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/devices", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "devices" + ] + }, + "cgroup,/sys/fs/cgroup/cpu,cpuacct": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/cpu,cpuacct", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "cpu", + "cpuacct" + ] + }, + "cgroup,/sys/fs/cgroup/memory": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/memory", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "memory" + ] + }, + "cgroup,/sys/fs/cgroup/hugetlb": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/hugetlb", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "hugetlb" + ] + }, + "cgroup,/sys/fs/cgroup/blkio": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/blkio", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "blkio" + ] + }, + "cgroup,/sys/fs/cgroup/rdma": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/rdma", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "rdma" + ] + }, + "cgroup,/sys/fs/cgroup/perf_event": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/perf_event", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "perf_event" + ] + }, + "cgroup,/sys/fs/cgroup/pids": { + "device": "cgroup", + "mount": "/sys/fs/cgroup/pids", + "fs_type": "cgroup", + "mount_options": [ + "rw", + "nosuid", + "nodev", + "noexec", + "relatime", + "pids" + ] + }, + "systemd-1,/proc/sys/fs/binfmt_misc": { + "device": "systemd-1", + "mount": "/proc/sys/fs/binfmt_misc", + "fs_type": "autofs", + "mount_options": [ + "rw", + "relatime", + "fd=28", + "pgrp=1", + "timeout=0", + "minproto=5", + "maxproto=5", + "direct", + "pipe_ino=16437" + ] + }, + "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" + ] + }, + "tracefs,/sys/kernel/tracing": { + "device": "tracefs", + "mount": "/sys/kernel/tracing", + "fs_type": "tracefs", + "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" + ] + }, + "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" + ] + }, + "/dev/sda,": { + "device": "/dev/sda" + }, + "/dev/sda2,": { + "device": "/dev/sda2", + "fs_type": "swap", + "uuid": "5bde3f46-fa48-4232-b33d-3a2e2a012b78" + } + } + }, + "sysconf": { + "LINK_MAX": 65000, + "_POSIX_LINK_MAX": 65000, + "MAX_CANON": 255, + "_POSIX_MAX_CANON": 255, + "MAX_INPUT": 255, + "_POSIX_MAX_INPUT": 255, + "NAME_MAX": 255, + "_POSIX_NAME_MAX": 255, + "PATH_MAX": 4096, + "_POSIX_PATH_MAX": 4096, + "PIPE_BUF": 4096, + "_POSIX_PIPE_BUF": 4096, + "SOCK_MAXBUF": null, + "_POSIX_ASYNC_IO": null, + "_POSIX_CHOWN_RESTRICTED": 1, + "_POSIX_NO_TRUNC": 1, + "_POSIX_PRIO_IO": null, + "_POSIX_SYNC_IO": null, + "_POSIX_VDISABLE": 0, + "ARG_MAX": 2097152, + "ATEXIT_MAX": 2147483647, + "CHAR_BIT": 8, + "CHAR_MAX": 127, + "CHAR_MIN": -128, + "CHILD_MAX": 3554, + "CLK_TCK": 100, + "INT_MAX": 2147483647, + "INT_MIN": -2147483648, + "IOV_MAX": 1024, + "LOGNAME_MAX": 256, + "LONG_BIT": 64, + "MB_LEN_MAX": 16, + "NGROUPS_MAX": 65536, + "NL_ARGMAX": 4096, + "NL_LANGMAX": 2048, + "NL_MSGMAX": 2147483647, + "NL_NMAX": 2147483647, + "NL_SETMAX": 2147483647, + "NL_TEXTMAX": 2147483647, + "NSS_BUFLEN_GROUP": 1024, + "NSS_BUFLEN_PASSWD": 1024, + "NZERO": 20, + "OPEN_MAX": 1024, + "PAGESIZE": 4096, + "PAGE_SIZE": 4096, + "PASS_MAX": 8192, + "PTHREAD_DESTRUCTOR_ITERATIONS": 4, + "PTHREAD_KEYS_MAX": 1024, + "PTHREAD_STACK_MIN": 16384, + "PTHREAD_THREADS_MAX": null, + "SCHAR_MAX": 127, + "SCHAR_MIN": -128, + "SHRT_MAX": 32767, + "SHRT_MIN": -32768, + "SSIZE_MAX": 32767, + "TTY_NAME_MAX": 32, + "TZNAME_MAX": null, + "UCHAR_MAX": 255, + "UINT_MAX": 4294967295, + "UIO_MAXIOV": 1024, + "ULONG_MAX": 18446744073709551615, + "USHRT_MAX": 65535, + "WORD_BIT": 32, + "_AVPHYS_PAGES": 45736, + "_NPROCESSORS_CONF": 2, + "_NPROCESSORS_ONLN": 2, + "_PHYS_PAGES": 250017, + "_POSIX_ARG_MAX": 2097152, + "_POSIX_ASYNCHRONOUS_IO": 200809, + "_POSIX_CHILD_MAX": 3554, + "_POSIX_FSYNC": 200809, + "_POSIX_JOB_CONTROL": 1, + "_POSIX_MAPPED_FILES": 200809, + "_POSIX_MEMLOCK": 200809, + "_POSIX_MEMLOCK_RANGE": 200809, + "_POSIX_MEMORY_PROTECTION": 200809, + "_POSIX_MESSAGE_PASSING": 200809, + "_POSIX_NGROUPS_MAX": 65536, + "_POSIX_OPEN_MAX": 1024, + "_POSIX_PII": null, + "_POSIX_PII_INTERNET": null, + "_POSIX_PII_INTERNET_DGRAM": null, + "_POSIX_PII_INTERNET_STREAM": null, + "_POSIX_PII_OSI": null, + "_POSIX_PII_OSI_CLTS": null, + "_POSIX_PII_OSI_COTS": null, + "_POSIX_PII_OSI_M": null, + "_POSIX_PII_SOCKET": null, + "_POSIX_PII_XTI": null, + "_POSIX_POLL": null, + "_POSIX_PRIORITIZED_IO": 200809, + "_POSIX_PRIORITY_SCHEDULING": 200809, + "_POSIX_REALTIME_SIGNALS": 200809, + "_POSIX_SAVED_IDS": 1, + "_POSIX_SELECT": null, + "_POSIX_SEMAPHORES": 200809, + "_POSIX_SHARED_MEMORY_OBJECTS": 200809, + "_POSIX_SSIZE_MAX": 32767, + "_POSIX_STREAM_MAX": 16, + "_POSIX_SYNCHRONIZED_IO": 200809, + "_POSIX_THREADS": 200809, + "_POSIX_THREAD_ATTR_STACKADDR": 200809, + "_POSIX_THREAD_ATTR_STACKSIZE": 200809, + "_POSIX_THREAD_PRIORITY_SCHEDULING": 200809, + "_POSIX_THREAD_PRIO_INHERIT": 200809, + "_POSIX_THREAD_PRIO_PROTECT": 200809, + "_POSIX_THREAD_ROBUST_PRIO_INHERIT": null, + "_POSIX_THREAD_ROBUST_PRIO_PROTECT": null, + "_POSIX_THREAD_PROCESS_SHARED": 200809, + "_POSIX_THREAD_SAFE_FUNCTIONS": 200809, + "_POSIX_TIMERS": 200809, + "TIMER_MAX": null, + "_POSIX_TZNAME_MAX": null, + "_POSIX_VERSION": 200809, + "_T_IOV_MAX": null, + "_XOPEN_CRYPT": null, + "_XOPEN_ENH_I18N": 1, + "_XOPEN_LEGACY": 1, + "_XOPEN_REALTIME": 1, + "_XOPEN_REALTIME_THREADS": 1, + "_XOPEN_SHM": 1, + "_XOPEN_UNIX": 1, + "_XOPEN_VERSION": 700, + "_XOPEN_XCU_VERSION": 4, + "_XOPEN_XPG2": 1, + "_XOPEN_XPG3": 1, + "_XOPEN_XPG4": 1, + "BC_BASE_MAX": 99, + "BC_DIM_MAX": 2048, + "BC_SCALE_MAX": 99, + "BC_STRING_MAX": 1000, + "CHARCLASS_NAME_MAX": 2048, + "COLL_WEIGHTS_MAX": 255, + "EQUIV_CLASS_MAX": null, + "EXPR_NEST_MAX": 32, + "LINE_MAX": 2048, + "POSIX2_BC_BASE_MAX": 99, + "POSIX2_BC_DIM_MAX": 2048, + "POSIX2_BC_SCALE_MAX": 99, + "POSIX2_BC_STRING_MAX": 1000, + "POSIX2_CHAR_TERM": 200809, + "POSIX2_COLL_WEIGHTS_MAX": 255, + "POSIX2_C_BIND": 200809, + "POSIX2_C_DEV": 200809, + "POSIX2_C_VERSION": 200809, + "POSIX2_EXPR_NEST_MAX": 32, + "POSIX2_FORT_DEV": null, + "POSIX2_FORT_RUN": null, + "_POSIX2_LINE_MAX": 2048, + "POSIX2_LINE_MAX": 2048, + "POSIX2_LOCALEDEF": 200809, + "POSIX2_RE_DUP_MAX": 32767, + "POSIX2_SW_DEV": 200809, + "POSIX2_UPE": null, + "POSIX2_VERSION": 200809, + "RE_DUP_MAX": 32767, + "PATH": "/bin:/usr/bin", + "CS_PATH": "/bin:/usr/bin", + "LFS_CFLAGS": null, + "LFS_LDFLAGS": null, + "LFS_LIBS": null, + "LFS_LINTFLAGS": null, + "LFS64_CFLAGS": "-D_LARGEFILE64_SOURCE", + "LFS64_LDFLAGS": null, + "LFS64_LIBS": null, + "LFS64_LINTFLAGS": "-D_LARGEFILE64_SOURCE", + "_XBS5_WIDTH_RESTRICTED_ENVS": "XBS5_LP64_OFF64", + "XBS5_WIDTH_RESTRICTED_ENVS": "XBS5_LP64_OFF64", + "_XBS5_ILP32_OFF32": null, + "XBS5_ILP32_OFF32_CFLAGS": null, + "XBS5_ILP32_OFF32_LDFLAGS": null, + "XBS5_ILP32_OFF32_LIBS": null, + "XBS5_ILP32_OFF32_LINTFLAGS": null, + "_XBS5_ILP32_OFFBIG": null, + "XBS5_ILP32_OFFBIG_CFLAGS": null, + "XBS5_ILP32_OFFBIG_LDFLAGS": null, + "XBS5_ILP32_OFFBIG_LIBS": null, + "XBS5_ILP32_OFFBIG_LINTFLAGS": null, + "_XBS5_LP64_OFF64": 1, + "XBS5_LP64_OFF64_CFLAGS": "-m64", + "XBS5_LP64_OFF64_LDFLAGS": "-m64", + "XBS5_LP64_OFF64_LIBS": null, + "XBS5_LP64_OFF64_LINTFLAGS": null, + "_XBS5_LPBIG_OFFBIG": null, + "XBS5_LPBIG_OFFBIG_CFLAGS": null, + "XBS5_LPBIG_OFFBIG_LDFLAGS": null, + "XBS5_LPBIG_OFFBIG_LIBS": null, + "XBS5_LPBIG_OFFBIG_LINTFLAGS": null, + "_POSIX_V6_ILP32_OFF32": null, + "POSIX_V6_ILP32_OFF32_CFLAGS": null, + "POSIX_V6_ILP32_OFF32_LDFLAGS": null, + "POSIX_V6_ILP32_OFF32_LIBS": null, + "POSIX_V6_ILP32_OFF32_LINTFLAGS": null, + "_POSIX_V6_WIDTH_RESTRICTED_ENVS": "POSIX_V6_LP64_OFF64", + "POSIX_V6_WIDTH_RESTRICTED_ENVS": "POSIX_V6_LP64_OFF64", + "_POSIX_V6_ILP32_OFFBIG": null, + "POSIX_V6_ILP32_OFFBIG_CFLAGS": null, + "POSIX_V6_ILP32_OFFBIG_LDFLAGS": null, + "POSIX_V6_ILP32_OFFBIG_LIBS": null, + "POSIX_V6_ILP32_OFFBIG_LINTFLAGS": null, + "_POSIX_V6_LP64_OFF64": 1, + "POSIX_V6_LP64_OFF64_CFLAGS": "-m64", + "POSIX_V6_LP64_OFF64_LDFLAGS": "-m64", + "POSIX_V6_LP64_OFF64_LIBS": null, + "POSIX_V6_LP64_OFF64_LINTFLAGS": null, + "_POSIX_V6_LPBIG_OFFBIG": null, + "POSIX_V6_LPBIG_OFFBIG_CFLAGS": null, + "POSIX_V6_LPBIG_OFFBIG_LDFLAGS": null, + "POSIX_V6_LPBIG_OFFBIG_LIBS": null, + "POSIX_V6_LPBIG_OFFBIG_LINTFLAGS": null, + "_POSIX_V7_ILP32_OFF32": null, + "POSIX_V7_ILP32_OFF32_CFLAGS": null, + "POSIX_V7_ILP32_OFF32_LDFLAGS": null, + "POSIX_V7_ILP32_OFF32_LIBS": null, + "POSIX_V7_ILP32_OFF32_LINTFLAGS": null, + "_POSIX_V7_WIDTH_RESTRICTED_ENVS": "POSIX_V7_LP64_OFF64", + "POSIX_V7_WIDTH_RESTRICTED_ENVS": "POSIX_V7_LP64_OFF64", + "_POSIX_V7_ILP32_OFFBIG": null, + "POSIX_V7_ILP32_OFFBIG_CFLAGS": null, + "POSIX_V7_ILP32_OFFBIG_LDFLAGS": null, + "POSIX_V7_ILP32_OFFBIG_LIBS": null, + "POSIX_V7_ILP32_OFFBIG_LINTFLAGS": null, + "_POSIX_V7_LP64_OFF64": 1, + "POSIX_V7_LP64_OFF64_CFLAGS": "-m64", + "POSIX_V7_LP64_OFF64_LDFLAGS": "-m64", + "POSIX_V7_LP64_OFF64_LIBS": null, + "POSIX_V7_LP64_OFF64_LINTFLAGS": null, + "_POSIX_V7_LPBIG_OFFBIG": null, + "POSIX_V7_LPBIG_OFFBIG_CFLAGS": null, + "POSIX_V7_LPBIG_OFFBIG_LDFLAGS": null, + "POSIX_V7_LPBIG_OFFBIG_LIBS": null, + "POSIX_V7_LPBIG_OFFBIG_LINTFLAGS": null, + "_POSIX_ADVISORY_INFO": 200809, + "_POSIX_BARRIERS": 200809, + "_POSIX_BASE": null, + "_POSIX_C_LANG_SUPPORT": null, + "_POSIX_C_LANG_SUPPORT_R": null, + "_POSIX_CLOCK_SELECTION": 200809, + "_POSIX_CPUTIME": 200809, + "_POSIX_THREAD_CPUTIME": 200809, + "_POSIX_DEVICE_SPECIFIC": null, + "_POSIX_DEVICE_SPECIFIC_R": null, + "_POSIX_FD_MGMT": null, + "_POSIX_FIFO": null, + "_POSIX_PIPE": null, + "_POSIX_FILE_ATTRIBUTES": null, + "_POSIX_FILE_LOCKING": null, + "_POSIX_FILE_SYSTEM": null, + "_POSIX_MONOTONIC_CLOCK": 200809, + "_POSIX_MULTI_PROCESS": null, + "_POSIX_SINGLE_PROCESS": null, + "_POSIX_NETWORKING": null, + "_POSIX_READER_WRITER_LOCKS": 200809, + "_POSIX_SPIN_LOCKS": 200809, + "_POSIX_REGEXP": 1, + "_REGEX_VERSION": null, + "_POSIX_SHELL": 1, + "_POSIX_SIGNALS": null, + "_POSIX_SPAWN": 200809, + "_POSIX_SPORADIC_SERVER": null, + "_POSIX_THREAD_SPORADIC_SERVER": null, + "_POSIX_SYSTEM_DATABASE": null, + "_POSIX_SYSTEM_DATABASE_R": null, + "_POSIX_TIMEOUTS": 200809, + "_POSIX_TYPED_MEMORY_OBJECTS": null, + "_POSIX_USER_GROUPS": null, + "_POSIX_USER_GROUPS_R": null, + "POSIX2_PBS": null, + "POSIX2_PBS_ACCOUNTING": null, + "POSIX2_PBS_LOCATE": null, + "POSIX2_PBS_TRACK": null, + "POSIX2_PBS_MESSAGE": null, + "SYMLOOP_MAX": null, + "STREAM_MAX": 16, + "AIO_LISTIO_MAX": null, + "AIO_MAX": null, + "AIO_PRIO_DELTA_MAX": 20, + "DELAYTIMER_MAX": 2147483647, + "HOST_NAME_MAX": 64, + "LOGIN_NAME_MAX": 256, + "MQ_OPEN_MAX": null, + "MQ_PRIO_MAX": 32768, + "_POSIX_DEVICE_IO": null, + "_POSIX_TRACE": null, + "_POSIX_TRACE_EVENT_FILTER": null, + "_POSIX_TRACE_INHERIT": null, + "_POSIX_TRACE_LOG": null, + "RTSIG_MAX": 32, + "SEM_NSEMS_MAX": null, + "SEM_VALUE_MAX": 2147483647, + "SIGQUEUE_MAX": 3554, + "FILESIZEBITS": 64, + "POSIX_ALLOC_SIZE_MIN": 4096, + "POSIX_REC_INCR_XFER_SIZE": null, + "POSIX_REC_MAX_XFER_SIZE": null, + "POSIX_REC_MIN_XFER_SIZE": 4096, + "POSIX_REC_XFER_ALIGN": 4096, + "SYMLINK_MAX": null, + "GNU_LIBC_VERSION": "glibc 2.31", + "GNU_LIBPTHREAD_VERSION": "NPTL 2.31", + "POSIX2_SYMLINKS": 1, + "LEVEL1_ICACHE_SIZE": 32768, + "LEVEL1_ICACHE_ASSOC": 8, + "LEVEL1_ICACHE_LINESIZE": 64, + "LEVEL1_DCACHE_SIZE": 32768, + "LEVEL1_DCACHE_ASSOC": 8, + "LEVEL1_DCACHE_LINESIZE": 64, + "LEVEL2_CACHE_SIZE": 262144, + "LEVEL2_CACHE_ASSOC": 4, + "LEVEL2_CACHE_LINESIZE": 64, + "LEVEL3_CACHE_SIZE": 3145728, + "LEVEL3_CACHE_ASSOC": 12, + "LEVEL3_CACHE_LINESIZE": 64, + "LEVEL4_CACHE_SIZE": 0, + "LEVEL4_CACHE_ASSOC": 0, + "LEVEL4_CACHE_LINESIZE": 0, + "IPV6": 200809, + "RAW_SOCKETS": 200809, + "_POSIX_IPV6": 200809, + "_POSIX_RAW_SOCKETS": 200809 + }, + "command": { + "ps": "ps -ef" + }, + "packages": { + "accountsservice": { + "version": "0.6.55-0ubuntu12~20.04.5", + "arch": "amd64" + }, + "adduser": { + "version": "3.118ubuntu2", + "arch": "all" + }, + "adwaita-icon-theme": { + "version": "3.36.1-2ubuntu0.20.04.2", + "arch": "all" + }, + "alsa-topology-conf": { + "version": "1.2.2-1", + "arch": "all" + }, + "alsa-ucm-conf": { + "version": "1.2.2-1ubuntu0.13", + "arch": "all" + }, + "amd64-microcode": { + "version": "3.20191218.1ubuntu1", + "arch": "amd64" + }, + "apparmor": { + "version": "2.13.3-7ubuntu5.1", + "arch": "amd64" + }, + "apport": { + "version": "2.20.11-0ubuntu27.23", + "arch": "all" + }, + "apport-symptoms": { + "version": "0.23", + "arch": "all" + }, + "apt": { + "version": "2.0.6", + "arch": "amd64" + }, + "apt-transport-https": { + "version": "2.0.8", + "arch": "all" + }, + "apt-utils": { + "version": "2.0.6", + "arch": "amd64" + }, + "at": { + "version": "3.1.23-1ubuntu1", + "arch": "amd64" + }, + "at-spi2-core": { + "version": "2.36.0-2", + "arch": "amd64" + }, + "base-files": { + "version": "11ubuntu5.5", + "arch": "amd64" + }, + "base-passwd": { + "version": "3.5.47", + "arch": "amd64" + }, + "bash": { + "version": "5.0-6ubuntu1.1", + "arch": "amd64" + }, + "bash-completion": { + "version": "1:2.10-1ubuntu1", + "arch": "all" + }, + "bc": { + "version": "1.07.1-2build1", + "arch": "amd64" + }, + "bcache-tools": { + "version": "1.0.8-3ubuntu0.1", + "arch": "amd64" + }, + "bind9-dnsutils": { + "version": "1:9.16.1-0ubuntu2.10", + "arch": "amd64" + }, + "bind9-host": { + "version": "1:9.16.1-0ubuntu2.10", + "arch": "amd64" + }, + "bind9-libs": { + "version": "1:9.16.1-0ubuntu2.10", + "arch": "amd64" + }, + "binutils": { + "version": "2.34-6ubuntu1.3", + "arch": "amd64" + }, + "binutils-common": { + "version": "2.34-6ubuntu1.3", + "arch": "amd64" + }, + "binutils-x86-64-linux-gnu": { + "version": "2.34-6ubuntu1.3", + "arch": "amd64" + }, + "bolt": { + "version": "0.9.1-2~ubuntu20.04.1", + "arch": "amd64" + }, + "bsd-mailx": { + "version": "8.1.2-0.20180807cvs-1", + "arch": "amd64" + }, + "bsdmainutils": { + "version": "11.1.2ubuntu3", + "arch": "amd64" + }, + "bsdutils": { + "version": "1:2.34-0.1ubuntu9.3", + "arch": "amd64" + }, + "btrfs-progs": { + "version": "5.4.1-2", + "arch": "amd64" + }, + "build-essential": { + "version": "12.8ubuntu1.1", + "arch": "amd64" + }, + "busybox-initramfs": { + "version": "1:1.30.1-4ubuntu6.4", + "arch": "amd64" + }, + "busybox-static": { + "version": "1:1.30.1-4ubuntu6.4", + "arch": "amd64" + }, + "byobu": { + "version": "5.133-0ubuntu1", + "arch": "all" + }, + "bzip2": { + "version": "1.0.8-2", + "arch": "amd64" + }, + "ca-certificates": { + "version": "20210119~20.04.2", + "arch": "all" + }, + "chef": { + "version": "15.13.8-1", + "arch": "amd64" + }, + "cloud-guest-utils": { + "version": "0.31-7-gd99b2d76-0ubuntu1", + "arch": "all" + }, + "cloud-initramfs-copymods": { + "version": "0.45ubuntu2", + "arch": "all" + }, + "cloud-initramfs-dyn-netconf": { + "version": "0.45ubuntu2", + "arch": "all" + }, + "command-not-found": { + "version": "20.04.6", + "arch": "all" + }, + "console-setup": { + "version": "1.194ubuntu3", + "arch": "all" + }, + "console-setup-linux": { + "version": "1.194ubuntu3", + "arch": "all" + }, + "coreutils": { + "version": "8.30-3ubuntu2", + "arch": "amd64" + }, + "cpio": { + "version": "2.13+dfsg-2ubuntu0.3", + "arch": "amd64" + }, + "cpp": { + "version": "4:9.3.0-1ubuntu2", + "arch": "amd64" + }, + "cpp-9": { + "version": "9.4.0-1ubuntu1~20.04.1", + "arch": "amd64" + }, + "crda": { + "version": "3.18-1build1", + "arch": "amd64" + }, + "cron": { + "version": "3.0pl1-136ubuntu1", + "arch": "amd64" + }, + "cryptsetup": { + "version": "2:2.2.2-3ubuntu2.4", + "arch": "amd64" + }, + "cryptsetup-bin": { + "version": "2:2.2.2-3ubuntu2.4", + "arch": "amd64" + }, + "cryptsetup-initramfs": { + "version": "2:2.2.2-3ubuntu2.4", + "arch": "all" + }, + "cryptsetup-run": { + "version": "2:2.2.2-3ubuntu2.4", + "arch": "all" + }, + "curl": { + "version": "7.68.0-1ubuntu2.11", + "arch": "amd64" + }, + "dash": { + "version": "0.5.10.2-6", + "arch": "amd64" + }, + "dbus": { + "version": "1.12.16-2ubuntu2.1", + "arch": "amd64" + }, + "dbus-user-session": { + "version": "1.12.16-2ubuntu2.1", + "arch": "amd64" + }, + "dconf-gsettings-backend": { + "version": "0.36.0-1", + "arch": "amd64" + }, + "dconf-service": { + "version": "0.36.0-1", + "arch": "amd64" + }, + "dctrl-tools": { + "version": "2.24-3", + "arch": "amd64" + }, + "debconf": { + "version": "1.5.73", + "arch": "all" + }, + "debconf-i18n": { + "version": "1.5.73", + "arch": "all" + }, + "debianutils": { + "version": "4.9.1", + "arch": "amd64" + }, + "diffutils": { + "version": "1:3.7-3", + "arch": "amd64" + }, + "dirmngr": { + "version": "2.2.19-3ubuntu2.1", + "arch": "amd64" + }, + "distro-info": { + "version": "0.23ubuntu1", + "arch": "amd64" + }, + "distro-info-data": { + "version": "0.43ubuntu1.9", + "arch": "all" + }, + "dkms": { + "version": "2.8.1-5ubuntu2", + "arch": "all" + }, + "dmeventd": { + "version": "2:1.02.167-1ubuntu1", + "arch": "amd64" + }, + "dmidecode": { + "version": "3.2-3", + "arch": "amd64" + }, + "dmsetup": { + "version": "2:1.02.167-1ubuntu1", + "arch": "amd64" + }, + "dosfstools": { + "version": "4.1-2", + "arch": "amd64" + }, + "dpkg": { + "version": "1.19.7ubuntu3", + "arch": "amd64" + }, + "dpkg-dev": { + "version": "1.19.7ubuntu3", + "arch": "all" + }, + "e2fsprogs": { + "version": "1.45.5-2ubuntu1", + "arch": "amd64" + }, + "ed": { + "version": "1.16-1", + "arch": "amd64" + }, + "eject": { + "version": "2.1.5+deb1+cvs20081104-14", + "arch": "amd64" + }, + "ethtool": { + "version": "1:5.4-1", + "arch": "amd64" + }, + "fakeroot": { + "version": "1.24-1", + "arch": "amd64" + }, + "fdisk": { + "version": "2.34-0.1ubuntu9.3", + "arch": "amd64" + }, + "file": { + "version": "1:5.38-4", + "arch": "amd64" + }, + "finalrd": { + "version": "6~ubuntu20.04.1", + "arch": "all" + }, + "findutils": { + "version": "4.7.0-1ubuntu1", + "arch": "amd64" + }, + "fontconfig": { + "version": "2.13.1-2ubuntu3", + "arch": "amd64" + }, + "fontconfig-config": { + "version": "2.13.1-2ubuntu3", + "arch": "all" + }, + "fonts-dejavu-core": { + "version": "2.37-1", + "arch": "all" + }, + "fonts-lato": { + "version": "2.0-2", + "arch": "all" + }, + "fonts-ubuntu-console": { + "version": "0.83-4ubuntu1", + "arch": "all" + }, + "friendly-recovery": { + "version": "0.2.41ubuntu0.20.04.1", + "arch": "all" + }, + "ftp": { + "version": "0.17-34.1", + "arch": "amd64" + }, + "fuse": { + "version": "2.9.9-3", + "arch": "amd64" + }, + "fwupd": { + "version": "1.7.5-3~20.04.1", + "arch": "amd64" + }, + "fwupd-signed": { + "version": "1.27.1ubuntu7+1.2-2~20.04.1", + "arch": "amd64" + }, + "g++": { + "version": "4:9.3.0-1ubuntu2", + "arch": "amd64" + }, + "g++-9": { + "version": "9.4.0-1ubuntu1~20.04.1", + "arch": "amd64" + }, + "gawk": { + "version": "1:5.0.1+dfsg-1", + "arch": "amd64" + }, + "gcc": { + "version": "4:9.3.0-1ubuntu2", + "arch": "amd64" + }, + "gcc-10-base": { + "version": "10.3.0-1ubuntu1~20.04", + "arch": "amd64" + }, + "gcc-9": { + "version": "9.4.0-1ubuntu1~20.04.1", + "arch": "amd64" + }, + "gcc-9-base": { + "version": "9.4.0-1ubuntu1~20.04.1", + "arch": "amd64" + }, + "gdisk": { + "version": "1.0.5-1", + "arch": "amd64" + }, + "gettext-base": { + "version": "0.19.8.1-10build1", + "arch": "amd64" + }, + "gir1.2-glib-2.0": { + "version": "1.64.1-1~ubuntu20.04.1", + "arch": "amd64" + }, + "gir1.2-packagekitglib-1.0": { + "version": "1.1.13-2ubuntu1.1", + "arch": "amd64" + }, + "git": { + "version": "1:2.25.1-1ubuntu3.3", + "arch": "amd64" + }, + "git-man": { + "version": "1:2.25.1-1ubuntu3.3", + "arch": "all" + }, + "glib-networking": { + "version": "2.64.2-1ubuntu0.1", + "arch": "amd64" + }, + "glib-networking-common": { + "version": "2.64.2-1ubuntu0.1", + "arch": "all" + }, + "glib-networking-services": { + "version": "2.64.2-1ubuntu0.1", + "arch": "amd64" + }, + "gnupg": { + "version": "2.2.19-3ubuntu2.1", + "arch": "all" + }, + "gnupg-l10n": { + "version": "2.2.19-3ubuntu2.1", + "arch": "all" + }, + "gnupg-utils": { + "version": "2.2.19-3ubuntu2.1", + "arch": "amd64" + }, + "gpg": { + "version": "2.2.19-3ubuntu2.1", + "arch": "amd64" + }, + "gpg-agent": { + "version": "2.2.19-3ubuntu2.1", + "arch": "amd64" + }, + "gpg-wks-client": { + "version": "2.2.19-3ubuntu2.1", + "arch": "amd64" + }, + "gpg-wks-server": { + "version": "2.2.19-3ubuntu2.1", + "arch": "amd64" + }, + "gpgconf": { + "version": "2.2.19-3ubuntu2.1", + "arch": "amd64" + }, + "gpgsm": { + "version": "2.2.19-3ubuntu2.1", + "arch": "amd64" + }, + "gpgv": { + "version": "2.2.19-3ubuntu2.1", + "arch": "amd64" + }, + "grep": { + "version": "3.4-1", + "arch": "amd64" + }, + "groff-base": { + "version": "1.22.4-4build1", + "arch": "amd64" + }, + "grub-common": { + "version": "2.04-1ubuntu26.15", + "arch": "amd64" + }, + "grub-gfxpayload-lists": { + "version": "0.7", + "arch": "amd64" + }, + "grub-pc": { + "version": "2.04-1ubuntu26.15", + "arch": "amd64" + }, + "grub-pc-bin": { + "version": "2.04-1ubuntu26.15", + "arch": "amd64" + }, + "grub2-common": { + "version": "2.04-1ubuntu26.15", + "arch": "amd64" + }, + "gsettings-desktop-schemas": { + "version": "3.36.0-1ubuntu1", + "arch": "all" + }, + "gtk-update-icon-cache": { + "version": "3.24.20-0ubuntu1.1", + "arch": "amd64" + }, + "guile-2.2-libs": { + "version": "2.2.7+1-4", + "arch": "amd64" + }, + "gzip": { + "version": "1.10-0ubuntu4.1", + "arch": "amd64" + }, + "haveged": { + "version": "1.9.1-6ubuntu1", + "arch": "amd64" + }, + "hdparm": { + "version": "9.58+ds-4", + "arch": "amd64" + }, + "hicolor-icon-theme": { + "version": "0.17-2", + "arch": "all" + }, + "hostname": { + "version": "3.23", + "arch": "amd64" + }, + "htop": { + "version": "2.2.0-2build1", + "arch": "amd64" + }, + "humanity-icon-theme": { + "version": "0.6.15", + "arch": "all" + }, + "ifplugd": { + "version": "0.28-19.4", + "arch": "amd64" + }, + "ifupdown": { + "version": "0.8.35ubuntu1", + "arch": "amd64" + }, + "info": { + "version": "6.7.0.dfsg.2-5", + "arch": "amd64" + }, + "init": { + "version": "1.57", + "arch": "amd64" + }, + "init-system-helpers": { + "version": "1.57", + "arch": "all" + }, + "initramfs-tools": { + "version": "0.136ubuntu6.7", + "arch": "all" + }, + "initramfs-tools-bin": { + "version": "0.136ubuntu6.7", + "arch": "amd64" + }, + "initramfs-tools-core": { + "version": "0.136ubuntu6.7", + "arch": "all" + }, + "install-info": { + "version": "6.7.0.dfsg.2-5", + "arch": "amd64" + }, + "installation-report": { + "version": "2.62ubuntu1", + "arch": "all" + }, + "intel-microcode": { + "version": "3.20210608.0ubuntu0.20.04.1", + "arch": "amd64" + }, + "iproute2": { + "version": "5.5.0-1ubuntu1", + "arch": "amd64" + }, + "iptables": { + "version": "1.8.4-3ubuntu2", + "arch": "amd64" + }, + "iputils-ping": { + "version": "3:20190709-3", + "arch": "amd64" + }, + "iputils-tracepath": { + "version": "3:20190709-3", + "arch": "amd64" + }, + "irqbalance": { + "version": "1.6.0-3ubuntu1", + "arch": "amd64" + }, + "isc-dhcp-client": { + "version": "4.4.1-2.1ubuntu5.20.04.2", + "arch": "amd64" + }, + "isc-dhcp-common": { + "version": "4.4.1-2.1ubuntu5.20.04.2", + "arch": "amd64" + }, + "iso-codes": { + "version": "4.4-1", + "arch": "all" + }, + "iucode-tool": { + "version": "2.3.1-1", + "arch": "amd64" + }, + "iw": { + "version": "5.4-1", + "arch": "amd64" + }, + "javascript-common": { + "version": "11", + "arch": "all" + }, + "jq": { + "version": "1.6-1ubuntu0.20.04.1", + "arch": "amd64" + }, + "kbd": { + "version": "2.0.4-4ubuntu2", + "arch": "amd64" + }, + "keyboard-configuration": { + "version": "1.194ubuntu3", + "arch": "all" + }, + "klibc-utils": { + "version": "2.0.7-1ubuntu5.1", + "arch": "amd64" + }, + "kmod": { + "version": "27-1ubuntu2", + "arch": "amd64" + }, + "kpartx": { + "version": "0.8.3-1ubuntu2", + "arch": "amd64" + }, + "krb5-locales": { + "version": "1.17-6ubuntu4.1", + "arch": "all" + }, + "landscape-common": { + "version": "19.12-0ubuntu4.3", + "arch": "amd64" + }, + "language-pack-en": { + "version": "1:20.04+20220211", + "arch": "all" + }, + "language-pack-en-base": { + "version": "1:20.04+20220211", + "arch": "all" + }, + "language-pack-gnome-en": { + "version": "1:20.04+20220211", + "arch": "all" + }, + "language-pack-gnome-en-base": { + "version": "1:20.04+20220211", + "arch": "all" + }, + "language-selector-common": { + "version": "0.204.2", + "arch": "all" + }, + "laptop-detect": { + "version": "0.16", + "arch": "all" + }, + "less": { + "version": "551-1ubuntu0.1", + "arch": "amd64" + }, + "libaccountsservice0": { + "version": "0.6.55-0ubuntu12~20.04.5", + "arch": "amd64" + }, + "libacl1": { + "version": "2.2.53-6", + "arch": "amd64" + }, + "libaio1": { + "version": "0.3.112-5", + "arch": "amd64" + }, + "libalgorithm-diff-perl": { + "version": "1.19.03-2", + "arch": "all" + }, + "libalgorithm-diff-xs-perl": { + "version": "0.04-6", + "arch": "amd64" + }, + "libalgorithm-merge-perl": { + "version": "0.08-3", + "arch": "all" + }, + "libapparmor1": { + "version": "2.13.3-7ubuntu5.1", + "arch": "amd64" + }, + "libappstream4": { + "version": "0.12.10-2", + "arch": "amd64" + }, + "libapt-pkg6.0": { + "version": "2.0.6", + "arch": "amd64" + }, + "libarchive13": { + "version": "3.4.0-2ubuntu1.2", + "arch": "amd64" + }, + "libargon2-1": { + "version": "0~20171227-0.2", + "arch": "amd64" + }, + "libasan5": { + "version": "9.4.0-1ubuntu1~20.04.1", + "arch": "amd64" + }, + "libasn1-8-heimdal": { + "version": "7.7.0+dfsg-1ubuntu1", + "arch": "amd64" + }, + "libasound2": { + "version": "1.2.2-2.1ubuntu2.5", + "arch": "amd64" + }, + "libasound2-data": { + "version": "1.2.2-2.1ubuntu2.5", + "arch": "all" + }, + "libassuan0": { + "version": "2.5.3-7ubuntu2", + "arch": "amd64" + }, + "libatasmart4": { + "version": "0.19-5", + "arch": "amd64" + }, + "libatk-bridge2.0-0": { + "version": "2.34.2-0ubuntu2~20.04.1", + "arch": "amd64" + }, + "libatk1.0-0": { + "version": "2.35.1-1ubuntu2", + "arch": "amd64" + }, + "libatk1.0-data": { + "version": "2.35.1-1ubuntu2", + "arch": "all" + }, + "libatm1": { + "version": "1:2.5.1-4", + "arch": "amd64" + }, + "libatomic1": { + "version": "10.3.0-1ubuntu1~20.04", + "arch": "amd64" + }, + "libatspi2.0-0": { + "version": "2.36.0-2", + "arch": "amd64" + }, + "libattr1": { + "version": "1:2.4.48-5", + "arch": "amd64" + }, + "libaudit-common": { + "version": "1:2.8.5-2ubuntu6", + "arch": "all" + }, + "libaudit1": { + "version": "1:2.8.5-2ubuntu6", + "arch": "amd64" + }, + "libavahi-client3": { + "version": "0.7-4ubuntu7.1", + "arch": "amd64" + }, + "libavahi-common-data": { + "version": "0.7-4ubuntu7.1", + "arch": "amd64" + }, + "libavahi-common3": { + "version": "0.7-4ubuntu7.1", + "arch": "amd64" + }, + "libbinutils": { + "version": "2.34-6ubuntu1.3", + "arch": "amd64" + }, + "libblkid1": { + "version": "2.34-0.1ubuntu9.3", + "arch": "amd64" + }, + "libblockdev-crypto2": { + "version": "2.23-2ubuntu3", + "arch": "amd64" + }, + "libblockdev-fs2": { + "version": "2.23-2ubuntu3", + "arch": "amd64" + }, + "libblockdev-loop2": { + "version": "2.23-2ubuntu3", + "arch": "amd64" + }, + "libblockdev-part-err2": { + "version": "2.23-2ubuntu3", + "arch": "amd64" + }, + "libblockdev-part2": { + "version": "2.23-2ubuntu3", + "arch": "amd64" + }, + "libblockdev-swap2": { + "version": "2.23-2ubuntu3", + "arch": "amd64" + }, + "libblockdev-utils2": { + "version": "2.23-2ubuntu3", + "arch": "amd64" + }, + "libblockdev2": { + "version": "2.23-2ubuntu3", + "arch": "amd64" + }, + "libbrotli1": { + "version": "1.0.7-6ubuntu0.1", + "arch": "amd64" + }, + "libbsd0": { + "version": "0.10.0-1", + "arch": "amd64" + }, + "libbz2-1.0": { + "version": "1.0.8-2", + "arch": "amd64" + }, + "libc-bin": { + "version": "2.31-0ubuntu9.7", + "arch": "amd64" + }, + "libc-dev-bin": { + "version": "2.31-0ubuntu9.9", + "arch": "amd64" + }, + "libc6": { + "version": "2.31-0ubuntu9.9", + "arch": "amd64" + }, + "libc6-dev": { + "version": "2.31-0ubuntu9.9", + "arch": "amd64" + }, + "libcairo-gobject2": { + "version": "1.16.0-4ubuntu1", + "arch": "amd64" + }, + "libcairo2": { + "version": "1.16.0-4ubuntu1", + "arch": "amd64" + }, + "libcanberra0": { + "version": "0.30-7ubuntu1", + "arch": "amd64" + }, + "libcap-ng0": { + "version": "0.7.9-2.1build1", + "arch": "amd64" + }, + "libcap2": { + "version": "1:2.32-1", + "arch": "amd64" + }, + "libcap2-bin": { + "version": "1:2.32-1", + "arch": "amd64" + }, + "libcbor0.6": { + "version": "0.6.0-0ubuntu1", + "arch": "amd64" + }, + "libcc1-0": { + "version": "10.3.0-1ubuntu1~20.04", + "arch": "amd64" + }, + "libcolord2": { + "version": "1.4.4-2", + "arch": "amd64" + }, + "libcom-err2": { + "version": "1.45.5-2ubuntu1", + "arch": "amd64" + }, + "libcrypt-dev": { + "version": "1:4.4.10-10ubuntu4", + "arch": "amd64" + }, + "libcrypt1": { + "version": "1:4.4.10-10ubuntu4", + "arch": "amd64" + }, + "libcryptsetup12": { + "version": "2:2.2.2-3ubuntu2.4", + "arch": "amd64" + }, + "libctf-nobfd0": { + "version": "2.34-6ubuntu1.3", + "arch": "amd64" + }, + "libctf0": { + "version": "2.34-6ubuntu1.3", + "arch": "amd64" + }, + "libcups2": { + "version": "2.3.1-9ubuntu1.1", + "arch": "amd64" + }, + "libcurl3-gnutls": { + "version": "7.68.0-1ubuntu2.7", + "arch": "amd64" + }, + "libcurl4": { + "version": "7.68.0-1ubuntu2.11", + "arch": "amd64" + }, + "libdaemon0": { + "version": "0.14-7", + "arch": "amd64" + }, + "libdatrie1": { + "version": "0.2.12-3", + "arch": "amd64" + }, + "libdb5.3": { + "version": "5.3.28+dfsg1-0.6ubuntu2", + "arch": "amd64" + }, + "libdbus-1-3": { + "version": "1.12.16-2ubuntu2.1", + "arch": "amd64" + }, + "libdconf1": { + "version": "0.36.0-1", + "arch": "amd64" + }, + "libdebconfclient0": { + "version": "0.251ubuntu1", + "arch": "amd64" + }, + "libdevmapper-event1.02.1": { + "version": "2:1.02.167-1ubuntu1", + "arch": "amd64" + }, + "libdevmapper1.02.1": { + "version": "2:1.02.167-1ubuntu1", + "arch": "amd64" + }, + "libdns-export1109": { + "version": "1:9.11.16+dfsg-3~ubuntu1", + "arch": "amd64" + }, + "libdouble-conversion3": { + "version": "3.1.5-4ubuntu1", + "arch": "amd64" + }, + "libdpkg-perl": { + "version": "1.19.7ubuntu3", + "arch": "all" + }, + "libdrm-amdgpu1": { + "version": "2.4.107-8ubuntu1~20.04.2", + "arch": "amd64" + }, + "libdrm-common": { + "version": "2.4.107-8ubuntu1~20.04.2", + "arch": "all" + }, + "libdrm-intel1": { + "version": "2.4.107-8ubuntu1~20.04.2", + "arch": "amd64" + }, + "libdrm-nouveau2": { + "version": "2.4.107-8ubuntu1~20.04.2", + "arch": "amd64" + }, + "libdrm-radeon1": { + "version": "2.4.107-8ubuntu1~20.04.2", + "arch": "amd64" + }, + "libdrm2": { + "version": "2.4.107-8ubuntu1~20.04.2", + "arch": "amd64" + }, + "libdw1": { + "version": "0.176-1.1build1", + "arch": "amd64" + }, + "libedit2": { + "version": "3.1-20191231-1", + "arch": "amd64" + }, + "libefiboot1": { + "version": "37-2ubuntu2.2", + "arch": "amd64" + }, + "libefivar1": { + "version": "37-2ubuntu2.2", + "arch": "amd64" + }, + "libegl-mesa0": { + "version": "21.2.6-0ubuntu0.1~20.04.2", + "arch": "amd64" + }, + "libegl1": { + "version": "1.3.2-1~ubuntu0.20.04.2", + "arch": "amd64" + }, + "libelf1": { + "version": "0.176-1.1build1", + "arch": "amd64" + }, + "libepoxy0": { + "version": "1.5.4-1", + "arch": "amd64" + }, + "liberror-perl": { + "version": "0.17029-1", + "arch": "all" + }, + "libestr0": { + "version": "0.1.10-2.1", + "arch": "amd64" + }, + "libevdev2": { + "version": "1.9.0+dfsg-1ubuntu0.2", + "arch": "amd64" + }, + "libevent-2.1-7": { + "version": "2.1.11-stable-1", + "arch": "amd64" + }, + "libevent-core-2.1-7": { + "version": "2.1.11-stable-1", + "arch": "amd64" + }, + "libevent-pthreads-2.1-7": { + "version": "2.1.11-stable-1", + "arch": "amd64" + }, + "libexpat1": { + "version": "2.2.9-1ubuntu0.4", + "arch": "amd64" + }, + "libexpat1-dev": { + "version": "2.2.9-1ubuntu0.4", + "arch": "amd64" + }, + "libext2fs2": { + "version": "1.45.5-2ubuntu1", + "arch": "amd64" + }, + "libfakeroot": { + "version": "1.24-1", + "arch": "amd64" + }, + "libfastjson4": { + "version": "0.99.8-2", + "arch": "amd64" + }, + "libfdisk1": { + "version": "2.34-0.1ubuntu9.3", + "arch": "amd64" + }, + "libffi7": { + "version": "3.3-4", + "arch": "amd64" + }, + "libfido2-1": { + "version": "1.3.1-1ubuntu2", + "arch": "amd64" + }, + "libfile-fcntllock-perl": { + "version": "0.22-3build4", + "arch": "amd64" + }, + "libfl2": { + "version": "2.6.4-6.2", + "arch": "amd64" + }, + "libfontconfig1": { + "version": "2.13.1-2ubuntu3", + "arch": "amd64" + }, + "libfreetype6": { + "version": "2.10.1-2ubuntu0.1", + "arch": "amd64" + }, + "libfribidi0": { + "version": "1.0.8-2ubuntu0.1", + "arch": "amd64" + }, + "libfuse2": { + "version": "2.9.9-3", + "arch": "amd64" + }, + "libfwupd2": { + "version": "1.7.5-3~20.04.1", + "arch": "amd64" + }, + "libfwupdplugin1": { + "version": "1.5.11-0ubuntu1~20.04.2", + "arch": "amd64" + }, + "libfwupdplugin5": { + "version": "1.7.5-3~20.04.1", + "arch": "amd64" + }, + "libgbm1": { + "version": "21.2.6-0ubuntu0.1~20.04.2", + "arch": "amd64" + }, + "libgc1c2": { + "version": "1:7.6.4-0.4ubuntu1", + "arch": "amd64" + }, + "libgcab-1.0-0": { + "version": "1.4-1", + "arch": "amd64" + }, + "libgcc-9-dev": { + "version": "9.4.0-1ubuntu1~20.04.1", + "arch": "amd64" + }, + "libgcc-s1": { + "version": "10.3.0-1ubuntu1~20.04", + "arch": "amd64" + }, + "libgcrypt20": { + "version": "1.8.5-5ubuntu1.1", + "arch": "amd64" + }, + "libgdbm-compat4": { + "version": "1.18.1-5", + "arch": "amd64" + }, + "libgdbm6": { + "version": "1.18.1-5", + "arch": "amd64" + }, + "libgdk-pixbuf2.0-0": { + "version": "2.40.0+dfsg-3ubuntu0.2", + "arch": "amd64" + }, + "libgdk-pixbuf2.0-bin": { + "version": "2.40.0+dfsg-3ubuntu0.2", + "arch": "amd64" + }, + "libgdk-pixbuf2.0-common": { + "version": "2.40.0+dfsg-3ubuntu0.2", + "arch": "all" + }, + "libgirepository-1.0-1": { + "version": "1.64.1-1~ubuntu20.04.1", + "arch": "amd64" + }, + "libgl1": { + "version": "1.3.2-1~ubuntu0.20.04.2", + "arch": "amd64" + }, + "libgl1-mesa-dri": { + "version": "21.2.6-0ubuntu0.1~20.04.2", + "arch": "amd64" + }, + "libglapi-mesa": { + "version": "21.2.6-0ubuntu0.1~20.04.2", + "arch": "amd64" + }, + "libglib2.0-0": { + "version": "2.64.6-1~ubuntu20.04.4", + "arch": "amd64" + }, + "libglib2.0-bin": { + "version": "2.64.6-1~ubuntu20.04.4", + "arch": "amd64" + }, + "libglib2.0-data": { + "version": "2.64.6-1~ubuntu20.04.4", + "arch": "all" + }, + "libglvnd0": { + "version": "1.3.2-1~ubuntu0.20.04.2", + "arch": "amd64" + }, + "libglx-mesa0": { + "version": "21.2.6-0ubuntu0.1~20.04.2", + "arch": "amd64" + }, + "libglx0": { + "version": "1.3.2-1~ubuntu0.20.04.2", + "arch": "amd64" + }, + "libgmp-dev": { + "version": "2:6.2.0+dfsg-4", + "arch": "amd64" + }, + "libgmp10": { + "version": "2:6.2.0+dfsg-4", + "arch": "amd64" + }, + "libgmpxx4ldbl": { + "version": "2:6.2.0+dfsg-4", + "arch": "amd64" + }, + "libgnutls30": { + "version": "3.6.13-2ubuntu1.6", + "arch": "amd64" + }, + "libgomp1": { + "version": "10.3.0-1ubuntu1~20.04", + "arch": "amd64" + }, + "libgpg-error0": { + "version": "1.37-1", + "arch": "amd64" + }, + "libgpgme11": { + "version": "1.13.1-7ubuntu2", + "arch": "amd64" + }, + "libgpm2": { + "version": "1.20.7-5", + "arch": "amd64" + }, + "libgraphite2-3": { + "version": "1.3.13-11build1", + "arch": "amd64" + }, + "libgsasl7": { + "version": "1.8.1-1", + "arch": "amd64" + }, + "libgssapi-krb5-2": { + "version": "1.17-6ubuntu4.1", + "arch": "amd64" + }, + "libgssapi3-heimdal": { + "version": "7.7.0+dfsg-1ubuntu1", + "arch": "amd64" + }, + "libgstreamer1.0-0": { + "version": "1.16.2-2", + "arch": "amd64" + }, + "libgtk-3-0": { + "version": "3.24.20-0ubuntu1.1", + "arch": "amd64" + }, + "libgtk-3-bin": { + "version": "3.24.20-0ubuntu1.1", + "arch": "amd64" + }, + "libgtk-3-common": { + "version": "3.24.20-0ubuntu1.1", + "arch": "all" + }, + "libgudev-1.0-0": { + "version": "1:233-1", + "arch": "amd64" + }, + "libgusb2": { + "version": "0.3.4-0.1", + "arch": "amd64" + }, + "libharfbuzz0b": { + "version": "2.6.4-1ubuntu4", + "arch": "amd64" + }, + "libhavege1": { + "version": "1.9.1-6ubuntu1", + "arch": "amd64" + }, + "libhcrypto4-heimdal": { + "version": "7.7.0+dfsg-1ubuntu1", + "arch": "amd64" + }, + "libheimbase1-heimdal": { + "version": "7.7.0+dfsg-1ubuntu1", + "arch": "amd64" + }, + "libheimntlm0-heimdal": { + "version": "7.7.0+dfsg-1ubuntu1", + "arch": "amd64" + }, + "libhogweed5": { + "version": "3.5.1+really3.5.1-2ubuntu0.2", + "arch": "amd64" + }, + "libhx509-5-heimdal": { + "version": "7.7.0+dfsg-1ubuntu1", + "arch": "amd64" + }, + "libice6": { + "version": "2:1.0.10-0ubuntu1", + "arch": "amd64" + }, + "libicu66": { + "version": "66.1-2ubuntu2.1", + "arch": "amd64" + }, + "libidn11": { + "version": "1.33-2.2ubuntu2", + "arch": "amd64" + }, + "libidn2-0": { + "version": "2.2.0-2", + "arch": "amd64" + }, + "libinput-bin": { + "version": "1.15.5-1ubuntu0.3", + "arch": "amd64" + }, + "libinput10": { + "version": "1.15.5-1ubuntu0.3", + "arch": "amd64" + }, + "libip4tc2": { + "version": "1.8.4-3ubuntu2", + "arch": "amd64" + }, + "libip6tc2": { + "version": "1.8.4-3ubuntu2", + "arch": "amd64" + }, + "libisc-export1105": { + "version": "1:9.11.16+dfsg-3~ubuntu1", + "arch": "amd64" + }, + "libisl22": { + "version": "0.22.1-1", + "arch": "amd64" + }, + "libisns0": { + "version": "0.97-3", + "arch": "amd64" + }, + "libitm1": { + "version": "10.3.0-1ubuntu1~20.04", + "arch": "amd64" + }, + "libjbig0": { + "version": "2.1-3.1build1", + "arch": "amd64" + }, + "libjcat1": { + "version": "0.1.4-0ubuntu0.20.04.1", + "arch": "amd64" + }, + "libjpeg-turbo8": { + "version": "2.0.3-0ubuntu1.20.04.1", + "arch": "amd64" + }, + "libjpeg8": { + "version": "8c-2ubuntu8", + "arch": "amd64" + }, + "libjq1": { + "version": "1.6-1ubuntu0.20.04.1", + "arch": "amd64" + }, + "libjs-jquery": { + "version": "3.3.1~dfsg-3", + "arch": "all" + }, + "libjson-c4": { + "version": "0.13.1+dfsg-7ubuntu0.3", + "arch": "amd64" + }, + "libjson-glib-1.0-0": { + "version": "1.4.4-2ubuntu2", + "arch": "amd64" + }, + "libjson-glib-1.0-common": { + "version": "1.4.4-2ubuntu2", + "arch": "all" + }, + "libk5crypto3": { + "version": "1.17-6ubuntu4.1", + "arch": "amd64" + }, + "libkeyutils1": { + "version": "1.6-6ubuntu1", + "arch": "amd64" + }, + "libklibc": { + "version": "2.0.7-1ubuntu5.1", + "arch": "amd64" + }, + "libkmod2": { + "version": "27-1ubuntu2", + "arch": "amd64" + }, + "libkrb5-26-heimdal": { + "version": "7.7.0+dfsg-1ubuntu1", + "arch": "amd64" + }, + "libkrb5-3": { + "version": "1.17-6ubuntu4.1", + "arch": "amd64" + }, + "libkrb5support0": { + "version": "1.17-6ubuntu4.1", + "arch": "amd64" + }, + "libksba8": { + "version": "1.3.5-2", + "arch": "amd64" + }, + "libkyotocabinet16v5": { + "version": "1.2.76-4.2build1", + "arch": "amd64" + }, + "liblcms2-2": { + "version": "2.9-4", + "arch": "amd64" + }, + "libldap-2.4-2": { + "version": "2.4.49+dfsg-2ubuntu1.8", + "arch": "amd64" + }, + "libldap-common": { + "version": "2.4.49+dfsg-2ubuntu1.8", + "arch": "all" + }, + "libllvm12": { + "version": "1:12.0.0-3ubuntu1~20.04.5", + "arch": "amd64" + }, + "liblmdb0": { + "version": "0.9.24-1", + "arch": "amd64" + }, + "liblocale-gettext-perl": { + "version": "1.07-4", + "arch": "amd64" + }, + "liblockfile-bin": { + "version": "1.16-1.1", + "arch": "amd64" + }, + "liblockfile1": { + "version": "1.16-1.1", + "arch": "amd64" + }, + "liblsan0": { + "version": "10.3.0-1ubuntu1~20.04", + "arch": "amd64" + }, + "libltdl7": { + "version": "2.4.6-14", + "arch": "amd64" + }, + "liblua5.2-0": { + "version": "5.2.4-1.1build3", + "arch": "amd64" + }, + "liblvm2cmd2.03": { + "version": "2.03.07-1ubuntu1", + "arch": "amd64" + }, + "liblz4-1": { + "version": "1.9.2-2ubuntu0.20.04.1", + "arch": "amd64" + }, + "liblzma5": { + "version": "5.2.4-1ubuntu1.1", + "arch": "amd64" + }, + "liblzo2-2": { + "version": "2.10-2", + "arch": "amd64" + }, + "libmagic-mgc": { + "version": "1:5.38-4", + "arch": "amd64" + }, + "libmagic1": { + "version": "1:5.38-4", + "arch": "amd64" + }, + "libmailutils6": { + "version": "1:3.7-2.1", + "arch": "amd64" + }, + "libmaxminddb0": { + "version": "1.4.2-0ubuntu1.20.04.1", + "arch": "amd64" + }, + "libmbim-glib4": { + "version": "1.24.8-1~20.04", + "arch": "amd64" + }, + "libmbim-proxy": { + "version": "1.24.8-1~20.04", + "arch": "amd64" + }, + "libmm-glib0": { + "version": "1.16.6-2~20.04.1", + "arch": "amd64" + }, + "libmnl0": { + "version": "1.0.4-2", + "arch": "amd64" + }, + "libmount1": { + "version": "2.34-0.1ubuntu9.3", + "arch": "amd64" + }, + "libmpc3": { + "version": "1.1.0-1", + "arch": "amd64" + }, + "libmpdec2": { + "version": "2.4.2-3", + "arch": "amd64" + }, + "libmpfr6": { + "version": "4.0.2-1", + "arch": "amd64" + }, + "libmspack0": { + "version": "0.10.1-2", + "arch": "amd64" + }, + "libmtdev1": { + "version": "1.1.5-1.1", + "arch": "amd64" + }, + "libmysqlclient21": { + "version": "8.0.29-0ubuntu0.20.04.3", + "arch": "amd64" + }, + "libncurses6": { + "version": "6.2-0ubuntu2", + "arch": "amd64" + }, + "libncursesw6": { + "version": "6.2-0ubuntu2", + "arch": "amd64" + }, + "libnetfilter-conntrack3": { + "version": "1.0.7-2", + "arch": "amd64" + }, + "libnetplan0": { + "version": "0.104-0ubuntu2~20.04.1", + "arch": "amd64" + }, + "libnettle7": { + "version": "3.5.1+really3.5.1-2ubuntu0.2", + "arch": "amd64" + }, + "libnewt0.52": { + "version": "0.52.21-4ubuntu2", + "arch": "amd64" + }, + "libnfnetlink0": { + "version": "1.0.1-3build1", + "arch": "amd64" + }, + "libnftnl11": { + "version": "1.1.5-1", + "arch": "amd64" + }, + "libnghttp2-14": { + "version": "1.40.0-1build1", + "arch": "amd64" + }, + "libnl-3-200": { + "version": "3.4.0-1", + "arch": "amd64" + }, + "libnl-genl-3-200": { + "version": "3.4.0-1", + "arch": "amd64" + }, + "libnpth0": { + "version": "1.6-1", + "arch": "amd64" + }, + "libnspr4": { + "version": "2:4.25-1", + "arch": "amd64" + }, + "libnss-systemd": { + "version": "245.4-4ubuntu3.17", + "arch": "amd64" + }, + "libnss3": { + "version": "2:3.49.1-1ubuntu1.6", + "arch": "amd64" + }, + "libntfs-3g883": { + "version": "1:2017.3.23AR.3-3ubuntu1.1", + "arch": "amd64" + }, + "libntlm0": { + "version": "1.5-2ubuntu0.1", + "arch": "amd64" + }, + "libnuma1": { + "version": "2.0.12-1", + "arch": "amd64" + }, + "libogg0": { + "version": "1.3.4-0ubuntu1", + "arch": "amd64" + }, + "libonig5": { + "version": "6.9.4-1", + "arch": "amd64" + }, + "libopts25": { + "version": "1:5.18.16-3", + "arch": "amd64" + }, + "libp11-kit0": { + "version": "0.23.20-1ubuntu0.1", + "arch": "amd64" + }, + "libpackagekit-glib2-18": { + "version": "1.1.13-2ubuntu1.1", + "arch": "amd64" + }, + "libpam-cap": { + "version": "1:2.32-1", + "arch": "amd64" + }, + "libpam-modules": { + "version": "1.3.1-5ubuntu4.3", + "arch": "amd64" + }, + "libpam-modules-bin": { + "version": "1.3.1-5ubuntu4.3", + "arch": "amd64" + }, + "libpam-runtime": { + "version": "1.3.1-5ubuntu4.3", + "arch": "all" + }, + "libpam-systemd": { + "version": "245.4-4ubuntu3.17", + "arch": "amd64" + }, + "libpam0g": { + "version": "1.3.1-5ubuntu4.3", + "arch": "amd64" + }, + "libpango-1.0-0": { + "version": "1.44.7-2ubuntu4", + "arch": "amd64" + }, + "libpangocairo-1.0-0": { + "version": "1.44.7-2ubuntu4", + "arch": "amd64" + }, + "libpangoft2-1.0-0": { + "version": "1.44.7-2ubuntu4", + "arch": "amd64" + }, + "libparted-fs-resize0": { + "version": "3.3-4ubuntu0.20.04.1", + "arch": "amd64" + }, + "libparted2": { + "version": "3.3-4ubuntu0.20.04.1", + "arch": "amd64" + }, + "libpcap0.8": { + "version": "1.9.1-3", + "arch": "amd64" + }, + "libpci3": { + "version": "1:3.6.4-1ubuntu0.20.04.1", + "arch": "amd64" + }, + "libpciaccess0": { + "version": "0.16-0ubuntu1", + "arch": "amd64" + }, + "libpcre2-16-0": { + "version": "10.34-7", + "arch": "amd64" + }, + "libpcre2-8-0": { + "version": "10.34-7", + "arch": "amd64" + }, + "libpcre3": { + "version": "2:8.39-12build1", + "arch": "amd64" + }, + "libperl5.30": { + "version": "5.30.0-9ubuntu0.2", + "arch": "amd64" + }, + "libpipeline1": { + "version": "1.5.2-2build1", + "arch": "amd64" + }, + "libpixman-1-0": { + "version": "0.38.4-0ubuntu1", + "arch": "amd64" + }, + "libplymouth5": { + "version": "0.9.4git20200323-0ubuntu6.2", + "arch": "amd64" + }, + "libpng16-16": { + "version": "1.6.37-2", + "arch": "amd64" + }, + "libpolkit-agent-1-0": { + "version": "0.105-26ubuntu1.3", + "arch": "amd64" + }, + "libpolkit-gobject-1-0": { + "version": "0.105-26ubuntu1.3", + "arch": "amd64" + }, + "libpopt0": { + "version": "1.16-14", + "arch": "amd64" + }, + "libprocps8": { + "version": "2:3.3.16-1ubuntu2.3", + "arch": "amd64" + }, + "libprotobuf17": { + "version": "3.6.1.3-2ubuntu5", + "arch": "amd64" + }, + "libproxy1v5": { + "version": "0.4.15-10ubuntu1.2", + "arch": "amd64" + }, + "libpsl5": { + "version": "0.21.0-1ubuntu1", + "arch": "amd64" + }, + "libpython3-dev": { + "version": "3.8.2-0ubuntu2", + "arch": "amd64" + }, + "libpython3-stdlib": { + "version": "3.8.2-0ubuntu2", + "arch": "amd64" + }, + "libpython3.8": { + "version": "3.8.10-0ubuntu1~20.04.4", + "arch": "amd64" + }, + "libpython3.8-dev": { + "version": "3.8.10-0ubuntu1~20.04.4", + "arch": "amd64" + }, + "libpython3.8-minimal": { + "version": "3.8.10-0ubuntu1~20.04.4", + "arch": "amd64" + }, + "libpython3.8-stdlib": { + "version": "3.8.10-0ubuntu1~20.04.4", + "arch": "amd64" + }, + "libqmi-glib5": { + "version": "1.28.6-1~20.04.1", + "arch": "amd64" + }, + "libqmi-proxy": { + "version": "1.28.6-1~20.04.1", + "arch": "amd64" + }, + "libqt5core5a": { + "version": "5.12.8+dfsg-0ubuntu2.1", + "arch": "amd64" + }, + "libqt5dbus5": { + "version": "5.12.8+dfsg-0ubuntu2.1", + "arch": "amd64" + }, + "libqt5designer5": { + "version": "5.12.8-0ubuntu1", + "arch": "amd64" + }, + "libqt5gui5": { + "version": "5.12.8+dfsg-0ubuntu2.1", + "arch": "amd64" + }, + "libqt5help5": { + "version": "5.12.8-0ubuntu1", + "arch": "amd64" + }, + "libqt5network5": { + "version": "5.12.8+dfsg-0ubuntu2.1", + "arch": "amd64" + }, + "libqt5printsupport5": { + "version": "5.12.8+dfsg-0ubuntu2.1", + "arch": "amd64" + }, + "libqt5sql5": { + "version": "5.12.8+dfsg-0ubuntu2.1", + "arch": "amd64" + }, + "libqt5sql5-sqlite": { + "version": "5.12.8+dfsg-0ubuntu2.1", + "arch": "amd64" + }, + "libqt5svg5": { + "version": "5.12.8-0ubuntu1", + "arch": "amd64" + }, + "libqt5test5": { + "version": "5.12.8+dfsg-0ubuntu2.1", + "arch": "amd64" + }, + "libqt5widgets5": { + "version": "5.12.8+dfsg-0ubuntu2.1", + "arch": "amd64" + }, + "libqt5xml5": { + "version": "5.12.8+dfsg-0ubuntu2.1", + "arch": "amd64" + }, + "libquadmath0": { + "version": "10.3.0-1ubuntu1~20.04", + "arch": "amd64" + }, + "libreadline5": { + "version": "5.2+dfsg-3build3", + "arch": "amd64" + }, + "libreadline8": { + "version": "8.0-4", + "arch": "amd64" + }, + "librest-0.7-0": { + "version": "0.8.1-1", + "arch": "amd64" + }, + "libroken18-heimdal": { + "version": "7.7.0+dfsg-1ubuntu1", + "arch": "amd64" + }, + "librsvg2-2": { + "version": "2.48.9-1ubuntu0.20.04.1", + "arch": "amd64" + }, + "librsvg2-common": { + "version": "2.48.9-1ubuntu0.20.04.1", + "arch": "amd64" + }, + "librtmp1": { + "version": "2.4+20151223.gitfa8646d.1-2build1", + "arch": "amd64" + }, + "libruby2.7": { + "version": "2.7.0-5ubuntu1.6", + "arch": "amd64" + }, + "libsasl2-2": { + "version": "2.1.27+dfsg-2ubuntu0.1", + "arch": "amd64" + }, + "libsasl2-modules": { + "version": "2.1.27+dfsg-2ubuntu0.1", + "arch": "amd64" + }, + "libsasl2-modules-db": { + "version": "2.1.27+dfsg-2ubuntu0.1", + "arch": "amd64" + }, + "libseccomp2": { + "version": "2.5.1-1ubuntu1~20.04.2", + "arch": "amd64" + }, + "libsecp256k1-0": { + "version": "0.1~20170810-2", + "arch": "amd64" + }, + "libsecp256k1-dev": { + "version": "0.1~20170810-2", + "arch": "amd64" + }, + "libselinux1": { + "version": "3.0-1build2", + "arch": "amd64" + }, + "libsemanage-common": { + "version": "3.0-1build2", + "arch": "all" + }, + "libsemanage1": { + "version": "3.0-1build2", + "arch": "amd64" + }, + "libsensors-config": { + "version": "1:3.6.0-2ubuntu1", + "arch": "all" + }, + "libsensors5": { + "version": "1:3.6.0-2ubuntu1", + "arch": "amd64" + }, + "libsepol1": { + "version": "3.0-1", + "arch": "amd64" + }, + "libsgutils2-2": { + "version": "1.44-1ubuntu2", + "arch": "amd64" + }, + "libsigsegv2": { + "version": "2.12-2", + "arch": "amd64" + }, + "libslang2": { + "version": "2.3.2-4", + "arch": "amd64" + }, + "libsm6": { + "version": "2:1.2.3-1", + "arch": "amd64" + }, + "libsmartcols1": { + "version": "2.34-0.1ubuntu9.3", + "arch": "amd64" + }, + "libsmbios-c2": { + "version": "2.4.3-1", + "arch": "amd64" + }, + "libsodium23": { + "version": "1.0.18-1", + "arch": "amd64" + }, + "libsoup-gnome2.4-1": { + "version": "2.70.0-1", + "arch": "amd64" + }, + "libsoup2.4-1": { + "version": "2.70.0-1", + "arch": "amd64" + }, + "libsqlite3-0": { + "version": "3.31.1-4ubuntu0.2", + "arch": "amd64" + }, + "libss2": { + "version": "1.45.5-2ubuntu1", + "arch": "amd64" + }, + "libssh-4": { + "version": "0.9.3-2ubuntu2.2", + "arch": "amd64" + }, + "libssl1.1": { + "version": "1.1.1f-1ubuntu2.12", + "arch": "amd64" + }, + "libstdc++-9-dev": { + "version": "9.4.0-1ubuntu1~20.04.1", + "arch": "amd64" + }, + "libstdc++6": { + "version": "10.3.0-1ubuntu1~20.04", + "arch": "amd64" + }, + "libstemmer0d": { + "version": "0+svn585-2", + "arch": "amd64" + }, + "libsystemd0": { + "version": "245.4-4ubuntu3.17", + "arch": "amd64" + }, + "libtasn1-6": { + "version": "4.16.0-2", + "arch": "amd64" + }, + "libtcl8.6": { + "version": "8.6.10+dfsg-1", + "arch": "amd64" + }, + "libtdb1": { + "version": "1.4.3-0ubuntu0.20.04.1", + "arch": "amd64" + }, + "libtext-charwidth-perl": { + "version": "0.04-10", + "arch": "amd64" + }, + "libtext-iconv-perl": { + "version": "1.7-7", + "arch": "amd64" + }, + "libtext-wrapi18n-perl": { + "version": "0.06-9", + "arch": "all" + }, + "libthai-data": { + "version": "0.1.28-3", + "arch": "all" + }, + "libthai0": { + "version": "0.1.28-3", + "arch": "amd64" + }, + "libtiff5": { + "version": "4.1.0+git191117-2ubuntu0.20.04.3", + "arch": "amd64" + }, + "libtinfo6": { + "version": "6.2-0ubuntu2", + "arch": "amd64" + }, + "libtsan0": { + "version": "10.3.0-1ubuntu1~20.04", + "arch": "amd64" + }, + "libtss2-esys0": { + "version": "2.3.2-1", + "arch": "amd64" + }, + "libubsan1": { + "version": "10.3.0-1ubuntu1~20.04", + "arch": "amd64" + }, + "libuchardet0": { + "version": "0.0.6-3build1", + "arch": "amd64" + }, + "libudev1": { + "version": "245.4-4ubuntu3.16", + "arch": "amd64" + }, + "libudisks2-0": { + "version": "2.8.4-1ubuntu2", + "arch": "amd64" + }, + "libunistring2": { + "version": "0.9.10-2", + "arch": "amd64" + }, + "libunwind8": { + "version": "1.2.1-9build1", + "arch": "amd64" + }, + "liburcu6": { + "version": "0.11.1-2", + "arch": "amd64" + }, + "libusb-1.0-0": { + "version": "2:1.0.23-2build1", + "arch": "amd64" + }, + "libutempter0": { + "version": "1.1.6-4", + "arch": "amd64" + }, + "libuuid1": { + "version": "2.34-0.1ubuntu9.3", + "arch": "amd64" + }, + "libuv1": { + "version": "1.34.2-1ubuntu1.3", + "arch": "amd64" + }, + "libvolume-key1": { + "version": "0.3.12-3.1", + "arch": "amd64" + }, + "libvorbis0a": { + "version": "1.3.6-2ubuntu1", + "arch": "amd64" + }, + "libvorbisfile3": { + "version": "1.3.6-2ubuntu1", + "arch": "amd64" + }, + "libvulkan1": { + "version": "1.2.131.2-1", + "arch": "amd64" + }, + "libwacom-bin": { + "version": "1.3-2ubuntu3", + "arch": "amd64" + }, + "libwacom-common": { + "version": "1.3-2ubuntu3", + "arch": "all" + }, + "libwacom2": { + "version": "1.3-2ubuntu3", + "arch": "amd64" + }, + "libwayland-client0": { + "version": "1.18.0-1", + "arch": "amd64" + }, + "libwayland-cursor0": { + "version": "1.18.0-1", + "arch": "amd64" + }, + "libwayland-egl1": { + "version": "1.18.0-1", + "arch": "amd64" + }, + "libwayland-server0": { + "version": "1.18.0-1", + "arch": "amd64" + }, + "libwebp6": { + "version": "0.6.1-2ubuntu0.20.04.1", + "arch": "amd64" + }, + "libwind0-heimdal": { + "version": "7.7.0+dfsg-1ubuntu1", + "arch": "amd64" + }, + "libwrap0": { + "version": "7.6.q-30", + "arch": "amd64" + }, + "libx11-6": { + "version": "2:1.6.9-2ubuntu1.2", + "arch": "amd64" + }, + "libx11-data": { + "version": "2:1.6.9-2ubuntu1.2", + "arch": "all" + }, + "libx11-xcb1": { + "version": "2:1.6.9-2ubuntu1.2", + "arch": "amd64" + }, + "libxau6": { + "version": "1:1.0.9-0ubuntu1", + "arch": "amd64" + }, + "libxcb-dri2-0": { + "version": "1.14-2", + "arch": "amd64" + }, + "libxcb-dri3-0": { + "version": "1.14-2", + "arch": "amd64" + }, + "libxcb-glx0": { + "version": "1.14-2", + "arch": "amd64" + }, + "libxcb-icccm4": { + "version": "0.4.1-1.1", + "arch": "amd64" + }, + "libxcb-image0": { + "version": "0.4.0-1build1", + "arch": "amd64" + }, + "libxcb-keysyms1": { + "version": "0.4.0-1build1", + "arch": "amd64" + }, + "libxcb-present0": { + "version": "1.14-2", + "arch": "amd64" + }, + "libxcb-randr0": { + "version": "1.14-2", + "arch": "amd64" + }, + "libxcb-render-util0": { + "version": "0.3.9-1build1", + "arch": "amd64" + }, + "libxcb-render0": { + "version": "1.14-2", + "arch": "amd64" + }, + "libxcb-shape0": { + "version": "1.14-2", + "arch": "amd64" + }, + "libxcb-shm0": { + "version": "1.14-2", + "arch": "amd64" + }, + "libxcb-sync1": { + "version": "1.14-2", + "arch": "amd64" + }, + "libxcb-util1": { + "version": "0.4.0-0ubuntu3", + "arch": "amd64" + }, + "libxcb-xfixes0": { + "version": "1.14-2", + "arch": "amd64" + }, + "libxcb-xinerama0": { + "version": "1.14-2", + "arch": "amd64" + }, + "libxcb-xinput0": { + "version": "1.14-2", + "arch": "amd64" + }, + "libxcb-xkb1": { + "version": "1.14-2", + "arch": "amd64" + }, + "libxcb1": { + "version": "1.14-2", + "arch": "amd64" + }, + "libxcomposite1": { + "version": "1:0.4.5-1", + "arch": "amd64" + }, + "libxcursor1": { + "version": "1:1.2.0-2", + "arch": "amd64" + }, + "libxdamage1": { + "version": "1:1.1.5-2", + "arch": "amd64" + }, + "libxdmcp6": { + "version": "1:1.1.3-0ubuntu1", + "arch": "amd64" + }, + "libxext6": { + "version": "2:1.3.4-0ubuntu1", + "arch": "amd64" + }, + "libxfixes3": { + "version": "1:5.0.3-2", + "arch": "amd64" + }, + "libxi6": { + "version": "2:1.7.10-0ubuntu1", + "arch": "amd64" + }, + "libxinerama1": { + "version": "2:1.1.4-2", + "arch": "amd64" + }, + "libxkbcommon-x11-0": { + "version": "0.10.0-1", + "arch": "amd64" + }, + "libxkbcommon0": { + "version": "0.10.0-1", + "arch": "amd64" + }, + "libxml2": { + "version": "2.9.10+dfsg-5ubuntu0.20.04.2", + "arch": "amd64" + }, + "libxmlb1": { + "version": "0.1.15-2ubuntu1~20.04.1", + "arch": "amd64" + }, + "libxmlsec1": { + "version": "1.2.28-2", + "arch": "amd64" + }, + "libxmlsec1-openssl": { + "version": "1.2.28-2", + "arch": "amd64" + }, + "libxmuu1": { + "version": "2:1.1.3-0ubuntu1", + "arch": "amd64" + }, + "libxrandr2": { + "version": "2:1.5.2-0ubuntu1", + "arch": "amd64" + }, + "libxrender1": { + "version": "1:0.9.10-1", + "arch": "amd64" + }, + "libxshmfence1": { + "version": "1.3-1", + "arch": "amd64" + }, + "libxslt1.1": { + "version": "1.1.34-4", + "arch": "amd64" + }, + "libxtables12": { + "version": "1.8.4-3ubuntu2", + "arch": "amd64" + }, + "libxtst6": { + "version": "2:1.2.3-1", + "arch": "amd64" + }, + "libxxf86vm1": { + "version": "1:1.1.4-1build1", + "arch": "amd64" + }, + "libyaml-0-2": { + "version": "0.2.2-1", + "arch": "amd64" + }, + "libzstd1": { + "version": "1.4.4+dfsg-3ubuntu0.1", + "arch": "amd64" + }, + "linux-base": { + "version": "4.5ubuntu3.7", + "arch": "all" + }, + "linux-cloud-tools-5.4.0-107": { + "version": "5.4.0-107.121", + "arch": "amd64" + }, + "linux-cloud-tools-5.4.0-107-generic": { + "version": "5.4.0-107.121", + "arch": "amd64" + }, + "linux-cloud-tools-5.4.0-42": { + "version": "5.4.0-42.46", + "arch": "amd64" + }, + "linux-cloud-tools-5.4.0-42-generic": { + "version": "5.4.0-42.46", + "arch": "amd64" + }, + "linux-cloud-tools-common": { + "version": "5.4.0-107.121", + "arch": "all" + }, + "linux-cloud-tools-generic": { + "version": "5.4.0.107.111", + "arch": "amd64" + }, + "linux-cloud-tools-virtual": { + "version": "5.4.0.107.111", + "arch": "amd64" + }, + "linux-firmware": { + "version": "1.187.29", + "arch": "all" + }, + "linux-generic": { + "version": "5.4.0.107.111", + "arch": "amd64" + }, + "linux-headers-5.4.0-107": { + "version": "5.4.0-107.121", + "arch": "all" + }, + "linux-headers-5.4.0-107-generic": { + "version": "5.4.0-107.121", + "arch": "amd64" + }, + "linux-headers-5.4.0-42": { + "version": "5.4.0-42.46", + "arch": "all" + }, + "linux-headers-5.4.0-42-generic": { + "version": "5.4.0-42.46", + "arch": "amd64" + }, + "linux-headers-generic": { + "version": "5.4.0.107.111", + "arch": "amd64" + }, + "linux-image-5.4.0-107-generic": { + "version": "5.4.0-107.121", + "arch": "amd64" + }, + "linux-image-5.4.0-42-generic": { + "version": "5.4.0-42.46", + "arch": "amd64" + }, + "linux-image-generic": { + "version": "5.4.0.107.111", + "arch": "amd64" + }, + "linux-libc-dev": { + "version": "5.4.0-110.124", + "arch": "amd64" + }, + "linux-modules-5.4.0-107-generic": { + "version": "5.4.0-107.121", + "arch": "amd64" + }, + "linux-modules-5.4.0-42-generic": { + "version": "5.4.0-42.46", + "arch": "amd64" + }, + "linux-modules-extra-5.4.0-107-generic": { + "version": "5.4.0-107.121", + "arch": "amd64" + }, + "linux-modules-extra-5.4.0-42-generic": { + "version": "5.4.0-42.46", + "arch": "amd64" + }, + "linux-tools-5.4.0-42": { + "version": "5.4.0-42.46", + "arch": "amd64" + }, + "linux-tools-5.4.0-42-generic": { + "version": "5.4.0-42.46", + "arch": "amd64" + }, + "linux-tools-common": { + "version": "5.4.0-107.121", + "arch": "all" + }, + "locales": { + "version": "2.31-0ubuntu9.7", + "arch": "all" + }, + "login": { + "version": "1:4.8.1-1ubuntu5.20.04.1", + "arch": "amd64" + }, + "logrotate": { + "version": "3.14.0-4ubuntu3", + "arch": "amd64" + }, + "logsave": { + "version": "1.45.5-2ubuntu1", + "arch": "amd64" + }, + "lsb-base": { + "version": "11.1.0ubuntu2", + "arch": "all" + }, + "lsb-release": { + "version": "11.1.0ubuntu2", + "arch": "all" + }, + "lshw": { + "version": "02.18.85-0.3ubuntu2.20.04.1", + "arch": "amd64" + }, + "lsof": { + "version": "4.93.2+dfsg-1ubuntu0.20.04.1", + "arch": "amd64" + }, + "ltrace": { + "version": "0.7.3-6.1ubuntu1", + "arch": "amd64" + }, + "lvm2": { + "version": "2.03.07-1ubuntu1", + "arch": "amd64" + }, + "lxd-agent-loader": { + "version": "0.4", + "arch": "all" + }, + "lz4": { + "version": "1.9.2-2ubuntu0.20.04.1", + "arch": "amd64" + }, + "mailutils": { + "version": "1:3.7-2.1", + "arch": "amd64" + }, + "mailutils-common": { + "version": "1:3.7-2.1", + "arch": "all" + }, + "make": { + "version": "4.2.1-1.2", + "arch": "amd64" + }, + "man-db": { + "version": "2.9.1-1", + "arch": "amd64" + }, + "manpages": { + "version": "5.05-1", + "arch": "all" + }, + "manpages-dev": { + "version": "5.05-1", + "arch": "all" + }, + "mawk": { + "version": "1.3.4.20200120-2", + "arch": "amd64" + }, + "mdadm": { + "version": "4.1-5ubuntu1.2", + "arch": "amd64" + }, + "mesa-vulkan-drivers": { + "version": "21.2.6-0ubuntu0.1~20.04.2", + "arch": "amd64" + }, + "mime-support": { + "version": "3.64ubuntu1", + "arch": "all" + }, + "mlocate": { + "version": "0.26-3ubuntu3", + "arch": "amd64" + }, + "modemmanager": { + "version": "1.16.6-2~20.04.1", + "arch": "amd64" + }, + "mosh": { + "version": "1.3.2-2.1build3", + "arch": "amd64" + }, + "motd-news-config": { + "version": "11ubuntu5.5", + "arch": "all" + }, + "mount": { + "version": "2.34-0.1ubuntu9.3", + "arch": "amd64" + }, + "mtr-tiny": { + "version": "0.93-1", + "arch": "amd64" + }, + "multipath-tools": { + "version": "0.8.3-1ubuntu2", + "arch": "amd64" + }, + "mysql-common": { + "version": "5.8+1.0.5ubuntu2", + "arch": "all" + }, + "nano": { + "version": "4.8-1ubuntu1", + "arch": "amd64" + }, + "ncurses-base": { + "version": "6.2-0ubuntu2", + "arch": "all" + }, + "ncurses-bin": { + "version": "6.2-0ubuntu2", + "arch": "amd64" + }, + "ncurses-term": { + "version": "6.2-0ubuntu2", + "arch": "all" + }, + "netbase": { + "version": "6.1", + "arch": "all" + }, + "netcat-openbsd": { + "version": "1.206-1ubuntu1", + "arch": "amd64" + }, + "netplan.io": { + "version": "0.104-0ubuntu2~20.04.1", + "arch": "amd64" + }, + "networkd-dispatcher": { + "version": "2.1-2~ubuntu20.04.1", + "arch": "all" + }, + "nodejs": { + "version": "14.19.3-deb-1nodesource1", + "arch": "amd64" + }, + "ntfs-3g": { + "version": "1:2017.3.23AR.3-3ubuntu1.1", + "arch": "amd64" + }, + "ntp": { + "version": "1:4.2.8p12+dfsg-3ubuntu4.20.04.1", + "arch": "amd64" + }, + "open-iscsi": { + "version": "2.0.874-7.1ubuntu6.2", + "arch": "amd64" + }, + "open-vm-tools": { + "version": "2:11.3.0-2ubuntu0~ubuntu20.04.2", + "arch": "amd64" + }, + "openssh-client": { + "version": "1:8.2p1-4ubuntu0.4", + "arch": "amd64" + }, + "openssh-server": { + "version": "1:8.2p1-4ubuntu0.4", + "arch": "amd64" + }, + "openssh-sftp-server": { + "version": "1:8.2p1-4ubuntu0.4", + "arch": "amd64" + }, + "openssl": { + "version": "1.1.1f-1ubuntu2.12", + "arch": "amd64" + }, + "os-prober": { + "version": "1.74ubuntu2", + "arch": "amd64" + }, + "overlayroot": { + "version": "0.45ubuntu2", + "arch": "all" + }, + "packagekit": { + "version": "1.1.13-2ubuntu1.1", + "arch": "amd64" + }, + "packagekit-tools": { + "version": "1.1.13-2ubuntu1.1", + "arch": "amd64" + }, + "parted": { + "version": "3.3-4ubuntu0.20.04.1", + "arch": "amd64" + }, + "passwd": { + "version": "1:4.8.1-1ubuntu5.20.04.1", + "arch": "amd64" + }, + "pastebinit": { + "version": "1.5.1-1", + "arch": "all" + }, + "patch": { + "version": "2.7.6-6", + "arch": "amd64" + }, + "pci.ids": { + "version": "0.0~2020.03.20-1", + "arch": "all" + }, + "pciutils": { + "version": "1:3.6.4-1ubuntu0.20.04.1", + "arch": "amd64" + }, + "perl": { + "version": "5.30.0-9ubuntu0.2", + "arch": "amd64" + }, + "perl-base": { + "version": "5.30.0-9ubuntu0.2", + "arch": "amd64" + }, + "perl-modules-5.30": { + "version": "5.30.0-9ubuntu0.2", + "arch": "all" + }, + "pinentry-curses": { + "version": "1.1.0-3build1", + "arch": "amd64" + }, + "plymouth": { + "version": "0.9.4git20200323-0ubuntu6.2", + "arch": "amd64" + }, + "plymouth-theme-ubuntu-text": { + "version": "0.9.4git20200323-0ubuntu6.2", + "arch": "amd64" + }, + "policykit-1": { + "version": "0.105-26ubuntu1.3", + "arch": "amd64" + }, + "pollinate": { + "version": "4.33-3ubuntu1.20.04.1", + "arch": "all" + }, + "popularity-contest": { + "version": "1.69ubuntu1", + "arch": "all" + }, + "postfix": { + "version": "3.4.13-0ubuntu1.2", + "arch": "amd64" + }, + "powermgmt-base": { + "version": "1.36", + "arch": "all" + }, + "procps": { + "version": "2:3.3.16-1ubuntu2.3", + "arch": "amd64" + }, + "psmisc": { + "version": "23.3-1", + "arch": "amd64" + }, + "publicsuffix": { + "version": "20200303.0012-1", + "arch": "all" + }, + "python-apt-common": { + "version": "2.0.0ubuntu0.20.04.7", + "arch": "all" + }, + "python-pip-whl": { + "version": "20.0.2-5ubuntu1.6", + "arch": "all" + }, + "python3": { + "version": "3.8.2-0ubuntu2", + "arch": "amd64" + }, + "python3-apport": { + "version": "2.20.11-0ubuntu27.23", + "arch": "all" + }, + "python3-apt": { + "version": "2.0.0ubuntu0.20.04.7", + "arch": "amd64" + }, + "python3-attr": { + "version": "19.3.0-2", + "arch": "all" + }, + "python3-automat": { + "version": "0.8.0-1ubuntu1", + "arch": "all" + }, + "python3-blinker": { + "version": "1.4+dfsg1-0.3ubuntu1", + "arch": "all" + }, + "python3-certifi": { + "version": "2019.11.28-1", + "arch": "all" + }, + "python3-cffi-backend": { + "version": "1.14.0-1build1", + "arch": "amd64" + }, + "python3-chardet": { + "version": "3.0.4-4build1", + "arch": "all" + }, + "python3-click": { + "version": "7.0-3", + "arch": "all" + }, + "python3-colorama": { + "version": "0.4.3-1build1", + "arch": "all" + }, + "python3-commandnotfound": { + "version": "20.04.6", + "arch": "all" + }, + "python3-configobj": { + "version": "5.0.6-4", + "arch": "all" + }, + "python3-constantly": { + "version": "15.1.0-1build1", + "arch": "all" + }, + "python3-cryptography": { + "version": "2.8-3ubuntu0.1", + "arch": "amd64" + }, + "python3-dbus": { + "version": "1.2.16-1build1", + "arch": "amd64" + }, + "python3-debconf": { + "version": "1.5.73", + "arch": "all" + }, + "python3-debian": { + "version": "0.1.36ubuntu1", + "arch": "all" + }, + "python3-dev": { + "version": "3.8.2-0ubuntu2", + "arch": "amd64" + }, + "python3-distro": { + "version": "1.4.0-1", + "arch": "all" + }, + "python3-distro-info": { + "version": "0.23ubuntu1", + "arch": "all" + }, + "python3-distupgrade": { + "version": "1:20.04.37", + "arch": "all" + }, + "python3-distutils": { + "version": "3.8.10-0ubuntu1~20.04", + "arch": "all" + }, + "python3-entrypoints": { + "version": "0.3-2ubuntu1", + "arch": "all" + }, + "python3-gdbm": { + "version": "3.8.10-0ubuntu1~20.04", + "arch": "amd64" + }, + "python3-gi": { + "version": "3.36.0-1", + "arch": "amd64" + }, + "python3-hamcrest": { + "version": "1.9.0-3", + "arch": "all" + }, + "python3-httplib2": { + "version": "0.14.0-1ubuntu1", + "arch": "all" + }, + "python3-hyperlink": { + "version": "19.0.0-1", + "arch": "all" + }, + "python3-idna": { + "version": "2.8-1", + "arch": "all" + }, + "python3-incremental": { + "version": "16.10.1-3.2", + "arch": "all" + }, + "python3-jwt": { + "version": "1.7.1-2ubuntu2", + "arch": "all" + }, + "python3-keyring": { + "version": "18.0.1-2ubuntu1", + "arch": "all" + }, + "python3-launchpadlib": { + "version": "1.10.13-1", + "arch": "all" + }, + "python3-lazr.restfulclient": { + "version": "0.14.2-2build1", + "arch": "all" + }, + "python3-lazr.uri": { + "version": "1.0.3-4build1", + "arch": "all" + }, + "python3-lib2to3": { + "version": "3.8.10-0ubuntu1~20.04", + "arch": "all" + }, + "python3-minimal": { + "version": "3.8.2-0ubuntu2", + "arch": "amd64" + }, + "python3-nacl": { + "version": "1.3.0-5", + "arch": "amd64" + }, + "python3-netifaces": { + "version": "0.10.4-1ubuntu4", + "arch": "amd64" + }, + "python3-newt": { + "version": "0.52.21-4ubuntu2", + "arch": "amd64" + }, + "python3-oauthlib": { + "version": "3.1.0-1ubuntu2", + "arch": "all" + }, + "python3-openssl": { + "version": "19.0.0-1build1", + "arch": "all" + }, + "python3-pexpect": { + "version": "4.6.0-1build1", + "arch": "all" + }, + "python3-pip": { + "version": "20.0.2-5ubuntu1.6", + "arch": "all" + }, + "python3-pkg-resources": { + "version": "45.2.0-1", + "arch": "all" + }, + "python3-problem-report": { + "version": "2.20.11-0ubuntu27.23", + "arch": "all" + }, + "python3-ptyprocess": { + "version": "0.6.0-1ubuntu1", + "arch": "all" + }, + "python3-pyasn1": { + "version": "0.4.2-3build1", + "arch": "all" + }, + "python3-pyasn1-modules": { + "version": "0.2.1-0.2build1", + "arch": "all" + }, + "python3-pymacaroons": { + "version": "0.13.0-3", + "arch": "all" + }, + "python3-pyqt5": { + "version": "5.14.1+dfsg-3build1", + "arch": "amd64" + }, + "python3-requests": { + "version": "2.22.0-2ubuntu1", + "arch": "all" + }, + "python3-requests-unixsocket": { + "version": "0.2.0-2", + "arch": "all" + }, + "python3-secretstorage": { + "version": "2.3.1-2ubuntu1", + "arch": "all" + }, + "python3-service-identity": { + "version": "18.1.0-5build1", + "arch": "all" + }, + "python3-setuptools": { + "version": "45.2.0-1", + "arch": "all" + }, + "python3-simplejson": { + "version": "3.16.0-2ubuntu2", + "arch": "amd64" + }, + "python3-sip": { + "version": "4.19.21+dfsg-1build1", + "arch": "amd64" + }, + "python3-six": { + "version": "1.14.0-2", + "arch": "all" + }, + "python3-software-properties": { + "version": "0.99.9.8", + "arch": "all" + }, + "python3-systemd": { + "version": "234-3build2", + "arch": "amd64" + }, + "python3-twisted": { + "version": "18.9.0-11ubuntu0.20.04.2", + "arch": "all" + }, + "python3-twisted-bin": { + "version": "18.9.0-11ubuntu0.20.04.2", + "arch": "amd64" + }, + "python3-update-manager": { + "version": "1:20.04.10.10", + "arch": "all" + }, + "python3-urllib3": { + "version": "1.25.8-2ubuntu0.1", + "arch": "all" + }, + "python3-wadllib": { + "version": "1.3.3-3build1", + "arch": "all" + }, + "python3-wheel": { + "version": "0.34.2-1", + "arch": "all" + }, + "python3-yaml": { + "version": "5.3.1-1ubuntu0.1", + "arch": "amd64" + }, + "python3-zope.interface": { + "version": "4.7.1-1", + "arch": "amd64" + }, + "python3.8": { + "version": "3.8.10-0ubuntu1~20.04.4", + "arch": "amd64" + }, + "python3.8-dev": { + "version": "3.8.10-0ubuntu1~20.04.4", + "arch": "amd64" + }, + "python3.8-minimal": { + "version": "3.8.10-0ubuntu1~20.04.4", + "arch": "amd64" + }, + "qt5-gtk-platformtheme": { + "version": "5.12.8+dfsg-0ubuntu2.1", + "arch": "amd64" + }, + "qttranslations5-l10n": { + "version": "5.12.8-0ubuntu1", + "arch": "all" + }, + "rake": { + "version": "13.0.1-4", + "arch": "all" + }, + "readline-common": { + "version": "8.0-4", + "arch": "all" + }, + "rsync": { + "version": "3.1.3-8ubuntu0.3", + "arch": "amd64" + }, + "rsyslog": { + "version": "8.2001.0-1ubuntu1.1", + "arch": "amd64" + }, + "ruby": { + "version": "1:2.7+1", + "arch": "amd64" + }, + "ruby-minitest": { + "version": "5.13.0-1", + "arch": "all" + }, + "ruby-net-telnet": { + "version": "0.1.1-2", + "arch": "all" + }, + "ruby-power-assert": { + "version": "1.1.7-1", + "arch": "all" + }, + "ruby-test-unit": { + "version": "3.3.5-1", + "arch": "all" + }, + "ruby-xmlrpc": { + "version": "0.3.0-2", + "arch": "all" + }, + "ruby2.7": { + "version": "2.7.0-5ubuntu1.6", + "arch": "amd64" + }, + "rubygems-integration": { + "version": "1.16", + "arch": "all" + }, + "run-one": { + "version": "1.17-0ubuntu1", + "arch": "all" + }, + "sbsigntool": { + "version": "0.9.2-2ubuntu1", + "arch": "amd64" + }, + "screen": { + "version": "4.8.0-1ubuntu0.1", + "arch": "amd64" + }, + "secureboot-db": { + "version": "1.5", + "arch": "amd64" + }, + "sed": { + "version": "4.7-1", + "arch": "amd64" + }, + "sensible-utils": { + "version": "0.0.12+nmu1", + "arch": "all" + }, + "sg3-utils": { + "version": "1.44-1ubuntu2", + "arch": "amd64" + }, + "sg3-utils-udev": { + "version": "1.44-1ubuntu2", + "arch": "all" + }, + "shared-mime-info": { + "version": "1.15-1", + "arch": "amd64" + }, + "snapd": { + "version": "2.54.3+20.04.1ubuntu0.2", + "arch": "amd64" + }, + "sntp": { + "version": "1:4.2.8p12+dfsg-3ubuntu4.20.04.1", + "arch": "amd64" + }, + "software-properties-common": { + "version": "0.99.9.8", + "arch": "all" + }, + "sosreport": { + "version": "4.3-1ubuntu0.20.04.1", + "arch": "amd64" + }, + "sound-theme-freedesktop": { + "version": "0.8-2ubuntu1", + "arch": "all" + }, + "squashfs-tools": { + "version": "1:4.4-1ubuntu0.3", + "arch": "amd64" + }, + "ssh-import-id": { + "version": "5.10-0ubuntu1", + "arch": "all" + }, + "ssl-cert": { + "version": "1.0.39", + "arch": "all" + }, + "strace": { + "version": "5.5-3ubuntu1", + "arch": "amd64" + }, + "sudo": { + "version": "1.8.31-1ubuntu1.2", + "arch": "amd64" + }, + "sysstat": { + "version": "12.2.0-2ubuntu0.1", + "arch": "amd64" + }, + "systemd": { + "version": "245.4-4ubuntu3.17", + "arch": "amd64" + }, + "systemd-sysv": { + "version": "245.4-4ubuntu3.17", + "arch": "amd64" + }, + "systemd-timesyncd": { + "version": "245.4-4ubuntu3.16", + "arch": "amd64" + }, + "sysvinit-utils": { + "version": "2.96-2.1ubuntu1", + "arch": "amd64" + }, + "tar": { + "version": "1.30+dfsg-7ubuntu0.20.04.2", + "arch": "amd64" + }, + "tasksel": { + "version": "3.34ubuntu16", + "arch": "all" + }, + "tasksel-data": { + "version": "3.34ubuntu16", + "arch": "all" + }, + "tcpdump": { + "version": "4.9.3-4ubuntu0.1", + "arch": "amd64" + }, + "telnet": { + "version": "0.17-41.2build1", + "arch": "amd64" + }, + "thin-provisioning-tools": { + "version": "0.8.5-4build1", + "arch": "amd64" + }, + "time": { + "version": "1.7-25.1build1", + "arch": "amd64" + }, + "tmux": { + "version": "3.0a-2ubuntu0.3", + "arch": "amd64" + }, + "tpm-udev": { + "version": "0.4", + "arch": "all" + }, + "tzdata": { + "version": "2022a-0ubuntu0.20.04", + "arch": "all" + }, + "ubuntu-advantage-tools": { + "version": "27.7~20.04.1", + "arch": "amd64" + }, + "ubuntu-keyring": { + "version": "2020.02.11.4", + "arch": "all" + }, + "ubuntu-minimal": { + "version": "1.450.2", + "arch": "amd64" + }, + "ubuntu-mono": { + "version": "19.04-0ubuntu3", + "arch": "all" + }, + "ubuntu-release-upgrader-core": { + "version": "1:20.04.37", + "arch": "all" + }, + "ubuntu-server": { + "version": "1.450.2", + "arch": "amd64" + }, + "ubuntu-standard": { + "version": "1.450.2", + "arch": "amd64" + }, + "ucf": { + "version": "3.0038+nmu1", + "arch": "all" + }, + "udev": { + "version": "245.4-4ubuntu3.16", + "arch": "amd64" + }, + "udisks2": { + "version": "2.8.4-1ubuntu2", + "arch": "amd64" + }, + "ufw": { + "version": "0.36-6ubuntu1", + "arch": "all" + }, + "unattended-upgrades": { + "version": "2.3ubuntu0.1", + "arch": "all" + }, + "unzip": { + "version": "6.0-25ubuntu1", + "arch": "amd64" + }, + "update-manager-core": { + "version": "1:20.04.10.10", + "arch": "all" + }, + "update-notifier-common": { + "version": "3.192.30.10", + "arch": "all" + }, + "usb-modeswitch": { + "version": "2.5.2+repack0-2ubuntu3", + "arch": "amd64" + }, + "usb-modeswitch-data": { + "version": "20191128-3", + "arch": "all" + }, + "usb.ids": { + "version": "2020.03.19-1", + "arch": "all" + }, + "usbutils": { + "version": "1:012-2", + "arch": "amd64" + }, + "util-linux": { + "version": "2.34-0.1ubuntu9.3", + "arch": "amd64" + }, + "uuid-runtime": { + "version": "2.34-0.1ubuntu9.3", + "arch": "amd64" + }, + "vim": { + "version": "2:8.1.2269-1ubuntu5.7", + "arch": "amd64" + }, + "vim-common": { + "version": "2:8.1.2269-1ubuntu5.7", + "arch": "all" + }, + "vim-nox": { + "version": "2:8.1.2269-1ubuntu5.7", + "arch": "amd64" + }, + "vim-runtime": { + "version": "2:8.1.2269-1ubuntu5.7", + "arch": "all" + }, + "vim-tiny": { + "version": "2:8.1.2269-1ubuntu5.7", + "arch": "amd64" + }, + "wget": { + "version": "1.20.3-1ubuntu2", + "arch": "amd64" + }, + "whiptail": { + "version": "0.52.21-4ubuntu2", + "arch": "amd64" + }, + "wireless-regdb": { + "version": "2021.08.28-0ubuntu1~20.04.1", + "arch": "all" + }, + "x11-common": { + "version": "1:7.7+19ubuntu14", + "arch": "all" + }, + "xauth": { + "version": "1:1.1-0ubuntu1", + "arch": "amd64" + }, + "xdg-user-dirs": { + "version": "0.17-2ubuntu1", + "arch": "amd64" + }, + "xfsprogs": { + "version": "5.3.0-1ubuntu2", + "arch": "amd64" + }, + "xkb-data": { + "version": "2.29-2", + "arch": "all" + }, + "xxd": { + "version": "2:8.1.2269-1ubuntu5.7", + "arch": "amd64" + }, + "xz-utils": { + "version": "5.2.4-1ubuntu1.1", + "arch": "amd64" + }, + "zerofree": { + "version": "1.1.1-1", + "arch": "amd64" + }, + "zip": { + "version": "3.0-11build1", + "arch": "amd64" + }, + "zlib1g": { + "version": "1:1.2.11.dfsg-2ubuntu1.3", + "arch": "amd64" + }, + "zlib1g-dev": { + "version": "1:1.2.11.dfsg-2ubuntu1.3", + "arch": "amd64" + } + }, + "cloud": null, + "ohai_time": 1653315595.8568022, + "cpu": { + "0": { + "vendor_id": "GenuineIntel", + "family": "6", + "model": "78", + "model_name": "Intel(R) Core(TM) i5-6300U CPU @ 2.40GHz", + "stepping": "3", + "mhz": "2496.006", + "cache_size": "3072 KB", + "physical_id": "0", + "core_id": "0", + "cores": "2", + "flags": [ + "fpu", + "vme", + "de", + "pse", + "tsc", + "msr", + "pae", + "mce", + "cx8", + "apic", + "sep", + "mtrr", + "pge", + "mca", + "cmov", + "pat", + "pse36", + "clflush", + "mmx", + "fxsr", + "sse", + "sse2", + "ht", + "syscall", + "nx", + "rdtscp", + "lm", + "constant_tsc", + "rep_good", + "nopl", + "xtopology", + "nonstop_tsc", + "cpuid", + "tsc_known_freq", + "pni", + "pclmulqdq", + "ssse3", + "cx16", + "pcid", + "sse4_1", + "sse4_2", + "x2apic", + "movbe", + "popcnt", + "aes", + "xsave", + "avx", + "rdrand", + "hypervisor", + "lahf_lm", + "abm", + "3dnowprefetch", + "invpcid_single", + "pti", + "fsgsbase", + "avx2", + "invpcid", + "rdseed", + "clflushopt", + "md_clear", + "flush_l1d", + "arch_capabilities" + ] + }, + "1": { + "vendor_id": "GenuineIntel", + "family": "6", + "model": "78", + "model_name": "Intel(R) Core(TM) i5-6300U CPU @ 2.40GHz", + "stepping": "3", + "mhz": "2496.006", + "cache_size": "3072 KB", + "physical_id": "0", + "core_id": "1", + "cores": "2", + "flags": [ + "fpu", + "vme", + "de", + "pse", + "tsc", + "msr", + "pae", + "mce", + "cx8", + "apic", + "sep", + "mtrr", + "pge", + "mca", + "cmov", + "pat", + "pse36", + "clflush", + "mmx", + "fxsr", + "sse", + "sse2", + "ht", + "syscall", + "nx", + "rdtscp", + "lm", + "constant_tsc", + "rep_good", + "nopl", + "xtopology", + "nonstop_tsc", + "cpuid", + "tsc_known_freq", + "pni", + "pclmulqdq", + "ssse3", + "cx16", + "pcid", + "sse4_1", + "sse4_2", + "x2apic", + "movbe", + "popcnt", + "aes", + "xsave", + "avx", + "rdrand", + "hypervisor", + "lahf_lm", + "abm", + "3dnowprefetch", + "invpcid_single", + "pti", + "fsgsbase", + "avx2", + "invpcid", + "rdseed", + "clflushopt", + "md_clear", + "flush_l1d", + "arch_capabilities" + ] + }, + "total": 2, + "real": 1, + "cores": 2 + }, + "init_package": "systemd", + "time": { + "timezone": "UTC" + }, + "virtualbox": { + "host": { + "revision": "150636", + "version": "6.1.34" + }, + "guest": { + "guest_additions_version": "6.1.34", + "guest_additions_revision": "150636" + } + }, + "chef_guid": "f39dc6ff-af2e-46f2-a642-790d1abbed4b", + "name": "vagrant-node-bitcoin", + "chef_environment": "development", + "recipes": [ + "kosmos-bitcoin::electrum", + "kosmos-bitcoin::yap", + "kosmos-bitcoin::_user", + "kosmos-nodejs::default", + "nodejs::nodejs_from_package", + "nodejs::repo" + ], + "expanded_run_list": [ + "kosmos-bitcoin::electrum", + "kosmos-bitcoin::yap" + ], + "roles": [ + + ], + "cookbooks": { + "kosmos-bitcoin": { + "version": "0.1.0" + }, + "ark": { + "version": "6.0.3" + }, + "backup": { + "version": "0.5.1" + }, + "git": { + "version": "10.0.0" + }, + "golang": { + "version": "5.3.1" + }, + "kosmos-nginx": { + "version": "0.3.2" + }, + "kosmos-nodejs": { + "version": "0.1.1" + }, + "firewall": { + "version": "2.6.5" + }, + "application_javascript": { + "version": "1.0.0" + }, + "tor-full": { + "version": "0.2.0" + }, + "redisio": { + "version": "5.0.0" + }, + "seven_zip": { + "version": "4.2.2" + }, + "logrotate": { + "version": "2.2.0" + }, + "mysql": { + "version": "8.7.4" + }, + "nginx": { + "version": "9.0.0" + }, + "openssl": { + "version": "8.5.5" + }, + "nodejs": { + "version": "7.3.3" + }, + "chef-sugar": { + "version": "3.3.0" + }, + "poise": { + "version": "2.8.2" + }, + "application": { + "version": "5.2.0" + }, + "poise-javascript": { + "version": "1.2.1" + }, + "poise-service": { + "version": "1.5.2" + }, + "apt": { + "version": "7.3.0" + }, + "yum": { + "version": "7.2.0" + }, + "ulimit": { + "version": "1.0.0" + }, + "selinux_policy": { + "version": "2.4.3" + }, + "build-essential": { + "version": "8.2.1" + }, + "ohai": { + "version": "5.2.5" + }, + "yum-epel": { + "version": "4.2.3" + }, + "chocolatey": { + "version": "3.0.0" + }, + "poise-languages": { + "version": "2.1.2" + }, + "mingw": { + "version": "2.1.3" + }, + "poise-archive": { + "version": "1.5.0" + } + } + }, + "run_list": [ + "recipe[kosmos-bitcoin::electrum]", + "recipe[kosmos-bitcoin::yap]" + ] +} \ No newline at end of file