私は海が嫌い。

エンジニアリングで調べたことをまとめます。

MacのVirtualBox上でsambaサーバーを動かす

背景

  • 仕事でsambaが必要になった。
  • sambaの仕様や挙動を調べたい。
  • VirtualBoxでやりたい。

環境

(base) kinako@imac ~ % sw_vers 
ProductName:    macOS
ProductVersion: 12.3.1
BuildVersion:   21E258
(base) kinako@imac ~ % vagrant -v
Vagrant 2.2.19
(base) kinako@imac ~ % vagrant box list
centos/7    (virtualbox, 2004.01)
centos7.box (virtualbox, 0)

手順

VagrantでCentOS7環境を作成

(base) kinako@imac samba % vagrant box list 
centos/7    (virtualbox, 2004.01)
centos7.box (virtualbox, 0)
(base) kinako@imac samba % vagrant init centos/7
A `Vagrantfile` has been placed in this directory. You are now
ready to `vagrant up` your first virtual environment! Please read
the comments in the Vagrantfile as well as documentation on
`vagrantup.com` for more information on using Vagrant.
(base) kinako@imac samba % ls
Vagrantfile
(base) kinako@imac samba % cat ./Vagrantfile 
# -*- mode: ruby -*-
# 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.
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://vagrantcloud.com/search.
  config.vm.box = "centos/7"

  # 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.
  # NOTE: This will enable public access to the opened port
  # config.vm.network "forwarded_port", guest: 80, host: 8080

  # Create a forwarded port mapping which allows access to a specific port
  # within the machine from a port on the host machine and only allow access
  # via 127.0.0.1 to disable public access
  # config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1"

  # Create a private network, which allows host-only access to the machine
  # using a specific IP.
  # config.vm.network "private_network", ip: "192.168.33.10"

  # 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.

  # Enable provisioning with a shell script. Additional provisioners such as
  # Ansible, Chef, Docker, Puppet and Salt are also available. Please see the
  # documentation for more information about their specific syntax and use.
  # config.vm.provision "shell", inline: <<-SHELL
  #   apt-get update
  #   apt-get install -y apache2
  # SHELL
end

デフォルトのVagrantfileのままだとNATで起動してしまいます。
ブリッジで接続したいので、Vagrantfileを修正します。
40行目のコメントをアウトさせるだけです。

(base) kinako@imac samba % cp ./Vagrantfile ./Vagrantfile.copy
(base) kinako@imac samba % vim ./Vagrantfile
(base) kinako@imac samba % diff ./Vagrantfile ./Vagrantfile.copy 
40c40
<    config.vm.network "public_network"
---
>   # config.vm.network "public_network"

vagrantで起動させます。
その際、どのインターフェースを使用してブリッジネットワークを利用するか尋ねられるので、指定します。

(base) kinako@imac samba % vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Importing base box 'centos/7'...
==> default: Matching MAC address for NAT networking...
==> default: Checking if box 'centos/7' version '2004.01' is up to date...
==> default: Setting the name of the VM: samba_default_1653798891424_81095
==> default: Clearing any previously set network interfaces...
==> default: Available bridged network interfaces:
1) en1: Wi-Fi (AirPort)
2) en0: Ethernet
3) en2: Thunderbolt 1
4) en3: Thunderbolt 2
5) bridge0
6) p2p0
7) awdl0
8) llw0
==> default: When choosing an interface, it is usually the one that is
==> default: being used to connect to the internet.
==> default: 
    default: Which interface should the network bridge to? 1
==> default: Preparing network interfaces based on configuration...
    default: Adapter 1: nat
    default: Adapter 2: bridged
==> default: Forwarding ports...
    default: 22 (guest) => 2222 (host) (adapter 1)
==> default: Booting VM...
==> default: Waiting for machine to boot. This may take a few minutes...
    default: SSH address: 127.0.0.1:2222
    default: SSH username: vagrant
    default: SSH auth method: private key
    default: 
    default: Vagrant insecure key detected. Vagrant will automatically replace
    default: this with a newly generated keypair for better security.
    default: 
    default: Inserting generated public key within guest...
    default: Removing insecure key from the guest if it's present...
    default: Key inserted! Disconnecting and reconnecting using new SSH key...
==> default: Machine booted and ready!
==> default: Checking for guest additions in VM...
    default: No guest additions were detected on the base box for this VM! Guest
    default: additions are required for forwarded ports, shared folders, host only
    default: networking, and more. If SSH fails on this machine, please install
    default: the guest additions and repackage the box to continue.
    default: 
    default: This is not an error message; everything may continue to work properly,
    default: in which case you may ignore this message.
==> default: Configuring and enabling network interfaces...
==> default: Rsyncing folder: /Users/kinako/blog/samba/ => /vagrant
(base) kinako@imac samba % vagrant status
Current machine states:

default                   running (virtualbox)

The VM is running. To stop this VM, you can run `vagrant halt` to
shut it down forcefully, or you can run `vagrant suspend` to simply
suspend the virtual machine. In either case, to restart it again,
simply run `vagrant up`.
(base) kinako@imac samba % vagrant ssh
[vagrant@localhost ~]$ hostname -I
10.0.2.15 100.64.1.231 

CentOS7のバージョン確認

[vagrant@localhost ~]$ cat /etc/redhat-release 
CentOS Linux release 7.8.2003 (Core)
[vagrant@localhost ~]$ 
[vagrant@localhost ~]$ cat /etc/centos-release
CentOS Linux release 7.8.2003 (Core)

どちらでも確認できるんですね。
シンボリックリンクなのかな、と思い、ちょっと確認。

[vagrant@localhost ~]$ ls -l /etc/*-release
-rw-r--r--. 1 root root 37 Apr  7  2020 /etc/centos-release
lrwxrwxrwx. 1 root root 21 Apr 30  2020 /etc/os-release -> ../usr/lib/os-release
lrwxrwxrwx. 1 root root 14 Apr 30  2020 /etc/redhat-release -> centos-release
lrwxrwxrwx. 1 root root 14 Apr 30  2020 /etc/system-release -> centos-release

横道に逸れましたが、またひとつ知ることができました。

SELinuxの停止

[vagrant@localhost ~]$ getenforce
Enforcing
[vagrant@localhost ~]$ sudo vi /etc/selinux/config 
[vagrant@localhost ~]$ cat /etc/selinux/config 

# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
#     enforcing - SELinux security policy is enforced.
#     permissive - SELinux prints warnings instead of enforcing.
#     disabled - No SELinux policy is loaded.
SELINUX=disabled
# SELINUXTYPE= can take one of three values:
#     targeted - Targeted processes are protected,
#     minimum - Modification of targeted policy. Only selected processes are protected. 
#     mls - Multi Level Security protection.
SELINUXTYPE=targeted


[vagrant@localhost ~]$ sudo reboot
Connection to 127.0.0.1 closed by remote host.
Connection to 127.0.0.1 closed.
(base) kinako@imac samba % vagrant ssh
Last login: Sun May 29 04:35:40 2022 from 10.0.2.2
[vagrant@localhost ~]$ getenforce
Disabled

本番環境でやる場合は、注意しましょう。

firewalldの確認

[vagrant@localhost ~]$ systemctl status firewalld
● firewalld.service - firewalld - dynamic firewall daemon
   Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled)
   Active: inactive (dead)
     Docs: man:firewalld(1)

確認したところ、deadだったため、このままにします。

yum update

[vagrant@localhost ~]$ sudo yum update
Failed to set locale, defaulting to C
Loaded plugins: fastestmirror
Determining fastest mirrors
 * base: ftp.iij.ad.jp
 * extras: ftp.iij.ad.jp
 * updates: ftp.iij.ad.jp
base                                                                                                       | 3.6 kB  00:00:00     
extras                                                                                                     | 2.9 kB  00:00:00     
updates                                                                                                    | 2.9 kB  00:00:00     
(1/4): base/7/x86_64/group_gz                                                                              | 153 kB  00:00:00     
(2/4): extras/7/x86_64/primary_db                                                                          | 247 kB  00:00:00     
(3/4): base/7/x86_64/primary_db                                                                            | 6.1 MB  00:00:01     
(4/4): updates/7/x86_64/primary_db                                                                         |  16 MB  00:00:03     
Resolving Dependencies
--> Running transaction check
---> Package NetworkManager.x86_64 1:1.18.4-3.el7 will be updated
---> Package NetworkManager.x86_64 1:1.18.8-2.el7_9 will be an update
---> Package NetworkManager-libnm.x86_64 1:1.18.4-3.el7 will be updated
---> Package NetworkManager-libnm.x86_64 1:1.18.8-2.el7_9 will be an update
---> Package NetworkManager-team.x86_64 1:1.18.4-3.el7 will be updated
---> Package NetworkManager-team.x86_64 1:1.18.8-2.el7_9 will be an update
---> Package NetworkManager-tui.x86_64 1:1.18.4-3.el7 will be updated
---> Package NetworkManager-tui.x86_64 1:1.18.8-2.el7_9 will be an update
---> Package bash.x86_64 0:4.2.46-34.el7 will be updated
---> Package bash.x86_64 0:4.2.46-35.el7_9 will be an update
---> Package bind-export-libs.x86_64 32:9.11.4-16.P2.el7_8.2 will be updated
---> Package bind-export-libs.x86_64 32:9.11.4-26.P2.el7_9.9 will be an update
---> Package binutils.x86_64 0:2.27-43.base.el7 will be updated
---> Package binutils.x86_64 0:2.27-44.base.el7_9.1 will be an update
---> Package ca-certificates.noarch 0:2019.2.32-76.el7_7 will be updated
---> Package ca-certificates.noarch 0:2021.2.50-72.el7_9 will be an update
---> Package centos-release.x86_64 0:7-8.2003.0.el7.centos will be updated
---> Package centos-release.x86_64 0:7-9.2009.1.el7.centos will be an update
---> Package chkconfig.x86_64 0:1.7.4-1.el7 will be updated
---> Package chkconfig.x86_64 0:1.7.6-1.el7 will be an update
---> Package coreutils.x86_64 0:8.22-24.el7 will be updated
---> Package coreutils.x86_64 0:8.22-24.el7_9.2 will be an update
---> Package cpio.x86_64 0:2.11-27.el7 will be updated
---> Package cpio.x86_64 0:2.11-28.el7 will be an update
---> Package cronie.x86_64 0:1.4.11-23.el7 will be updated
---> Package cronie.x86_64 0:1.4.11-24.el7_9 will be an update
---> Package cronie-anacron.x86_64 0:1.4.11-23.el7 will be updated
---> Package cronie-anacron.x86_64 0:1.4.11-24.el7_9 will be an update
---> Package cups-libs.x86_64 1:1.6.3-43.el7 will be updated
---> Package cups-libs.x86_64 1:1.6.3-51.el7 will be an update
---> Package curl.x86_64 0:7.29.0-57.el7 will be updated
---> Package curl.x86_64 0:7.29.0-59.el7_9.1 will be an update
---> Package cyrus-sasl-lib.x86_64 0:2.1.26-23.el7 will be updated
---> Package cyrus-sasl-lib.x86_64 0:2.1.26-24.el7_9 will be an update
---> Package dbus.x86_64 1:1.10.24-13.el7_6 will be updated
---> Package dbus.x86_64 1:1.10.24-15.el7 will be an update
---> Package dbus-libs.x86_64 1:1.10.24-13.el7_6 will be updated
---> Package dbus-libs.x86_64 1:1.10.24-15.el7 will be an update
---> Package device-mapper.x86_64 7:1.02.164-7.el7_8.1 will be updated
---> Package device-mapper.x86_64 7:1.02.170-6.el7_9.5 will be an update
---> Package device-mapper-libs.x86_64 7:1.02.164-7.el7_8.1 will be updated
---> Package device-mapper-libs.x86_64 7:1.02.170-6.el7_9.5 will be an update
---> Package dhclient.x86_64 12:4.2.5-79.el7.centos will be updated
---> Package dhclient.x86_64 12:4.2.5-83.el7.centos.1 will be an update
---> Package dhcp-common.x86_64 12:4.2.5-79.el7.centos will be updated
---> Package dhcp-common.x86_64 12:4.2.5-83.el7.centos.1 will be an update
---> Package dhcp-libs.x86_64 12:4.2.5-79.el7.centos will be updated
---> Package dhcp-libs.x86_64 12:4.2.5-83.el7.centos.1 will be an update
---> Package dmidecode.x86_64 1:3.2-3.el7 will be updated
---> Package dmidecode.x86_64 1:3.2-5.el7_9.1 will be an update
---> Package dracut.x86_64 0:033-568.el7 will be updated
---> Package dracut.x86_64 0:033-572.el7 will be an update
---> Package e2fsprogs.x86_64 0:1.42.9-17.el7 will be updated
---> Package e2fsprogs.x86_64 0:1.42.9-19.el7 will be an update
---> Package e2fsprogs-libs.x86_64 0:1.42.9-17.el7 will be updated
---> Package e2fsprogs-libs.x86_64 0:1.42.9-19.el7 will be an update
---> Package elfutils-default-yama-scope.noarch 0:0.176-4.el7 will be updated
---> Package elfutils-default-yama-scope.noarch 0:0.176-5.el7 will be an update
---> Package elfutils-libelf.x86_64 0:0.176-4.el7 will be updated
---> Package elfutils-libelf.x86_64 0:0.176-5.el7 will be an update
---> Package elfutils-libs.x86_64 0:0.176-4.el7 will be updated
---> Package elfutils-libs.x86_64 0:0.176-5.el7 will be an update
---> Package expat.x86_64 0:2.1.0-11.el7 will be updated
---> Package expat.x86_64 0:2.1.0-14.el7_9 will be an update
---> Package file.x86_64 0:5.11-36.el7 will be updated
---> Package file.x86_64 0:5.11-37.el7 will be an update
---> Package file-libs.x86_64 0:5.11-36.el7 will be updated
---> Package file-libs.x86_64 0:5.11-37.el7 will be an update
---> Package firewalld.noarch 0:0.6.3-8.el7_8.1 will be updated
---> Package firewalld.noarch 0:0.6.3-13.el7_9 will be an update
---> Package firewalld-filesystem.noarch 0:0.6.3-8.el7_8.1 will be updated
---> Package firewalld-filesystem.noarch 0:0.6.3-13.el7_9 will be an update
---> Package freetype.x86_64 0:2.8-14.el7 will be updated
---> Package freetype.x86_64 0:2.8-14.el7_9.1 will be an update
---> Package glib2.x86_64 0:2.56.1-5.el7 will be updated
---> Package glib2.x86_64 0:2.56.1-9.el7_9 will be an update
---> Package glibc.x86_64 0:2.17-307.el7.1 will be updated
---> Package glibc.x86_64 0:2.17-326.el7_9 will be an update
---> Package glibc-common.x86_64 0:2.17-307.el7.1 will be updated
---> Package glibc-common.x86_64 0:2.17-326.el7_9 will be an update
---> Package grub2.x86_64 1:2.02-0.81.el7.centos will be updated
---> Package grub2.x86_64 1:2.02-0.87.0.1.el7.centos.9 will be an update
---> Package grub2-common.noarch 1:2.02-0.81.el7.centos will be updated
---> Package grub2-common.noarch 1:2.02-0.87.0.1.el7.centos.9 will be an update
---> Package grub2-pc.x86_64 1:2.02-0.81.el7.centos will be updated
---> Package grub2-pc.x86_64 1:2.02-0.87.0.1.el7.centos.9 will be an update
---> Package grub2-pc-modules.noarch 1:2.02-0.81.el7.centos will be updated
---> Package grub2-pc-modules.noarch 1:2.02-0.87.0.1.el7.centos.9 will be an update
---> Package grub2-tools.x86_64 1:2.02-0.81.el7.centos will be updated
---> Package grub2-tools.x86_64 1:2.02-0.87.0.1.el7.centos.9 will be an update
---> Package grub2-tools-extra.x86_64 1:2.02-0.81.el7.centos will be updated
---> Package grub2-tools-extra.x86_64 1:2.02-0.87.0.1.el7.centos.9 will be an update
---> Package grub2-tools-minimal.x86_64 1:2.02-0.81.el7.centos will be updated
---> Package grub2-tools-minimal.x86_64 1:2.02-0.87.0.1.el7.centos.9 will be an update
---> Package gssproxy.x86_64 0:0.7.0-28.el7 will be updated
---> Package gssproxy.x86_64 0:0.7.0-30.el7_9 will be an update
---> Package gzip.x86_64 0:1.5-10.el7 will be updated
---> Package gzip.x86_64 0:1.5-11.el7_9 will be an update
---> Package hwdata.x86_64 0:0.252-9.5.el7 will be updated
---> Package hwdata.x86_64 0:0.252-9.7.el7 will be an update
---> Package initscripts.x86_64 0:9.49.49-1.el7 will be updated
---> Package initscripts.x86_64 0:9.49.53-1.el7_9.1 will be an update
--> Processing Dependency: bc for package: initscripts-9.49.53-1.el7_9.1.x86_64
---> Package iproute.x86_64 0:4.11.0-25.el7_7.2 will be updated
---> Package iproute.x86_64 0:4.11.0-30.el7 will be an update
---> Package iptables.x86_64 0:1.4.21-34.el7 will be updated
---> Package iptables.x86_64 0:1.4.21-35.el7 will be an update
---> Package kbd.x86_64 0:1.15.5-15.el7 will be updated
---> Package kbd.x86_64 0:1.15.5-16.el7_9 will be an update
---> Package kbd-legacy.noarch 0:1.15.5-15.el7 will be updated
---> Package kbd-legacy.noarch 0:1.15.5-16.el7_9 will be an update
---> Package kbd-misc.noarch 0:1.15.5-15.el7 will be updated
---> Package kbd-misc.noarch 0:1.15.5-16.el7_9 will be an update
---> Package kernel.x86_64 0:3.10.0-1160.66.1.el7 will be installed
---> Package kernel-tools.x86_64 0:3.10.0-1127.el7 will be updated
---> Package kernel-tools.x86_64 0:3.10.0-1160.66.1.el7 will be an update
---> Package kernel-tools-libs.x86_64 0:3.10.0-1127.el7 will be updated
---> Package kernel-tools-libs.x86_64 0:3.10.0-1160.66.1.el7 will be an update
---> Package kpartx.x86_64 0:0.4.9-131.el7 will be updated
---> Package kpartx.x86_64 0:0.4.9-135.el7_9 will be an update
---> Package krb5-libs.x86_64 0:1.15.1-46.el7 will be updated
---> Package krb5-libs.x86_64 0:1.15.1-51.el7_9 will be an update
---> Package libblkid.x86_64 0:2.23.2-63.el7 will be updated
---> Package libblkid.x86_64 0:2.23.2-65.el7_9.1 will be an update
---> Package libcom_err.x86_64 0:1.42.9-17.el7 will be updated
---> Package libcom_err.x86_64 0:1.42.9-19.el7 will be an update
---> Package libcroco.x86_64 0:0.6.12-4.el7 will be updated
---> Package libcroco.x86_64 0:0.6.12-6.el7_9 will be an update
---> Package libcurl.x86_64 0:7.29.0-57.el7 will be updated
---> Package libcurl.x86_64 0:7.29.0-59.el7_9.1 will be an update
---> Package libgcc.x86_64 0:4.8.5-39.el7 will be updated
---> Package libgcc.x86_64 0:4.8.5-44.el7 will be an update
---> Package libgomp.x86_64 0:4.8.5-39.el7 will be updated
---> Package libgomp.x86_64 0:4.8.5-44.el7 will be an update
---> Package libldb.x86_64 0:1.5.4-1.el7 will be updated
---> Package libldb.x86_64 0:1.5.4-2.el7 will be an update
---> Package libmount.x86_64 0:2.23.2-63.el7 will be updated
---> Package libmount.x86_64 0:2.23.2-65.el7_9.1 will be an update
---> Package libmspack.x86_64 0:0.5-0.7.alpha.el7 will be updated
---> Package libmspack.x86_64 0:0.5-0.8.alpha.el7 will be an update
---> Package libpng.x86_64 2:1.5.13-7.el7_2 will be updated
---> Package libpng.x86_64 2:1.5.13-8.el7 will be an update
---> Package libsmartcols.x86_64 0:2.23.2-63.el7 will be updated
---> Package libsmartcols.x86_64 0:2.23.2-65.el7_9.1 will be an update
---> Package libss.x86_64 0:1.42.9-17.el7 will be updated
---> Package libss.x86_64 0:1.42.9-19.el7 will be an update
---> Package libssh2.x86_64 0:1.8.0-3.el7 will be updated
---> Package libssh2.x86_64 0:1.8.0-4.el7 will be an update
---> Package libstdc++.x86_64 0:4.8.5-39.el7 will be updated
---> Package libstdc++.x86_64 0:4.8.5-44.el7 will be an update
---> Package libteam.x86_64 0:1.29-1.el7 will be updated
---> Package libteam.x86_64 0:1.29-3.el7 will be an update
---> Package libuuid.x86_64 0:2.23.2-63.el7 will be updated
---> Package libuuid.x86_64 0:2.23.2-65.el7_9.1 will be an update
---> Package libwbclient.x86_64 0:4.10.4-10.el7 will be updated
---> Package libwbclient.x86_64 0:4.10.16-18.el7_9 will be an update
---> Package libxml2.x86_64 0:2.9.1-6.el7.4 will be updated
---> Package libxml2.x86_64 0:2.9.1-6.el7_9.6 will be an update
---> Package libxml2-python.x86_64 0:2.9.1-6.el7.4 will be updated
---> Package libxml2-python.x86_64 0:2.9.1-6.el7_9.6 will be an update
---> Package libxslt.x86_64 0:1.1.28-5.el7 will be updated
---> Package libxslt.x86_64 0:1.1.28-6.el7 will be an update
---> Package linux-firmware.noarch 0:20191203-76.gite8a0f4c.el7 will be updated
---> Package linux-firmware.noarch 0:20200421-80.git78c0348.el7_9 will be an update
---> Package lshw.x86_64 0:B.02.18-14.el7 will be updated
---> Package lshw.x86_64 0:B.02.18-17.el7 will be an update
---> Package lz4.x86_64 0:1.7.5-3.el7 will be updated
---> Package lz4.x86_64 0:1.8.3-1.el7 will be an update
---> Package mariadb-libs.x86_64 1:5.5.65-1.el7 will be updated
---> Package mariadb-libs.x86_64 1:5.5.68-1.el7 will be an update
---> Package nettle.x86_64 0:2.7.1-8.el7 will be updated
---> Package nettle.x86_64 0:2.7.1-9.el7_9 will be an update
---> Package nfs-utils.x86_64 1:1.3.0-0.66.el7 will be updated
---> Package nfs-utils.x86_64 1:1.3.0-0.68.el7.2 will be an update
---> Package nspr.x86_64 0:4.21.0-1.el7 will be updated
---> Package nspr.x86_64 0:4.32.0-1.el7_9 will be an update
---> Package nss.x86_64 0:3.44.0-7.el7_7 will be updated
---> Package nss.x86_64 0:3.67.0-4.el7_9 will be an update
---> Package nss-softokn.x86_64 0:3.44.0-8.el7_7 will be updated
---> Package nss-softokn.x86_64 0:3.67.0-3.el7_9 will be an update
---> Package nss-softokn-freebl.x86_64 0:3.44.0-8.el7_7 will be updated
---> Package nss-softokn-freebl.x86_64 0:3.67.0-3.el7_9 will be an update
---> Package nss-sysinit.x86_64 0:3.44.0-7.el7_7 will be updated
---> Package nss-sysinit.x86_64 0:3.67.0-4.el7_9 will be an update
---> Package nss-tools.x86_64 0:3.44.0-7.el7_7 will be updated
---> Package nss-tools.x86_64 0:3.67.0-4.el7_9 will be an update
---> Package nss-util.x86_64 0:3.44.0-4.el7_7 will be updated
---> Package nss-util.x86_64 0:3.67.0-1.el7_9 will be an update
---> Package open-vm-tools.x86_64 0:10.3.10-2.el7 will be updated
---> Package open-vm-tools.x86_64 0:11.0.5-3.el7_9.3 will be an update
---> Package openldap.x86_64 0:2.4.44-21.el7_6 will be updated
---> Package openldap.x86_64 0:2.4.44-25.el7_9 will be an update
---> Package openssh.x86_64 0:7.4p1-21.el7 will be updated
---> Package openssh.x86_64 0:7.4p1-22.el7_9 will be an update
---> Package openssh-clients.x86_64 0:7.4p1-21.el7 will be updated
---> Package openssh-clients.x86_64 0:7.4p1-22.el7_9 will be an update
---> Package openssh-server.x86_64 0:7.4p1-21.el7 will be updated
---> Package openssh-server.x86_64 0:7.4p1-22.el7_9 will be an update
---> Package openssl.x86_64 1:1.0.2k-19.el7 will be updated
---> Package openssl.x86_64 1:1.0.2k-25.el7_9 will be an update
---> Package openssl-libs.x86_64 1:1.0.2k-19.el7 will be updated
---> Package openssl-libs.x86_64 1:1.0.2k-25.el7_9 will be an update
---> Package polkit.x86_64 0:0.112-26.el7 will be updated
---> Package polkit.x86_64 0:0.112-26.el7_9.1 will be an update
---> Package procps-ng.x86_64 0:3.3.10-27.el7 will be updated
---> Package procps-ng.x86_64 0:3.3.10-28.el7 will be an update
---> Package pyldb.x86_64 0:1.5.4-1.el7 will be updated
---> Package pyldb.x86_64 0:1.5.4-2.el7 will be an update
---> Package python.x86_64 0:2.7.5-88.el7 will be updated
---> Package python.x86_64 0:2.7.5-90.el7 will be an update
---> Package python-firewall.noarch 0:0.6.3-8.el7_8.1 will be updated
---> Package python-firewall.noarch 0:0.6.3-13.el7_9 will be an update
---> Package python-libs.x86_64 0:2.7.5-88.el7 will be updated
---> Package python-libs.x86_64 0:2.7.5-90.el7 will be an update
---> Package python-perf.x86_64 0:3.10.0-1127.el7 will be updated
---> Package python-perf.x86_64 0:3.10.0-1160.66.1.el7 will be an update
---> Package rpm.x86_64 0:4.11.3-43.el7 will be updated
---> Package rpm.x86_64 0:4.11.3-48.el7_9 will be an update
---> Package rpm-build-libs.x86_64 0:4.11.3-43.el7 will be updated
---> Package rpm-build-libs.x86_64 0:4.11.3-48.el7_9 will be an update
---> Package rpm-libs.x86_64 0:4.11.3-43.el7 will be updated
---> Package rpm-libs.x86_64 0:4.11.3-48.el7_9 will be an update
---> Package rpm-python.x86_64 0:4.11.3-43.el7 will be updated
---> Package rpm-python.x86_64 0:4.11.3-48.el7_9 will be an update
---> Package rsyslog.x86_64 0:8.24.0-52.el7 will be updated
---> Package rsyslog.x86_64 0:8.24.0-57.el7_9.2 will be an update
---> Package samba-client-libs.x86_64 0:4.10.4-10.el7 will be updated
---> Package samba-client-libs.x86_64 0:4.10.16-18.el7_9 will be an update
---> Package samba-common.noarch 0:4.10.4-10.el7 will be updated
---> Package samba-common.noarch 0:4.10.16-18.el7_9 will be an update
---> Package samba-common-libs.x86_64 0:4.10.4-10.el7 will be updated
---> Package samba-common-libs.x86_64 0:4.10.16-18.el7_9 will be an update
---> Package samba-libs.x86_64 0:4.10.4-10.el7 will be updated
---> Package samba-libs.x86_64 0:4.10.16-18.el7_9 will be an update
---> Package sed.x86_64 0:4.2.2-6.el7 will be updated
---> Package sed.x86_64 0:4.2.2-7.el7 will be an update
---> Package selinux-policy.noarch 0:3.13.1-266.el7 will be updated
---> Package selinux-policy.noarch 0:3.13.1-268.el7_9.2 will be an update
---> Package selinux-policy-targeted.noarch 0:3.13.1-266.el7 will be updated
---> Package selinux-policy-targeted.noarch 0:3.13.1-268.el7_9.2 will be an update
---> Package sudo.x86_64 0:1.8.23-9.el7 will be updated
---> Package sudo.x86_64 0:1.8.23-10.el7_9.2 will be an update
---> Package systemd.x86_64 0:219-73.el7_8.5 will be updated
---> Package systemd.x86_64 0:219-78.el7_9.5 will be an update
---> Package systemd-libs.x86_64 0:219-73.el7_8.5 will be updated
---> Package systemd-libs.x86_64 0:219-78.el7_9.5 will be an update
---> Package systemd-sysv.x86_64 0:219-73.el7_8.5 will be updated
---> Package systemd-sysv.x86_64 0:219-78.el7_9.5 will be an update
---> Package teamd.x86_64 0:1.29-1.el7 will be updated
---> Package teamd.x86_64 0:1.29-3.el7 will be an update
---> Package tuned.noarch 0:2.11.0-8.el7 will be updated
---> Package tuned.noarch 0:2.11.0-11.el7_9 will be an update
---> Package tzdata.noarch 0:2020a-1.el7 will be updated
---> Package tzdata.noarch 0:2022a-1.el7 will be an update
---> Package util-linux.x86_64 0:2.23.2-63.el7 will be updated
---> Package util-linux.x86_64 0:2.23.2-65.el7_9.1 will be an update
---> Package vim-minimal.x86_64 2:7.4.629-6.el7 will be updated
---> Package vim-minimal.x86_64 2:7.4.629-8.el7_9 will be an update
---> Package virt-what.x86_64 0:1.18-4.el7 will be updated
---> Package virt-what.x86_64 0:1.18-4.el7_9.1 will be an update
---> Package wpa_supplicant.x86_64 1:2.6-12.el7 will be updated
---> Package wpa_supplicant.x86_64 1:2.6-12.el7_9.2 will be an update
---> Package xfsprogs.x86_64 0:4.5.0-20.el7 will be updated
---> Package xfsprogs.x86_64 0:4.5.0-22.el7 will be an update
---> Package yum.noarch 0:3.4.3-167.el7.centos will be updated
---> Package yum.noarch 0:3.4.3-168.el7.centos will be an update
---> Package yum-plugin-fastestmirror.noarch 0:1.1.31-53.el7 will be updated
---> Package yum-plugin-fastestmirror.noarch 0:1.1.31-54.el7_8 will be an update
---> Package yum-utils.noarch 0:1.1.31-53.el7 will be updated
---> Package yum-utils.noarch 0:1.1.31-54.el7_8 will be an update
---> Package zlib.x86_64 0:1.2.7-18.el7 will be updated
---> Package zlib.x86_64 0:1.2.7-20.el7_9 will be an update
--> Running transaction check
---> Package bc.x86_64 0:1.06.95-13.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

==================================================================================================================================
 Package                                 Arch               Version                                     Repository           Size
==================================================================================================================================
Installing:
 kernel                                  x86_64             3.10.0-1160.66.1.el7                        updates              50 M
Updating:
 NetworkManager                          x86_64             1:1.18.8-2.el7_9                            updates             1.9 M
 NetworkManager-libnm                    x86_64             1:1.18.8-2.el7_9                            updates             1.7 M
 NetworkManager-team                     x86_64             1:1.18.8-2.el7_9                            updates             165 k
 NetworkManager-tui                      x86_64             1:1.18.8-2.el7_9                            updates             329 k
 bash                                    x86_64             4.2.46-35.el7_9                             updates             1.0 M
 bind-export-libs                        x86_64             32:9.11.4-26.P2.el7_9.9                     updates             1.1 M
 binutils                                x86_64             2.27-44.base.el7_9.1                        updates             5.9 M
 ca-certificates                         noarch             2021.2.50-72.el7_9                          updates             379 k
 centos-release                          x86_64             7-9.2009.1.el7.centos                       updates              27 k
 chkconfig                               x86_64             1.7.6-1.el7                                 base                182 k
 coreutils                               x86_64             8.22-24.el7_9.2                             updates             3.3 M
 cpio                                    x86_64             2.11-28.el7                                 base                211 k
 cronie                                  x86_64             1.4.11-24.el7_9                             updates              92 k
 cronie-anacron                          x86_64             1.4.11-24.el7_9                             updates              36 k
 cups-libs                               x86_64             1:1.6.3-51.el7                              base                359 k
 curl                                    x86_64             7.29.0-59.el7_9.1                           updates             271 k
 cyrus-sasl-lib                          x86_64             2.1.26-24.el7_9                             updates             156 k
 dbus                                    x86_64             1:1.10.24-15.el7                            base                245 k
 dbus-libs                               x86_64             1:1.10.24-15.el7                            base                169 k
 device-mapper                           x86_64             7:1.02.170-6.el7_9.5                        updates             297 k
 device-mapper-libs                      x86_64             7:1.02.170-6.el7_9.5                        updates             325 k
 dhclient                                x86_64             12:4.2.5-83.el7.centos.1                    updates             286 k
 dhcp-common                             x86_64             12:4.2.5-83.el7.centos.1                    updates             177 k
 dhcp-libs                               x86_64             12:4.2.5-83.el7.centos.1                    updates             133 k
 dmidecode                               x86_64             1:3.2-5.el7_9.1                             updates              82 k
 dracut                                  x86_64             033-572.el7                                 base                329 k
 e2fsprogs                               x86_64             1.42.9-19.el7                               base                701 k
 e2fsprogs-libs                          x86_64             1.42.9-19.el7                               base                168 k
 elfutils-default-yama-scope             noarch             0.176-5.el7                                 base                 33 k
 elfutils-libelf                         x86_64             0.176-5.el7                                 base                195 k
 elfutils-libs                           x86_64             0.176-5.el7                                 base                291 k
 expat                                   x86_64             2.1.0-14.el7_9                              updates              83 k
 file                                    x86_64             5.11-37.el7                                 base                 57 k
 file-libs                               x86_64             5.11-37.el7                                 base                340 k
 firewalld                               noarch             0.6.3-13.el7_9                              updates             449 k
 firewalld-filesystem                    noarch             0.6.3-13.el7_9                              updates              51 k
 freetype                                x86_64             2.8-14.el7_9.1                              updates             380 k
 glib2                                   x86_64             2.56.1-9.el7_9                              updates             2.5 M
 glibc                                   x86_64             2.17-326.el7_9                              updates             3.6 M
 glibc-common                            x86_64             2.17-326.el7_9                              updates              12 M
 grub2                                   x86_64             1:2.02-0.87.0.1.el7.centos.9                updates              34 k
 grub2-common                            noarch             1:2.02-0.87.0.1.el7.centos.9                updates             732 k
 grub2-pc                                x86_64             1:2.02-0.87.0.1.el7.centos.9                updates              34 k
 grub2-pc-modules                        noarch             1:2.02-0.87.0.1.el7.centos.9                updates             858 k
 grub2-tools                             x86_64             1:2.02-0.87.0.1.el7.centos.9                updates             1.8 M
 grub2-tools-extra                       x86_64             1:2.02-0.87.0.1.el7.centos.9                updates             1.0 M
 grub2-tools-minimal                     x86_64             1:2.02-0.87.0.1.el7.centos.9                updates             177 k
 gssproxy                                x86_64             0.7.0-30.el7_9                              updates             111 k
 gzip                                    x86_64             1.5-11.el7_9                                updates             130 k
 hwdata                                  x86_64             0.252-9.7.el7                               base                2.5 M
 initscripts                             x86_64             9.49.53-1.el7_9.1                           updates             440 k
 iproute                                 x86_64             4.11.0-30.el7                               base                805 k
 iptables                                x86_64             1.4.21-35.el7                               base                432 k
 kbd                                     x86_64             1.15.5-16.el7_9                             updates             347 k
 kbd-legacy                              noarch             1.15.5-16.el7_9                             updates             466 k
 kbd-misc                                noarch             1.15.5-16.el7_9                             updates             1.4 M
 kernel-tools                            x86_64             3.10.0-1160.66.1.el7                        updates             8.2 M
 kernel-tools-libs                       x86_64             3.10.0-1160.66.1.el7                        updates             8.1 M
 kpartx                                  x86_64             0.4.9-135.el7_9                             updates              81 k
 krb5-libs                               x86_64             1.15.1-51.el7_9                             updates             809 k
 libblkid                                x86_64             2.23.2-65.el7_9.1                           updates             183 k
 libcom_err                              x86_64             1.42.9-19.el7                               base                 42 k
 libcroco                                x86_64             0.6.12-6.el7_9                              updates             105 k
 libcurl                                 x86_64             7.29.0-59.el7_9.1                           updates             223 k
 libgcc                                  x86_64             4.8.5-44.el7                                base                103 k
 libgomp                                 x86_64             4.8.5-44.el7                                base                159 k
 libldb                                  x86_64             1.5.4-2.el7                                 updates             149 k
 libmount                                x86_64             2.23.2-65.el7_9.1                           updates             185 k
 libmspack                               x86_64             0.5-0.8.alpha.el7                           base                 64 k
 libpng                                  x86_64             2:1.5.13-8.el7                              base                213 k
 libsmartcols                            x86_64             2.23.2-65.el7_9.1                           updates             143 k
 libss                                   x86_64             1.42.9-19.el7                               base                 47 k
 libssh2                                 x86_64             1.8.0-4.el7                                 base                 88 k
 libstdc++                               x86_64             4.8.5-44.el7                                base                306 k
 libteam                                 x86_64             1.29-3.el7                                  base                 50 k
 libuuid                                 x86_64             2.23.2-65.el7_9.1                           updates              84 k
 libwbclient                             x86_64             4.10.16-18.el7_9                            updates             116 k
 libxml2                                 x86_64             2.9.1-6.el7_9.6                             updates             668 k
 libxml2-python                          x86_64             2.9.1-6.el7_9.6                             updates             247 k
 libxslt                                 x86_64             1.1.28-6.el7                                base                242 k
 linux-firmware                          noarch             20200421-80.git78c0348.el7_9                updates              80 M
 lshw                                    x86_64             B.02.18-17.el7                              base                324 k
 lz4                                     x86_64             1.8.3-1.el7                                 base                 85 k
 mariadb-libs                            x86_64             1:5.5.68-1.el7                              base                760 k
 nettle                                  x86_64             2.7.1-9.el7_9                               updates             328 k
 nfs-utils                               x86_64             1:1.3.0-0.68.el7.2                          updates             413 k
 nspr                                    x86_64             4.32.0-1.el7_9                              updates             127 k
 nss                                     x86_64             3.67.0-4.el7_9                              updates             882 k
 nss-softokn                             x86_64             3.67.0-3.el7_9                              updates             358 k
 nss-softokn-freebl                      x86_64             3.67.0-3.el7_9                              updates             337 k
 nss-sysinit                             x86_64             3.67.0-4.el7_9                              updates              66 k
 nss-tools                               x86_64             3.67.0-4.el7_9                              updates             549 k
 nss-util                                x86_64             3.67.0-1.el7_9                              updates              79 k
 open-vm-tools                           x86_64             11.0.5-3.el7_9.3                            updates             676 k
 openldap                                x86_64             2.4.44-25.el7_9                             updates             356 k
 openssh                                 x86_64             7.4p1-22.el7_9                              updates             510 k
 openssh-clients                         x86_64             7.4p1-22.el7_9                              updates             655 k
 openssh-server                          x86_64             7.4p1-22.el7_9                              updates             459 k
 openssl                                 x86_64             1:1.0.2k-25.el7_9                           updates             494 k
 openssl-libs                            x86_64             1:1.0.2k-25.el7_9                           updates             1.2 M
 polkit                                  x86_64             0.112-26.el7_9.1                            updates             170 k
 procps-ng                               x86_64             3.3.10-28.el7                               base                291 k
 pyldb                                   x86_64             1.5.4-2.el7                                 updates              49 k
 python                                  x86_64             2.7.5-90.el7                                updates              96 k
 python-firewall                         noarch             0.6.3-13.el7_9                              updates             355 k
 python-libs                             x86_64             2.7.5-90.el7                                updates             5.6 M
 python-perf                             x86_64             3.10.0-1160.66.1.el7                        updates             8.2 M
 rpm                                     x86_64             4.11.3-48.el7_9                             updates             1.2 M
 rpm-build-libs                          x86_64             4.11.3-48.el7_9                             updates             108 k
 rpm-libs                                x86_64             4.11.3-48.el7_9                             updates             279 k
 rpm-python                              x86_64             4.11.3-48.el7_9                             updates              84 k
 rsyslog                                 x86_64             8.24.0-57.el7_9.2                           updates             622 k
 samba-client-libs                       x86_64             4.10.16-18.el7_9                            updates             5.0 M
 samba-common                            noarch             4.10.16-18.el7_9                            updates             216 k
 samba-common-libs                       x86_64             4.10.16-18.el7_9                            updates             182 k
 samba-libs                              x86_64             4.10.16-18.el7_9                            updates             271 k
 sed                                     x86_64             4.2.2-7.el7                                 base                231 k
 selinux-policy                          noarch             3.13.1-268.el7_9.2                          updates             498 k
 selinux-policy-targeted                 noarch             3.13.1-268.el7_9.2                          updates             7.0 M
 sudo                                    x86_64             1.8.23-10.el7_9.2                           updates             843 k
 systemd                                 x86_64             219-78.el7_9.5                              updates             5.1 M
 systemd-libs                            x86_64             219-78.el7_9.5                              updates             419 k
 systemd-sysv                            x86_64             219-78.el7_9.5                              updates              97 k
 teamd                                   x86_64             1.29-3.el7                                  base                116 k
 tuned                                   noarch             2.11.0-11.el7_9                             updates             269 k
 tzdata                                  noarch             2022a-1.el7                                 updates             501 k
 util-linux                              x86_64             2.23.2-65.el7_9.1                           updates             2.0 M
 vim-minimal                             x86_64             2:7.4.629-8.el7_9                           updates             443 k
 virt-what                               x86_64             1.18-4.el7_9.1                              updates              30 k
 wpa_supplicant                          x86_64             1:2.6-12.el7_9.2                            updates             1.2 M
 xfsprogs                                x86_64             4.5.0-22.el7                                base                897 k
 yum                                     noarch             3.4.3-168.el7.centos                        base                1.2 M
 yum-plugin-fastestmirror                noarch             1.1.31-54.el7_8                             base                 34 k
 yum-utils                               noarch             1.1.31-54.el7_8                             base                122 k
 zlib                                    x86_64             1.2.7-20.el7_9                              updates              90 k
Installing for dependencies:
 bc                                      x86_64             1.06.95-13.el7                              base                115 k

Transaction Summary
==================================================================================================================================
Install    1 Package  (+1 Dependent package)
Upgrade  135 Packages

Total download size: 254 M
Is this ok [y/d/N]: y
Downloading packages:
No Presto metadata available for base
No Presto metadata available for updates
warning: /var/cache/yum/x86_64/7/updates/packages/NetworkManager-tui-1.18.8-2.el7_9.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
Public key for NetworkManager-tui-1.18.8-2.el7_9.x86_64.rpm is not installed
(1/137): NetworkManager-tui-1.18.8-2.el7_9.x86_64.rpm                                                      | 329 kB  00:00:00     
(2/137): NetworkManager-team-1.18.8-2.el7_9.x86_64.rpm                                                     | 165 kB  00:00:00     
(3/137): NetworkManager-libnm-1.18.8-2.el7_9.x86_64.rpm                                                    | 1.7 MB  00:00:00     
(4/137): bind-export-libs-9.11.4-26.P2.el7_9.9.x86_64.rpm                                                  | 1.1 MB  00:00:00     
Public key for bc-1.06.95-13.el7.x86_64.rpm is not installed
(5/137): bc-1.06.95-13.el7.x86_64.rpm                                                                      | 115 kB  00:00:00     
(6/137): bash-4.2.46-35.el7_9.x86_64.rpm                                                                   | 1.0 MB  00:00:00     
(7/137): ca-certificates-2021.2.50-72.el7_9.noarch.rpm                                                     | 379 kB  00:00:00     
(8/137): centos-release-7-9.2009.1.el7.centos.x86_64.rpm                                                   |  27 kB  00:00:00     
(9/137): cpio-2.11-28.el7.x86_64.rpm                                                                       | 211 kB  00:00:00     
(10/137): cronie-1.4.11-24.el7_9.x86_64.rpm                                                                |  92 kB  00:00:00     
(11/137): cronie-anacron-1.4.11-24.el7_9.x86_64.rpm                                                        |  36 kB  00:00:00     
(12/137): chkconfig-1.7.6-1.el7.x86_64.rpm                                                                 | 182 kB  00:00:00     
(13/137): NetworkManager-1.18.8-2.el7_9.x86_64.rpm                                                         | 1.9 MB  00:00:00     
(14/137): cups-libs-1.6.3-51.el7.x86_64.rpm                                                                | 359 kB  00:00:00     
(15/137): dbus-1.10.24-15.el7.x86_64.rpm                                                                   | 245 kB  00:00:00     
(16/137): cyrus-sasl-lib-2.1.26-24.el7_9.x86_64.rpm                                                        | 156 kB  00:00:00     
(17/137): dbus-libs-1.10.24-15.el7.x86_64.rpm                                                              | 169 kB  00:00:00     
(18/137): curl-7.29.0-59.el7_9.1.x86_64.rpm                                                                | 271 kB  00:00:00     
(19/137): device-mapper-1.02.170-6.el7_9.5.x86_64.rpm                                                      | 297 kB  00:00:00     
(20/137): device-mapper-libs-1.02.170-6.el7_9.5.x86_64.rpm                                                 | 325 kB  00:00:00     
(21/137): dhclient-4.2.5-83.el7.centos.1.x86_64.rpm                                                        | 286 kB  00:00:00     
(22/137): dhcp-libs-4.2.5-83.el7.centos.1.x86_64.rpm                                                       | 133 kB  00:00:00     
(23/137): dhcp-common-4.2.5-83.el7.centos.1.x86_64.rpm                                                     | 177 kB  00:00:00     
(24/137): dmidecode-3.2-5.el7_9.1.x86_64.rpm                                                               |  82 kB  00:00:00     
(25/137): e2fsprogs-libs-1.42.9-19.el7.x86_64.rpm                                                          | 168 kB  00:00:00     
(26/137): elfutils-default-yama-scope-0.176-5.el7.noarch.rpm                                               |  33 kB  00:00:00     
(27/137): elfutils-libelf-0.176-5.el7.x86_64.rpm                                                           | 195 kB  00:00:00     
(28/137): elfutils-libs-0.176-5.el7.x86_64.rpm                                                             | 291 kB  00:00:00     
(29/137): e2fsprogs-1.42.9-19.el7.x86_64.rpm                                                               | 701 kB  00:00:00     
(30/137): expat-2.1.0-14.el7_9.x86_64.rpm                                                                  |  83 kB  00:00:00     
(31/137): dracut-033-572.el7.x86_64.rpm                                                                    | 329 kB  00:00:00     
(32/137): file-5.11-37.el7.x86_64.rpm                                                                      |  57 kB  00:00:00     
(33/137): firewalld-filesystem-0.6.3-13.el7_9.noarch.rpm                                                   |  51 kB  00:00:00     
(34/137): file-libs-5.11-37.el7.x86_64.rpm                                                                 | 340 kB  00:00:00     
(35/137): firewalld-0.6.3-13.el7_9.noarch.rpm                                                              | 449 kB  00:00:00     
(36/137): freetype-2.8-14.el7_9.1.x86_64.rpm                                                               | 380 kB  00:00:00     
(37/137): coreutils-8.22-24.el7_9.2.x86_64.rpm                                                             | 3.3 MB  00:00:01     
(38/137): glibc-2.17-326.el7_9.x86_64.rpm                                                                  | 3.6 MB  00:00:00     
(39/137): glib2-2.56.1-9.el7_9.x86_64.rpm                                                                  | 2.5 MB  00:00:01     
(40/137): grub2-2.02-0.87.0.1.el7.centos.9.x86_64.rpm                                                      |  34 kB  00:00:00     
(41/137): grub2-common-2.02-0.87.0.1.el7.centos.9.noarch.rpm                                               | 732 kB  00:00:00     
(42/137): grub2-pc-2.02-0.87.0.1.el7.centos.9.x86_64.rpm                                                   |  34 kB  00:00:00     
(43/137): grub2-pc-modules-2.02-0.87.0.1.el7.centos.9.noarch.rpm                                           | 858 kB  00:00:00     
(44/137): grub2-tools-2.02-0.87.0.1.el7.centos.9.x86_64.rpm                                                | 1.8 MB  00:00:00     
(45/137): binutils-2.27-44.base.el7_9.1.x86_64.rpm                                                         | 5.9 MB  00:00:02     
(46/137): grub2-tools-minimal-2.02-0.87.0.1.el7.centos.9.x86_64.rpm                                        | 177 kB  00:00:00     
(47/137): grub2-tools-extra-2.02-0.87.0.1.el7.centos.9.x86_64.rpm                                          | 1.0 MB  00:00:00     
(48/137): gssproxy-0.7.0-30.el7_9.x86_64.rpm                                                               | 111 kB  00:00:00     
(49/137): gzip-1.5-11.el7_9.x86_64.rpm                                                                     | 130 kB  00:00:00     
(50/137): iptables-1.4.21-35.el7.x86_64.rpm                                                                | 432 kB  00:00:00     
(51/137): kbd-1.15.5-16.el7_9.x86_64.rpm                                                                   | 347 kB  00:00:00     
(52/137): initscripts-9.49.53-1.el7_9.1.x86_64.rpm                                                         | 440 kB  00:00:00     
(53/137): iproute-4.11.0-30.el7.x86_64.rpm                                                                 | 805 kB  00:00:00     
(54/137): kbd-legacy-1.15.5-16.el7_9.noarch.rpm                                                            | 466 kB  00:00:00     
(55/137): hwdata-0.252-9.7.el7.x86_64.rpm                                                                  | 2.5 MB  00:00:01     
(56/137): kbd-misc-1.15.5-16.el7_9.noarch.rpm                                                              | 1.4 MB  00:00:01     
(57/137): glibc-common-2.17-326.el7_9.x86_64.rpm                                                           |  12 MB  00:00:04     
(58/137): kpartx-0.4.9-135.el7_9.x86_64.rpm                                                                |  81 kB  00:00:00     
(59/137): kernel-tools-3.10.0-1160.66.1.el7.x86_64.rpm                                                     | 8.2 MB  00:00:03     
(60/137): libcom_err-1.42.9-19.el7.x86_64.rpm                                                              |  42 kB  00:00:00     
(61/137): libblkid-2.23.2-65.el7_9.1.x86_64.rpm                                                            | 183 kB  00:00:00     
(62/137): krb5-libs-1.15.1-51.el7_9.x86_64.rpm                                                             | 809 kB  00:00:00     
(63/137): libcroco-0.6.12-6.el7_9.x86_64.rpm                                                               | 105 kB  00:00:00     
(64/137): libcurl-7.29.0-59.el7_9.1.x86_64.rpm                                                             | 223 kB  00:00:00     
(65/137): libldb-1.5.4-2.el7.x86_64.rpm                                                                    | 149 kB  00:00:00     
(66/137): libgcc-4.8.5-44.el7.x86_64.rpm                                                                   | 103 kB  00:00:00     
(67/137): libgomp-4.8.5-44.el7.x86_64.rpm                                                                  | 159 kB  00:00:00     
(68/137): libmount-2.23.2-65.el7_9.1.x86_64.rpm                                                            | 185 kB  00:00:00     
(69/137): libmspack-0.5-0.8.alpha.el7.x86_64.rpm                                                           |  64 kB  00:00:00     
(70/137): libss-1.42.9-19.el7.x86_64.rpm                                                                   |  47 kB  00:00:00     
(71/137): libsmartcols-2.23.2-65.el7_9.1.x86_64.rpm                                                        | 143 kB  00:00:00     
(72/137): libpng-1.5.13-8.el7.x86_64.rpm                                                                   | 213 kB  00:00:00     
(73/137): libteam-1.29-3.el7.x86_64.rpm                                                                    |  50 kB  00:00:00     
(74/137): libssh2-1.8.0-4.el7.x86_64.rpm                                                                   |  88 kB  00:00:00     
(75/137): libstdc++-4.8.5-44.el7.x86_64.rpm                                                                | 306 kB  00:00:00     
(76/137): libwbclient-4.10.16-18.el7_9.x86_64.rpm                                                          | 116 kB  00:00:00     
(77/137): libuuid-2.23.2-65.el7_9.1.x86_64.rpm                                                             |  84 kB  00:00:00     
(78/137): libxml2-python-2.9.1-6.el7_9.6.x86_64.rpm                                                        | 247 kB  00:00:00     
(79/137): libxslt-1.1.28-6.el7.x86_64.rpm                                                                  | 242 kB  00:00:00     
(80/137): lshw-B.02.18-17.el7.x86_64.rpm                                                                   | 324 kB  00:00:00     
(81/137): lz4-1.8.3-1.el7.x86_64.rpm                                                                       |  85 kB  00:00:00     
(82/137): libxml2-2.9.1-6.el7_9.6.x86_64.rpm                                                               | 668 kB  00:00:00     
(83/137): nettle-2.7.1-9.el7_9.x86_64.rpm                                                                  | 328 kB  00:00:00     
(84/137): mariadb-libs-5.5.68-1.el7.x86_64.rpm                                                             | 760 kB  00:00:00     
(85/137): nfs-utils-1.3.0-0.68.el7.2.x86_64.rpm                                                            | 413 kB  00:00:00     
(86/137): kernel-tools-libs-3.10.0-1160.66.1.el7.x86_64.rpm                                                | 8.1 MB  00:00:03     
(87/137): nspr-4.32.0-1.el7_9.x86_64.rpm                                                                   | 127 kB  00:00:00     
(88/137): nss-softokn-3.67.0-3.el7_9.x86_64.rpm                                                            | 358 kB  00:00:00     
(89/137): nss-3.67.0-4.el7_9.x86_64.rpm                                                                    | 882 kB  00:00:00     
(90/137): nss-sysinit-3.67.0-4.el7_9.x86_64.rpm                                                            |  66 kB  00:00:00     
(91/137): nss-softokn-freebl-3.67.0-3.el7_9.x86_64.rpm                                                     | 337 kB  00:00:00     
(92/137): nss-util-3.67.0-1.el7_9.x86_64.rpm                                                               |  79 kB  00:00:00     
(93/137): nss-tools-3.67.0-4.el7_9.x86_64.rpm                                                              | 549 kB  00:00:00     
(94/137): openldap-2.4.44-25.el7_9.x86_64.rpm                                                              | 356 kB  00:00:00     
(95/137): open-vm-tools-11.0.5-3.el7_9.3.x86_64.rpm                                                        | 676 kB  00:00:00     
(96/137): openssh-7.4p1-22.el7_9.x86_64.rpm                                                                | 510 kB  00:00:00     
(97/137): openssh-clients-7.4p1-22.el7_9.x86_64.rpm                                                        | 655 kB  00:00:00     
(98/137): kernel-3.10.0-1160.66.1.el7.x86_64.rpm                                                           |  50 MB  00:00:10     
(99/137): openssh-server-7.4p1-22.el7_9.x86_64.rpm                                                         | 459 kB  00:00:00     
(100/137): polkit-0.112-26.el7_9.1.x86_64.rpm                                                              | 170 kB  00:00:00     
(101/137): pyldb-1.5.4-2.el7.x86_64.rpm                                                                    |  49 kB  00:00:00     
(102/137): python-2.7.5-90.el7.x86_64.rpm                                                                  |  96 kB  00:00:00     
(103/137): openssl-1.0.2k-25.el7_9.x86_64.rpm                                                              | 494 kB  00:00:00     
(104/137): python-firewall-0.6.3-13.el7_9.noarch.rpm                                                       | 355 kB  00:00:00     
(105/137): procps-ng-3.3.10-28.el7.x86_64.rpm                                                              | 291 kB  00:00:00     
(106/137): openssl-libs-1.0.2k-25.el7_9.x86_64.rpm                                                         | 1.2 MB  00:00:00     
(107/137): python-perf-3.10.0-1160.66.1.el7.x86_64.rpm                                                     | 8.2 MB  00:00:01     
(108/137): rpm-build-libs-4.11.3-48.el7_9.x86_64.rpm                                                       | 108 kB  00:00:00     
(109/137): rpm-4.11.3-48.el7_9.x86_64.rpm                                                                  | 1.2 MB  00:00:00     
(110/137): rpm-python-4.11.3-48.el7_9.x86_64.rpm                                                           |  84 kB  00:00:00     
(111/137): rpm-libs-4.11.3-48.el7_9.x86_64.rpm                                                             | 279 kB  00:00:00     
(112/137): rsyslog-8.24.0-57.el7_9.2.x86_64.rpm                                                            | 622 kB  00:00:00     
(113/137): python-libs-2.7.5-90.el7.x86_64.rpm                                                             | 5.6 MB  00:00:02     
(114/137): samba-common-4.10.16-18.el7_9.noarch.rpm                                                        | 216 kB  00:00:00     
(115/137): samba-common-libs-4.10.16-18.el7_9.x86_64.rpm                                                   | 182 kB  00:00:00     
(116/137): samba-libs-4.10.16-18.el7_9.x86_64.rpm                                                          | 271 kB  00:00:00     
(117/137): selinux-policy-3.13.1-268.el7_9.2.noarch.rpm                                                    | 498 kB  00:00:00     
(118/137): sed-4.2.2-7.el7.x86_64.rpm                                                                      | 231 kB  00:00:00     
(119/137): sudo-1.8.23-10.el7_9.2.x86_64.rpm                                                               | 843 kB  00:00:00     
(120/137): systemd-219-78.el7_9.5.x86_64.rpm                                                               | 5.1 MB  00:00:01     
(121/137): systemd-libs-219-78.el7_9.5.x86_64.rpm                                                          | 419 kB  00:00:00     
(122/137): systemd-sysv-219-78.el7_9.5.x86_64.rpm                                                          |  97 kB  00:00:00     
(123/137): tuned-2.11.0-11.el7_9.noarch.rpm                                                                | 269 kB  00:00:00     
(124/137): teamd-1.29-3.el7.x86_64.rpm                                                                     | 116 kB  00:00:00     
(125/137): tzdata-2022a-1.el7.noarch.rpm                                                                   | 501 kB  00:00:00     
(126/137): samba-client-libs-4.10.16-18.el7_9.x86_64.rpm                                                   | 5.0 MB  00:00:02     
(127/137): util-linux-2.23.2-65.el7_9.1.x86_64.rpm                                                         | 2.0 MB  00:00:00     
(128/137): virt-what-1.18-4.el7_9.1.x86_64.rpm                                                             |  30 kB  00:00:00     
(129/137): vim-minimal-7.4.629-8.el7_9.x86_64.rpm                                                          | 443 kB  00:00:00     
(130/137): wpa_supplicant-2.6-12.el7_9.2.x86_64.rpm                                                        | 1.2 MB  00:00:00     
(131/137): xfsprogs-4.5.0-22.el7.x86_64.rpm                                                                | 897 kB  00:00:00     
(132/137): yum-plugin-fastestmirror-1.1.31-54.el7_8.noarch.rpm                                             |  34 kB  00:00:00     
(133/137): zlib-1.2.7-20.el7_9.x86_64.rpm                                                                  |  90 kB  00:00:00     
(134/137): yum-utils-1.1.31-54.el7_8.noarch.rpm                                                            | 122 kB  00:00:00     
(135/137): selinux-policy-targeted-3.13.1-268.el7_9.2.noarch.rpm                                           | 7.0 MB  00:00:02     
(136/137): yum-3.4.3-168.el7.centos.noarch.rpm                                                             | 1.2 MB  00:00:00     
(137/137): linux-firmware-20200421-80.git78c0348.el7_9.noarch.rpm                                          |  80 MB  00:00:19     
----------------------------------------------------------------------------------------------------------------------------------
Total                                                                                             9.2 MB/s | 254 MB  00:00:27     
Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
Importing GPG key 0xF4A80EB5:
 Userid     : "CentOS-7 Key (CentOS 7 Official Signing Key) <security@centos.org>"
 Fingerprint: 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5
 Package    : centos-release-7-8.2003.0.el7.centos.x86_64 (@anaconda)
 From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
Is this ok [y/N]: y
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  Updating   : libgcc-4.8.5-44.el7.x86_64                                                                                   1/272 
  Updating   : 1:grub2-common-2.02-0.87.0.1.el7.centos.9.noarch                                                             2/272 
  Updating   : centos-release-7-9.2009.1.el7.centos.x86_64                                                                  3/272 
  Updating   : 1:grub2-pc-modules-2.02-0.87.0.1.el7.centos.9.noarch                                                         4/272 
  Updating   : firewalld-filesystem-0.6.3-13.el7_9.noarch                                                                   5/272 
  Updating   : kbd-misc-1.15.5-16.el7_9.noarch                                                                              6/272 
  Updating   : kbd-legacy-1.15.5-16.el7_9.noarch                                                                            7/272 
  Updating   : tzdata-2022a-1.el7.noarch                                                                                    8/272 
  Updating   : bash-4.2.46-35.el7_9.x86_64                                                                                  9/272 
  Updating   : nss-softokn-freebl-3.67.0-3.el7_9.x86_64                                                                    10/272 
  Updating   : glibc-common-2.17-326.el7_9.x86_64                                                                          11/272 
  Updating   : glibc-2.17-326.el7_9.x86_64                                                                                 12/272 
  Updating   : nspr-4.32.0-1.el7_9.x86_64                                                                                  13/272 
  Updating   : nss-util-3.67.0-1.el7_9.x86_64                                                                              14/272 
  Updating   : zlib-1.2.7-20.el7_9.x86_64                                                                                  15/272 
  Updating   : libcom_err-1.42.9-19.el7.x86_64                                                                             16/272 
  Updating   : libuuid-2.23.2-65.el7_9.1.x86_64                                                                            17/272 
  Updating   : sed-4.2.2-7.el7.x86_64                                                                                      18/272 
  Updating   : elfutils-libelf-0.176-5.el7.x86_64                                                                          19/272 
  Updating   : chkconfig-1.7.6-1.el7.x86_64                                                                                20/272 
  Updating   : libxml2-2.9.1-6.el7_9.6.x86_64                                                                              21/272 
  Updating   : libldb-1.5.4-2.el7.x86_64                                                                                   22/272 
  Updating   : file-libs-5.11-37.el7.x86_64                                                                                23/272 
  Updating   : file-5.11-37.el7.x86_64                                                                                     24/272 
  Updating   : expat-2.1.0-14.el7_9.x86_64                                                                                 25/272 
  Updating   : libstdc++-4.8.5-44.el7.x86_64                                                                               26/272 
  Updating   : cpio-2.11-28.el7.x86_64                                                                                     27/272 
  Updating   : nss-softokn-3.67.0-3.el7_9.x86_64                                                                           28/272 
  Updating   : lz4-1.8.3-1.el7.x86_64                                                                                      29/272 
  Updating   : iptables-1.4.21-35.el7.x86_64                                                                               30/272 
  Updating   : iproute-4.11.0-30.el7.x86_64                                                                                31/272 
  Updating   : libxslt-1.1.28-6.el7.x86_64                                                                                 32/272 
  Updating   : e2fsprogs-libs-1.42.9-19.el7.x86_64                                                                         33/272 
  Updating   : libss-1.42.9-19.el7.x86_64                                                                                  34/272 
  Updating   : 2:libpng-1.5.13-8.el7.x86_64                                                                                35/272 
  Updating   : freetype-2.8-14.el7_9.1.x86_64                                                                              36/272 
  Updating   : libsmartcols-2.23.2-65.el7_9.1.x86_64                                                                       37/272 
  Updating   : 1:dmidecode-3.2-5.el7_9.1.x86_64                                                                            38/272 
  Updating   : kernel-tools-libs-3.10.0-1160.66.1.el7.x86_64                                                               39/272 
  Updating   : 2:vim-minimal-7.4.629-8.el7_9.x86_64                                                                        40/272 
  Installing : bc-1.06.95-13.el7.x86_64                                                                                    41/272 
  Updating   : libmspack-0.5-0.8.alpha.el7.x86_64                                                                          42/272 
  Updating   : libteam-1.29-3.el7.x86_64                                                                                   43/272 
  Updating   : linux-firmware-20200421-80.git78c0348.el7_9.noarch                                                          44/272 
  Updating   : ca-certificates-2021.2.50-72.el7_9.noarch                                                                   45/272 
  Updating   : coreutils-8.22-24.el7_9.2.x86_64                                                                            46/272 
  Updating   : 1:openssl-libs-1.0.2k-25.el7_9.x86_64                                                                       47/272 
  Updating   : krb5-libs-1.15.1-51.el7_9.x86_64                                                                            48/272 
  Updating   : python-libs-2.7.5-90.el7.x86_64                                                                             49/272 
  Updating   : python-2.7.5-90.el7.x86_64                                                                                  50/272 
  Updating   : libblkid-2.23.2-65.el7_9.1.x86_64                                                                           51/272 
  Updating   : libmount-2.23.2-65.el7_9.1.x86_64                                                                           52/272 
  Updating   : glib2-2.56.1-9.el7_9.x86_64                                                                                 53/272 
  Updating   : 1:cups-libs-1.6.3-51.el7.x86_64                                                                             54/272 
  Updating   : pyldb-1.5.4-2.el7.x86_64                                                                                    55/272 
  Updating   : libxml2-python-2.9.1-6.el7_9.6.x86_64                                                                       56/272 
  Updating   : python-firewall-0.6.3-13.el7_9.noarch                                                                       57/272 
  Updating   : python-perf-3.10.0-1160.66.1.el7.x86_64                                                                     58/272 
  Updating   : cyrus-sasl-lib-2.1.26-24.el7_9.x86_64                                                                       59/272 
  Updating   : 32:bind-export-libs-9.11.4-26.P2.el7_9.9.x86_64                                                             60/272 
  Updating   : libssh2-1.8.0-4.el7.x86_64                                                                                  61/272 
  Updating   : selinux-policy-3.13.1-268.el7_9.2.noarch                                                                    62/272 
  Updating   : gzip-1.5-11.el7_9.x86_64                                                                                    63/272 
  Updating   : nss-3.67.0-4.el7_9.x86_64                                                                                   64/272 
  Updating   : nss-sysinit-3.67.0-4.el7_9.x86_64                                                                           65/272 
  Updating   : nss-tools-3.67.0-4.el7_9.x86_64                                                                             66/272 
  Updating   : libcurl-7.29.0-59.el7_9.1.x86_64                                                                            67/272 
  Updating   : curl-7.29.0-59.el7_9.1.x86_64                                                                               68/272 
  Updating   : rpm-libs-4.11.3-48.el7_9.x86_64                                                                             69/272 
  Updating   : rpm-4.11.3-48.el7_9.x86_64                                                                                  70/272 
  Updating   : openldap-2.4.44-25.el7_9.x86_64                                                                             71/272 
  Updating   : elfutils-libs-0.176-5.el7.x86_64                                                                            72/272 
  Updating   : systemd-libs-219-78.el7_9.5.x86_64                                                                          73/272 
  Updating   : 1:dbus-libs-1.10.24-15.el7.x86_64                                                                           74/272 
  Updating   : systemd-219-78.el7_9.5.x86_64                                                                               75/272 
  Updating   : 1:dbus-1.10.24-15.el7.x86_64                                                                                76/272 
  Updating   : elfutils-default-yama-scope-0.176-5.el7.noarch                                                              77/272 
  Updating   : util-linux-2.23.2-65.el7_9.1.x86_64                                                                         78/272 
  Updating   : openssh-7.4p1-22.el7_9.x86_64                                                                               79/272 
  Updating   : polkit-0.112-26.el7_9.1.x86_64                                                                              80/272 
  Updating   : samba-common-4.10.16-18.el7_9.noarch                                                                        81/272 
  Updating   : libwbclient-4.10.16-18.el7_9.x86_64                                                                         82/272 
  Updating   : samba-common-libs-4.10.16-18.el7_9.x86_64                                                                   83/272 
  Updating   : samba-client-libs-4.10.16-18.el7_9.x86_64                                                                   84/272 
  Updating   : 1:NetworkManager-libnm-1.18.8-2.el7_9.x86_64                                                                85/272 
  Updating   : procps-ng-3.3.10-28.el7.x86_64                                                                              86/272 
  Updating   : initscripts-9.49.53-1.el7_9.1.x86_64                                                                        87/272 
  Updating   : 12:dhcp-libs-4.2.5-83.el7.centos.1.x86_64                                                                   88/272 
  Updating   : 12:dhcp-common-4.2.5-83.el7.centos.1.x86_64                                                                 89/272 
  Updating   : 7:device-mapper-1.02.170-6.el7_9.5.x86_64                                                                   90/272 
  Updating   : 7:device-mapper-libs-1.02.170-6.el7_9.5.x86_64                                                              91/272 
  Updating   : 1:grub2-tools-minimal-2.02-0.87.0.1.el7.centos.9.x86_64                                                     92/272 
  Updating   : kpartx-0.4.9-135.el7_9.x86_64                                                                               93/272 
  Updating   : dracut-033-572.el7.x86_64                                                                                   94/272 
  Updating   : 1:grub2-tools-2.02-0.87.0.1.el7.centos.9.x86_64                                                             95/272 
  Updating   : 1:grub2-tools-extra-2.02-0.87.0.1.el7.centos.9.x86_64                                                       96/272 
  Updating   : 1:grub2-pc-2.02-0.87.0.1.el7.centos.9.x86_64                                                                97/272 
  Updating   : virt-what-1.18-4.el7_9.1.x86_64                                                                             98/272 
  Updating   : systemd-sysv-219-78.el7_9.5.x86_64                                                                          99/272 
  Updating   : 1:wpa_supplicant-2.6-12.el7_9.2.x86_64                                                                     100/272 
  Updating   : 1:NetworkManager-1.18.8-2.el7_9.x86_64                                                                     101/272 
  Updating   : gssproxy-0.7.0-30.el7_9.x86_64                                                                             102/272 
  Updating   : hwdata-0.252-9.7.el7.x86_64                                                                                103/272 
  Updating   : cronie-anacron-1.4.11-24.el7_9.x86_64                                                                      104/272 
  Updating   : cronie-1.4.11-24.el7_9.x86_64                                                                              105/272 
  Updating   : teamd-1.29-3.el7.x86_64                                                                                    106/272 
  Updating   : rpm-build-libs-4.11.3-48.el7_9.x86_64                                                                      107/272 
  Updating   : rpm-python-4.11.3-48.el7_9.x86_64                                                                          108/272 
  Updating   : yum-plugin-fastestmirror-1.1.31-54.el7_8.noarch                                                            109/272 
  Updating   : yum-3.4.3-168.el7.centos.noarch                                                                            110/272 
  Updating   : yum-utils-1.1.31-54.el7_8.noarch                                                                           111/272 
  Updating   : 1:NetworkManager-team-1.18.8-2.el7_9.x86_64                                                                112/272 
  Updating   : lshw-B.02.18-17.el7.x86_64                                                                                 113/272 
  Updating   : 1:nfs-utils-1.3.0-0.68.el7.2.x86_64                                                                        114/272 
  Updating   : 1:NetworkManager-tui-1.18.8-2.el7_9.x86_64                                                                 115/272 
  Updating   : tuned-2.11.0-11.el7_9.noarch                                                                               116/272 
  Updating   : 1:grub2-2.02-0.87.0.1.el7.centos.9.x86_64                                                                  117/272 
  Installing : kernel-3.10.0-1160.66.1.el7.x86_64                                                                         118/272 
  Updating   : 12:dhclient-4.2.5-83.el7.centos.1.x86_64                                                                   119/272 
  Updating   : kbd-1.15.5-16.el7_9.x86_64                                                                                 120/272 
  Updating   : samba-libs-4.10.16-18.el7_9.x86_64                                                                         121/272 
  Updating   : openssh-clients-7.4p1-22.el7_9.x86_64                                                                      122/272 
  Updating   : openssh-server-7.4p1-22.el7_9.x86_64                                                                       123/272 
  Updating   : rsyslog-8.24.0-57.el7_9.2.x86_64                                                                           124/272 
  Updating   : firewalld-0.6.3-13.el7_9.noarch                                                                            125/272 
  Updating   : open-vm-tools-11.0.5-3.el7_9.3.x86_64                                                                      126/272 
  Updating   : sudo-1.8.23-10.el7_9.2.x86_64                                                                              127/272 
  Updating   : selinux-policy-targeted-3.13.1-268.el7_9.2.noarch                                                          128/272 
  Updating   : libcroco-0.6.12-6.el7_9.x86_64                                                                             129/272 
  Updating   : e2fsprogs-1.42.9-19.el7.x86_64                                                                             130/272 
  Updating   : xfsprogs-4.5.0-22.el7.x86_64                                                                               131/272 
  Updating   : 1:openssl-1.0.2k-25.el7_9.x86_64                                                                           132/272 
  Updating   : 1:mariadb-libs-5.5.68-1.el7.x86_64                                                                         133/272 
  Updating   : binutils-2.27-44.base.el7_9.1.x86_64                                                                       134/272 
  Updating   : kernel-tools-3.10.0-1160.66.1.el7.x86_64                                                                   135/272 
  Updating   : nettle-2.7.1-9.el7_9.x86_64                                                                                136/272 
  Updating   : libgomp-4.8.5-44.el7.x86_64                                                                                137/272 
  Cleanup    : 12:dhclient-4.2.5-79.el7.centos.x86_64                                                                     138/272 
  Cleanup    : tuned-2.11.0-8.el7.noarch                                                                                  139/272 
  Cleanup    : firewalld-0.6.3-8.el7_8.1.noarch                                                                           140/272 
  Cleanup    : yum-utils-1.1.31-53.el7.noarch                                                                             141/272 
  Cleanup    : yum-3.4.3-167.el7.centos.noarch                                                                            142/272 
  Cleanup    : yum-plugin-fastestmirror-1.1.31-53.el7.noarch                                                              143/272 
  Cleanup    : selinux-policy-targeted-3.13.1-266.el7.noarch                                                              144/272 
  Cleanup    : selinux-policy-3.13.1-266.el7.noarch                                                                       145/272 
  Cleanup    : 1:grub2-2.02-0.81.el7.centos.x86_64                                                                        146/272 
  Cleanup    : 1:grub2-pc-2.02-0.81.el7.centos.x86_64                                                                     147/272 
  Cleanup    : 1:grub2-pc-modules-2.02-0.81.el7.centos.noarch                                                             148/272 
  Cleanup    : python-firewall-0.6.3-8.el7_8.1.noarch                                                                     149/272 
  Cleanup    : 12:dhcp-common-4.2.5-79.el7.centos.x86_64                                                                  150/272 
  Cleanup    : 12:dhcp-libs-4.2.5-79.el7.centos.x86_64                                                                    151/272 
  Cleanup    : linux-firmware-20191203-76.gite8a0f4c.el7.noarch                                                           152/272 
  Cleanup    : samba-common-libs-4.10.4-10.el7.x86_64                                                                     153/272 
  Cleanup    : libwbclient-4.10.4-10.el7.x86_64                                                                           154/272 
  Cleanup    : samba-client-libs-4.10.4-10.el7.x86_64                                                                     155/272 
  Cleanup    : samba-libs-4.10.4-10.el7.x86_64                                                                            156/272 
  Cleanup    : open-vm-tools-10.3.10-2.el7.x86_64                                                                         157/272 
  Cleanup    : 1:nfs-utils-1.3.0-0.66.el7.x86_64                                                                          158/272 
  Cleanup    : rpm-python-4.11.3-43.el7.x86_64                                                                            159/272 
  Cleanup    : openssh-server-7.4p1-21.el7.x86_64                                                                         160/272 
  Cleanup    : 1:NetworkManager-tui-1.18.4-3.el7.x86_64                                                                   161/272 
  Cleanup    : openssh-clients-7.4p1-21.el7.x86_64                                                                        162/272 
  Cleanup    : 1:cups-libs-1.6.3-43.el7.x86_64                                                                            163/272 
  Cleanup    : 1:openssl-1.0.2k-19.el7.x86_64                                                                             164/272 
  Cleanup    : rpm-build-libs-4.11.3-43.el7.x86_64                                                                        165/272 
  Cleanup    : openssh-7.4p1-21.el7.x86_64                                                                                166/272 
  Cleanup    : 1:grub2-tools-extra-2.02-0.81.el7.centos.x86_64                                                            167/272 
  Cleanup    : 1:grub2-tools-2.02-0.81.el7.centos.x86_64                                                                  168/272 
  Cleanup    : dracut-033-568.el7.x86_64                                                                                  169/272 
  Cleanup    : rsyslog-8.24.0-52.el7.x86_64                                                                               170/272 
  Cleanup    : libxml2-python-2.9.1-6.el7.4.x86_64                                                                        171/272 
  Cleanup    : e2fsprogs-1.42.9-17.el7.x86_64                                                                             172/272 
  Cleanup    : gssproxy-0.7.0-28.el7.x86_64                                                                               173/272 
  Cleanup    : pyldb-1.5.4-1.el7.x86_64                                                                                   174/272 
  Cleanup    : sudo-1.8.23-9.el7.x86_64                                                                                   175/272 
  Cleanup    : 1:mariadb-libs-5.5.65-1.el7.x86_64                                                                         176/272 
  Cleanup    : 1:NetworkManager-team-1.18.4-3.el7.x86_64                                                                  177/272 
  Cleanup    : 1:NetworkManager-1.18.4-3.el7.x86_64                                                                       178/272 
  Cleanup    : 1:NetworkManager-libnm-1.18.4-3.el7.x86_64                                                                 179/272 
  Cleanup    : polkit-0.112-26.el7.x86_64                                                                                 180/272 
  Cleanup    : 1:wpa_supplicant-2.6-12.el7.x86_64                                                                         181/272 
  Cleanup    : cronie-anacron-1.4.11-23.el7.x86_64                                                                        182/272 
  Cleanup    : cronie-1.4.11-23.el7.x86_64                                                                                183/272 
  Cleanup    : xfsprogs-4.5.0-20.el7.x86_64                                                                               184/272 
  Cleanup    : binutils-2.27-43.base.el7.x86_64                                                                           185/272 
  Cleanup    : teamd-1.29-1.el7.x86_64                                                                                    186/272 
  Cleanup    : file-5.11-36.el7.x86_64                                                                                    187/272 
  Cleanup    : 1:grub2-tools-minimal-2.02-0.81.el7.centos.x86_64                                                          188/272 
  Cleanup    : freetype-2.8-14.el7.x86_64                                                                                 189/272 
  Cleanup    : 32:bind-export-libs-9.11.4-16.P2.el7_8.2.x86_64                                                            190/272 
  Cleanup    : lshw-B.02.18-14.el7.x86_64                                                                                 191/272 
  Cleanup    : kernel-tools-3.10.0-1127.el7.x86_64                                                                        192/272 
  Cleanup    : kbd-1.15.5-15.el7.x86_64                                                                                   193/272 
  Cleanup    : initscripts-9.49.49-1.el7.x86_64                                                                           194/272 
  Cleanup    : iproute-4.11.0-25.el7_7.2.x86_64                                                                           195/272 
  Cleanup    : libxslt-1.1.28-5.el7.x86_64                                                                                196/272 
  Cleanup    : python-perf-3.10.0-1127.el7.x86_64                                                                         197/272 
  Cleanup    : virt-what-1.18-4.el7.x86_64                                                                                198/272 
  Cleanup    : libcroco-0.6.12-4.el7.x86_64                                                                               199/272 
  Cleanup    : hwdata-0.252-9.5.el7.x86_64                                                                                200/272 
  Cleanup    : systemd-sysv-219-73.el7_8.5.x86_64                                                                         201/272 
  Cleanup    : samba-common-4.10.4-10.el7.noarch                                                                          202/272 
  Cleanup    : glib2-2.56.1-5.el7.x86_64                                                                                  203/272 
  Cleanup    : python-2.7.5-88.el7.x86_64                                                                                 204/272 
  Cleanup    : python-libs-2.7.5-88.el7.x86_64                                                                            205/272 
  Cleanup    : libxml2-2.9.1-6.el7.4.x86_64                                                                               206/272 
  Cleanup    : procps-ng-3.3.10-27.el7.x86_64                                                                             207/272 
  Cleanup    : libstdc++-4.8.5-39.el7.x86_64                                                                              208/272 
  Cleanup    : 2:libpng-1.5.13-7.el7_2.x86_64                                                                             209/272 
  Cleanup    : file-libs-5.11-36.el7.x86_64                                                                               210/272 
  Cleanup    : e2fsprogs-libs-1.42.9-17.el7.x86_64                                                                        211/272 
  Cleanup    : libss-1.42.9-17.el7.x86_64                                                                                 212/272 
  Cleanup    : gzip-1.5-10.el7.x86_64                                                                                     213/272 
  Cleanup    : kpartx-0.4.9-131.el7.x86_64                                                                                214/272 
  Cleanup    : 7:device-mapper-1.02.164-7.el7_8.1.x86_64                                                                  215/272 
  Cleanup    : 7:device-mapper-libs-1.02.164-7.el7_8.1.x86_64                                                             216/272 
  Cleanup    : util-linux-2.23.2-63.el7.x86_64                                                                            217/272 
  Cleanup    : 1:dbus-libs-1.10.24-13.el7_6.x86_64                                                                        218/272 
  Cleanup    : systemd-libs-219-73.el7_8.5.x86_64                                                                         219/272 
  Cleanup    : elfutils-libs-0.176-4.el7.x86_64                                                                           220/272 
  Cleanup    : elfutils-default-yama-scope-0.176-4.el7.noarch                                                             221/272 
  Cleanup    : 1:dbus-1.10.24-13.el7_6.x86_64                                                                             222/272 
  Cleanup    : systemd-219-73.el7_8.5.x86_64                                                                              223/272 
  Cleanup    : curl-7.29.0-57.el7.x86_64                                                                                  224/272 
  Cleanup    : libcurl-7.29.0-57.el7.x86_64                                                                               225/272 
  Cleanup    : openldap-2.4.44-21.el7_6.x86_64                                                                            226/272 
  Cleanup    : rpm-libs-4.11.3-43.el7.x86_64                                                                              227/272 
  Cleanup    : rpm-4.11.3-43.el7.x86_64                                                                                   228/272 
  Cleanup    : nss-tools-3.44.0-7.el7_7.x86_64                                                                            229/272 
  Cleanup    : nss-sysinit-3.44.0-7.el7_7.x86_64                                                                          230/272 
  Cleanup    : nss-3.44.0-7.el7_7.x86_64                                                                                  231/272 
  Cleanup    : nss-softokn-3.44.0-8.el7_7.x86_64                                                                          232/272 
  Cleanup    : cyrus-sasl-lib-2.1.26-23.el7.x86_64                                                                        233/272 
  Cleanup    : libmount-2.23.2-63.el7.x86_64                                                                              234/272 
  Cleanup    : libblkid-2.23.2-63.el7.x86_64                                                                              235/272 
  Cleanup    : libssh2-1.8.0-3.el7.x86_64                                                                                 236/272 
  Cleanup    : krb5-libs-1.15.1-46.el7.x86_64                                                                             237/272 
  Cleanup    : coreutils-8.22-24.el7.x86_64                                                                               238/272 
  Cleanup    : 1:openssl-libs-1.0.2k-19.el7.x86_64                                                                        239/272 
  Cleanup    : elfutils-libelf-0.176-4.el7.x86_64                                                                         240/272 
  Cleanup    : sed-4.2.2-6.el7.x86_64                                                                                     241/272 
  Cleanup    : chkconfig-1.7.4-1.el7.x86_64                                                                               242/272 
  Cleanup    : iptables-1.4.21-34.el7.x86_64                                                                              243/272 
  Cleanup    : cpio-2.11-27.el7.x86_64                                                                                    244/272 
  Cleanup    : libgomp-4.8.5-39.el7.x86_64                                                                                245/272 
  Cleanup    : nettle-2.7.1-8.el7.x86_64                                                                                  246/272 
  Cleanup    : ca-certificates-2019.2.32-76.el7_7.noarch                                                                  247/272 
  Cleanup    : centos-release-7-8.2003.0.el7.centos.x86_64                                                                248/272 
  Cleanup    : kbd-legacy-1.15.5-15.el7.noarch                                                                            249/272 
  Cleanup    : kbd-misc-1.15.5-15.el7.noarch                                                                              250/272 
  Cleanup    : 1:grub2-common-2.02-0.81.el7.centos.noarch                                                                 251/272 
  Cleanup    : firewalld-filesystem-0.6.3-8.el7_8.1.noarch                                                                252/272 
  Cleanup    : zlib-1.2.7-18.el7.x86_64                                                                                   253/272 
  Cleanup    : libcom_err-1.42.9-17.el7.x86_64                                                                            254/272 
  Cleanup    : libuuid-2.23.2-63.el7.x86_64                                                                               255/272 
  Cleanup    : lz4-1.7.5-3.el7.x86_64                                                                                     256/272 
  Cleanup    : expat-2.1.0-11.el7.x86_64                                                                                  257/272 
  Cleanup    : libsmartcols-2.23.2-63.el7.x86_64                                                                          258/272 
  Cleanup    : 1:dmidecode-3.2-3.el7.x86_64                                                                               259/272 
  Cleanup    : kernel-tools-libs-3.10.0-1127.el7.x86_64                                                                   260/272 
  Cleanup    : libteam-1.29-1.el7.x86_64                                                                                  261/272 
  Cleanup    : 2:vim-minimal-7.4.629-6.el7.x86_64                                                                         262/272 
  Cleanup    : libldb-1.5.4-1.el7.x86_64                                                                                  263/272 
  Cleanup    : libmspack-0.5-0.7.alpha.el7.x86_64                                                                         264/272 
  Cleanup    : glibc-common-2.17-307.el7.1.x86_64                                                                         265/272 
  Cleanup    : bash-4.2.46-34.el7.x86_64                                                                                  266/272 
  Cleanup    : nspr-4.21.0-1.el7.x86_64                                                                                   267/272 
  Cleanup    : nss-util-3.44.0-4.el7_7.x86_64                                                                             268/272 
  Cleanup    : nss-softokn-freebl-3.44.0-8.el7_7.x86_64                                                                   269/272 
  Cleanup    : glibc-2.17-307.el7.1.x86_64                                                                                270/272 
  Cleanup    : tzdata-2020a-1.el7.noarch                                                                                  271/272 
  Cleanup    : libgcc-4.8.5-39.el7.x86_64                                                                                 272/272 
  Verifying  : libcurl-7.29.0-59.el7_9.1.x86_64                                                                             1/272 
  Verifying  : libblkid-2.23.2-65.el7_9.1.x86_64                                                                            2/272 
  Verifying  : linux-firmware-20200421-80.git78c0348.el7_9.noarch                                                           3/272 
  Verifying  : rsyslog-8.24.0-57.el7_9.2.x86_64                                                                             4/272 
  Verifying  : tzdata-2022a-1.el7.noarch                                                                                    5/272 
  Verifying  : 1:grub2-tools-extra-2.02-0.87.0.1.el7.centos.9.x86_64                                                        6/272 
  Verifying  : selinux-policy-targeted-3.13.1-268.el7_9.2.noarch                                                            7/272 
  Verifying  : krb5-libs-1.15.1-51.el7_9.x86_64                                                                             8/272 
  Verifying  : libssh2-1.8.0-4.el7.x86_64                                                                                   9/272 
  Verifying  : 1:NetworkManager-tui-1.18.8-2.el7_9.x86_64                                                                  10/272 
  Verifying  : centos-release-7-9.2009.1.el7.centos.x86_64                                                                 11/272 
  Verifying  : libsmartcols-2.23.2-65.el7_9.1.x86_64                                                                       12/272 
  Verifying  : firewalld-0.6.3-13.el7_9.noarch                                                                             13/272 
  Verifying  : samba-common-4.10.16-18.el7_9.noarch                                                                        14/272 
  Verifying  : 1:grub2-pc-modules-2.02-0.87.0.1.el7.centos.9.noarch                                                        15/272 
  Verifying  : 1:NetworkManager-team-1.18.8-2.el7_9.x86_64                                                                 16/272 
  Verifying  : 1:mariadb-libs-5.5.68-1.el7.x86_64                                                                          17/272 
  Verifying  : 1:NetworkManager-libnm-1.18.8-2.el7_9.x86_64                                                                18/272 
  Verifying  : nss-3.67.0-4.el7_9.x86_64                                                                                   19/272 
  Verifying  : pyldb-1.5.4-2.el7.x86_64                                                                                    20/272 
  Verifying  : 1:openssl-1.0.2k-25.el7_9.x86_64                                                                            21/272 
  Verifying  : 1:dmidecode-3.2-5.el7_9.1.x86_64                                                                            22/272 
  Verifying  : kbd-1.15.5-16.el7_9.x86_64                                                                                  23/272 
  Verifying  : selinux-policy-3.13.1-268.el7_9.2.noarch                                                                    24/272 
  Verifying  : procps-ng-3.3.10-28.el7.x86_64                                                                              25/272 
  Verifying  : openldap-2.4.44-25.el7_9.x86_64                                                                             26/272 
  Verifying  : systemd-sysv-219-78.el7_9.5.x86_64                                                                          27/272 
  Verifying  : python-libs-2.7.5-90.el7.x86_64                                                                             28/272 
  Verifying  : bash-4.2.46-35.el7_9.x86_64                                                                                 29/272 
  Verifying  : libxml2-python-2.9.1-6.el7_9.6.x86_64                                                                       30/272 
  Verifying  : 7:device-mapper-1.02.170-6.el7_9.5.x86_64                                                                   31/272 
  Verifying  : python-firewall-0.6.3-13.el7_9.noarch                                                                       32/272 
  Verifying  : freetype-2.8-14.el7_9.1.x86_64                                                                              33/272 
  Verifying  : libgcc-4.8.5-44.el7.x86_64                                                                                  34/272 
  Verifying  : file-5.11-37.el7.x86_64                                                                                     35/272 
  Verifying  : gssproxy-0.7.0-30.el7_9.x86_64                                                                              36/272 
  Verifying  : libxml2-2.9.1-6.el7_9.6.x86_64                                                                              37/272 
  Verifying  : glibc-2.17-326.el7_9.x86_64                                                                                 38/272 
  Verifying  : cyrus-sasl-lib-2.1.26-24.el7_9.x86_64                                                                       39/272 
  Verifying  : chkconfig-1.7.6-1.el7.x86_64                                                                                40/272 
  Verifying  : e2fsprogs-1.42.9-19.el7.x86_64                                                                              41/272 
  Verifying  : e2fsprogs-libs-1.42.9-19.el7.x86_64                                                                         42/272 
  Verifying  : kpartx-0.4.9-135.el7_9.x86_64                                                                               43/272 
  Verifying  : elfutils-default-yama-scope-0.176-5.el7.noarch                                                              44/272 
  Verifying  : libmount-2.23.2-65.el7_9.1.x86_64                                                                           45/272 
  Verifying  : dracut-033-572.el7.x86_64                                                                                   46/272 
  Verifying  : 1:dbus-libs-1.10.24-15.el7.x86_64                                                                           47/272 
  Verifying  : 1:cups-libs-1.6.3-51.el7.x86_64                                                                             48/272 
  Verifying  : nss-util-3.67.0-1.el7_9.x86_64                                                                              49/272 
  Verifying  : nss-softokn-freebl-3.67.0-3.el7_9.x86_64                                                                    50/272 
  Verifying  : libldb-1.5.4-2.el7.x86_64                                                                                   51/272 
  Verifying  : util-linux-2.23.2-65.el7_9.1.x86_64                                                                         52/272 
  Verifying  : expat-2.1.0-14.el7_9.x86_64                                                                                 53/272 
  Verifying  : kbd-legacy-1.15.5-16.el7_9.noarch                                                                           54/272 
  Verifying  : kernel-tools-libs-3.10.0-1160.66.1.el7.x86_64                                                               55/272 
  Verifying  : binutils-2.27-44.base.el7_9.1.x86_64                                                                        56/272 
  Verifying  : 1:grub2-tools-minimal-2.02-0.87.0.1.el7.centos.9.x86_64                                                     57/272 
  Verifying  : 12:dhcp-libs-4.2.5-83.el7.centos.1.x86_64                                                                   58/272 
  Verifying  : zlib-1.2.7-20.el7_9.x86_64                                                                                  59/272 
  Verifying  : hwdata-0.252-9.7.el7.x86_64                                                                                 60/272 
  Verifying  : curl-7.29.0-59.el7_9.1.x86_64                                                                               61/272 
  Verifying  : 32:bind-export-libs-9.11.4-26.P2.el7_9.9.x86_64                                                             62/272 
  Verifying  : nettle-2.7.1-9.el7_9.x86_64                                                                                 63/272 
  Verifying  : 2:vim-minimal-7.4.629-8.el7_9.x86_64                                                                        64/272 
  Verifying  : samba-libs-4.10.16-18.el7_9.x86_64                                                                          65/272 
  Verifying  : libwbclient-4.10.16-18.el7_9.x86_64                                                                         66/272 
  Verifying  : libuuid-2.23.2-65.el7_9.1.x86_64                                                                            67/272 
  Verifying  : python-perf-3.10.0-1160.66.1.el7.x86_64                                                                     68/272 
  Verifying  : python-2.7.5-90.el7.x86_64                                                                                  69/272 
  Verifying  : openssh-clients-7.4p1-22.el7_9.x86_64                                                                       70/272 
  Verifying  : cronie-1.4.11-24.el7_9.x86_64                                                                               71/272 
  Verifying  : cronie-anacron-1.4.11-24.el7_9.x86_64                                                                       72/272 
  Verifying  : yum-plugin-fastestmirror-1.1.31-54.el7_8.noarch                                                             73/272 
  Verifying  : 1:nfs-utils-1.3.0-0.68.el7.2.x86_64                                                                         74/272 
  Verifying  : 7:device-mapper-libs-1.02.170-6.el7_9.5.x86_64                                                              75/272 
  Verifying  : bc-1.06.95-13.el7.x86_64                                                                                    76/272 
  Verifying  : ca-certificates-2021.2.50-72.el7_9.noarch                                                                   77/272 
  Verifying  : kernel-tools-3.10.0-1160.66.1.el7.x86_64                                                                    78/272 
  Verifying  : 1:dbus-1.10.24-15.el7.x86_64                                                                                79/272 
  Verifying  : libmspack-0.5-0.8.alpha.el7.x86_64                                                                          80/272 
  Verifying  : kernel-3.10.0-1160.66.1.el7.x86_64                                                                          81/272 
  Verifying  : xfsprogs-4.5.0-22.el7.x86_64                                                                                82/272 
  Verifying  : lshw-B.02.18-17.el7.x86_64                                                                                  83/272 
  Verifying  : libstdc++-4.8.5-44.el7.x86_64                                                                               84/272 
  Verifying  : file-libs-5.11-37.el7.x86_64                                                                                85/272 
  Verifying  : coreutils-8.22-24.el7_9.2.x86_64                                                                            86/272 
  Verifying  : 2:libpng-1.5.13-8.el7.x86_64                                                                                87/272 
  Verifying  : rpm-libs-4.11.3-48.el7_9.x86_64                                                                             88/272 
  Verifying  : nss-tools-3.67.0-4.el7_9.x86_64                                                                             89/272 
  Verifying  : 1:wpa_supplicant-2.6-12.el7_9.2.x86_64                                                                      90/272 
  Verifying  : 12:dhclient-4.2.5-83.el7.centos.1.x86_64                                                                    91/272 
  Verifying  : samba-common-libs-4.10.16-18.el7_9.x86_64                                                                   92/272 
  Verifying  : 1:grub2-common-2.02-0.87.0.1.el7.centos.9.noarch                                                            93/272 
  Verifying  : openssh-server-7.4p1-22.el7_9.x86_64                                                                        94/272 
  Verifying  : sudo-1.8.23-10.el7_9.2.x86_64                                                                               95/272 
  Verifying  : 1:grub2-pc-2.02-0.87.0.1.el7.centos.9.x86_64                                                                96/272 
  Verifying  : lz4-1.8.3-1.el7.x86_64                                                                                      97/272 
  Verifying  : virt-what-1.18-4.el7_9.1.x86_64                                                                             98/272 
  Verifying  : open-vm-tools-11.0.5-3.el7_9.3.x86_64                                                                       99/272 
  Verifying  : rpm-4.11.3-48.el7_9.x86_64                                                                                 100/272 
  Verifying  : samba-client-libs-4.10.16-18.el7_9.x86_64                                                                  101/272 
  Verifying  : 12:dhcp-common-4.2.5-83.el7.centos.1.x86_64                                                                102/272 
  Verifying  : openssh-7.4p1-22.el7_9.x86_64                                                                              103/272 
  Verifying  : glib2-2.56.1-9.el7_9.x86_64                                                                                104/272 
  Verifying  : nspr-4.32.0-1.el7_9.x86_64                                                                                 105/272 
  Verifying  : kbd-misc-1.15.5-16.el7_9.noarch                                                                            106/272 
  Verifying  : 1:grub2-tools-2.02-0.87.0.1.el7.centos.9.x86_64                                                            107/272 
  Verifying  : libcom_err-1.42.9-19.el7.x86_64                                                                            108/272 
  Verifying  : libcroco-0.6.12-6.el7_9.x86_64                                                                             109/272 
  Verifying  : libteam-1.29-3.el7.x86_64                                                                                  110/272 
  Verifying  : iproute-4.11.0-30.el7.x86_64                                                                               111/272 
  Verifying  : firewalld-filesystem-0.6.3-13.el7_9.noarch                                                                 112/272 
  Verifying  : yum-utils-1.1.31-54.el7_8.noarch                                                                           113/272 
  Verifying  : teamd-1.29-3.el7.x86_64                                                                                    114/272 
  Verifying  : 1:NetworkManager-1.18.8-2.el7_9.x86_64                                                                     115/272 
  Verifying  : 1:openssl-libs-1.0.2k-25.el7_9.x86_64                                                                      116/272 
  Verifying  : tuned-2.11.0-11.el7_9.noarch                                                                               117/272 
  Verifying  : nss-softokn-3.67.0-3.el7_9.x86_64                                                                          118/272 
  Verifying  : sed-4.2.2-7.el7.x86_64                                                                                     119/272 
  Verifying  : libss-1.42.9-19.el7.x86_64                                                                                 120/272 
  Verifying  : cpio-2.11-28.el7.x86_64                                                                                    121/272 
  Verifying  : 1:grub2-2.02-0.87.0.1.el7.centos.9.x86_64                                                                  122/272 
  Verifying  : gzip-1.5-11.el7_9.x86_64                                                                                   123/272 
  Verifying  : glibc-common-2.17-326.el7_9.x86_64                                                                         124/272 
  Verifying  : initscripts-9.49.53-1.el7_9.1.x86_64                                                                       125/272 
  Verifying  : rpm-python-4.11.3-48.el7_9.x86_64                                                                          126/272 
  Verifying  : yum-3.4.3-168.el7.centos.noarch                                                                            127/272 
  Verifying  : libgomp-4.8.5-44.el7.x86_64                                                                                128/272 
  Verifying  : libxslt-1.1.28-6.el7.x86_64                                                                                129/272 
  Verifying  : iptables-1.4.21-35.el7.x86_64                                                                              130/272 
  Verifying  : rpm-build-libs-4.11.3-48.el7_9.x86_64                                                                      131/272 
  Verifying  : nss-sysinit-3.67.0-4.el7_9.x86_64                                                                          132/272 
  Verifying  : systemd-libs-219-78.el7_9.5.x86_64                                                                         133/272 
  Verifying  : elfutils-libelf-0.176-5.el7.x86_64                                                                         134/272 
  Verifying  : polkit-0.112-26.el7_9.1.x86_64                                                                             135/272 
  Verifying  : systemd-219-78.el7_9.5.x86_64                                                                              136/272 
  Verifying  : elfutils-libs-0.176-5.el7.x86_64                                                                           137/272 
  Verifying  : 1:grub2-tools-2.02-0.81.el7.centos.x86_64                                                                  138/272 
  Verifying  : kpartx-0.4.9-131.el7.x86_64                                                                                139/272 
  Verifying  : centos-release-7-8.2003.0.el7.centos.x86_64                                                                140/272 
  Verifying  : nss-3.44.0-7.el7_7.x86_64                                                                                  141/272 
  Verifying  : libssh2-1.8.0-3.el7.x86_64                                                                                 142/272 
  Verifying  : 2:libpng-1.5.13-7.el7_2.x86_64                                                                             143/272 
  Verifying  : freetype-2.8-14.el7.x86_64                                                                                 144/272 
  Verifying  : libxml2-python-2.9.1-6.el7.4.x86_64                                                                        145/272 
  Verifying  : gzip-1.5-10.el7.x86_64                                                                                     146/272 
  Verifying  : libmount-2.23.2-63.el7.x86_64                                                                              147/272 
  Verifying  : rpm-build-libs-4.11.3-43.el7.x86_64                                                                        148/272 
  Verifying  : 1:openssl-libs-1.0.2k-19.el7.x86_64                                                                        149/272 
  Verifying  : virt-what-1.18-4.el7.x86_64                                                                                150/272 
  Verifying  : zlib-1.2.7-18.el7.x86_64                                                                                   151/272 
  Verifying  : util-linux-2.23.2-63.el7.x86_64                                                                            152/272 
  Verifying  : 7:device-mapper-libs-1.02.164-7.el7_8.1.x86_64                                                             153/272 
  Verifying  : ca-certificates-2019.2.32-76.el7_7.noarch                                                                  154/272 
  Verifying  : openssh-server-7.4p1-21.el7.x86_64                                                                         155/272 
  Verifying  : sed-4.2.2-6.el7.x86_64                                                                                     156/272 
  Verifying  : selinux-policy-3.13.1-266.el7.noarch                                                                       157/272 
  Verifying  : lz4-1.7.5-3.el7.x86_64                                                                                     158/272 
  Verifying  : initscripts-9.49.49-1.el7.x86_64                                                                           159/272 
  Verifying  : elfutils-libs-0.176-4.el7.x86_64                                                                           160/272 
  Verifying  : kernel-tools-libs-3.10.0-1127.el7.x86_64                                                                   161/272 
  Verifying  : cyrus-sasl-lib-2.1.26-23.el7.x86_64                                                                        162/272 
  Verifying  : yum-utils-1.1.31-53.el7.noarch                                                                             163/272 
  Verifying  : python-perf-3.10.0-1127.el7.x86_64                                                                         164/272 
  Verifying  : libsmartcols-2.23.2-63.el7.x86_64                                                                          165/272 
  Verifying  : 12:dhcp-libs-4.2.5-79.el7.centos.x86_64                                                                    166/272 
  Verifying  : 1:grub2-tools-extra-2.02-0.81.el7.centos.x86_64                                                            167/272 
  Verifying  : chkconfig-1.7.4-1.el7.x86_64                                                                               168/272 
  Verifying  : libmspack-0.5-0.7.alpha.el7.x86_64                                                                         169/272 
  Verifying  : 1:grub2-tools-minimal-2.02-0.81.el7.centos.x86_64                                                          170/272 
  Verifying  : systemd-219-73.el7_8.5.x86_64                                                                              171/272 
  Verifying  : samba-common-4.10.4-10.el7.noarch                                                                          172/272 
  Verifying  : python-2.7.5-88.el7.x86_64                                                                                 173/272 
  Verifying  : libldb-1.5.4-1.el7.x86_64                                                                                  174/272 
  Verifying  : nss-tools-3.44.0-7.el7_7.x86_64                                                                            175/272 
  Verifying  : 1:cups-libs-1.6.3-43.el7.x86_64                                                                            176/272 
  Verifying  : coreutils-8.22-24.el7.x86_64                                                                               177/272 
  Verifying  : 1:wpa_supplicant-2.6-12.el7.x86_64                                                                         178/272 
  Verifying  : nettle-2.7.1-8.el7.x86_64                                                                                  179/272 
  Verifying  : kbd-misc-1.15.5-15.el7.noarch                                                                              180/272 
  Verifying  : iproute-4.11.0-25.el7_7.2.x86_64                                                                           181/272 
  Verifying  : glib2-2.56.1-5.el7.x86_64                                                                                  182/272 
  Verifying  : yum-3.4.3-167.el7.centos.noarch                                                                            183/272 
  Verifying  : open-vm-tools-10.3.10-2.el7.x86_64                                                                         184/272 
  Verifying  : 2:vim-minimal-7.4.629-6.el7.x86_64                                                                         185/272 
  Verifying  : samba-common-libs-4.10.4-10.el7.x86_64                                                                     186/272 
  Verifying  : libteam-1.29-1.el7.x86_64                                                                                  187/272 
  Verifying  : libgcc-4.8.5-39.el7.x86_64                                                                                 188/272 
  Verifying  : nss-sysinit-3.44.0-7.el7_7.x86_64                                                                          189/272 
  Verifying  : firewalld-0.6.3-8.el7_8.1.noarch                                                                           190/272 
  Verifying  : openssh-clients-7.4p1-21.el7.x86_64                                                                        191/272 
  Verifying  : 1:openssl-1.0.2k-19.el7.x86_64                                                                             192/272 
  Verifying  : 1:NetworkManager-libnm-1.18.4-3.el7.x86_64                                                                 193/272 
  Verifying  : 7:device-mapper-1.02.164-7.el7_8.1.x86_64                                                                  194/272 
  Verifying  : libxml2-2.9.1-6.el7.4.x86_64                                                                               195/272 
  Verifying  : tzdata-2020a-1.el7.noarch                                                                                  196/272 
  Verifying  : selinux-policy-targeted-3.13.1-266.el7.noarch                                                              197/272 
  Verifying  : elfutils-libelf-0.176-4.el7.x86_64                                                                         198/272 
  Verifying  : rpm-python-4.11.3-43.el7.x86_64                                                                            199/272 
  Verifying  : file-5.11-36.el7.x86_64                                                                                    200/272 
  Verifying  : bash-4.2.46-34.el7.x86_64                                                                                  201/272 
  Verifying  : firewalld-filesystem-0.6.3-8.el7_8.1.noarch                                                                202/272 
  Verifying  : yum-plugin-fastestmirror-1.1.31-53.el7.noarch                                                              203/272 
  Verifying  : nspr-4.21.0-1.el7.x86_64                                                                                   204/272 
  Verifying  : nss-softokn-freebl-3.44.0-8.el7_7.x86_64                                                                   205/272 
  Verifying  : openldap-2.4.44-21.el7_6.x86_64                                                                            206/272 
  Verifying  : nss-softokn-3.44.0-8.el7_7.x86_64                                                                          207/272 
  Verifying  : samba-libs-4.10.4-10.el7.x86_64                                                                            208/272 
  Verifying  : tuned-2.11.0-8.el7.noarch                                                                                  209/272 
  Verifying  : rsyslog-8.24.0-52.el7.x86_64                                                                               210/272 
  Verifying  : 1:dmidecode-3.2-3.el7.x86_64                                                                               211/272 
  Verifying  : python-libs-2.7.5-88.el7.x86_64                                                                            212/272 
  Verifying  : libcom_err-1.42.9-17.el7.x86_64                                                                            213/272 
  Verifying  : gssproxy-0.7.0-28.el7.x86_64                                                                               214/272 
  Verifying  : cpio-2.11-27.el7.x86_64                                                                                    215/272 
  Verifying  : libcurl-7.29.0-57.el7.x86_64                                                                               216/272 
  Verifying  : procps-ng-3.3.10-27.el7.x86_64                                                                             217/272 
  Verifying  : file-libs-5.11-36.el7.x86_64                                                                               218/272 
  Verifying  : libcroco-0.6.12-4.el7.x86_64                                                                               219/272 
  Verifying  : iptables-1.4.21-34.el7.x86_64                                                                              220/272 
  Verifying  : 12:dhcp-common-4.2.5-79.el7.centos.x86_64                                                                  221/272 
  Verifying  : e2fsprogs-1.42.9-17.el7.x86_64                                                                             222/272 
  Verifying  : glibc-common-2.17-307.el7.1.x86_64                                                                         223/272 
  Verifying  : 1:NetworkManager-team-1.18.4-3.el7.x86_64                                                                  224/272 
  Verifying  : 32:bind-export-libs-9.11.4-16.P2.el7_8.2.x86_64                                                            225/272 
  Verifying  : 1:NetworkManager-tui-1.18.4-3.el7.x86_64                                                                   226/272 
  Verifying  : libgomp-4.8.5-39.el7.x86_64                                                                                227/272 
  Verifying  : libblkid-2.23.2-63.el7.x86_64                                                                              228/272 
  Verifying  : glibc-2.17-307.el7.1.x86_64                                                                                229/272 
  Verifying  : kbd-legacy-1.15.5-15.el7.noarch                                                                            230/272 
  Verifying  : e2fsprogs-libs-1.42.9-17.el7.x86_64                                                                        231/272 
  Verifying  : 1:dbus-libs-1.10.24-13.el7_6.x86_64                                                                        232/272 
  Verifying  : hwdata-0.252-9.5.el7.x86_64                                                                                233/272 
  Verifying  : 1:grub2-pc-modules-2.02-0.81.el7.centos.noarch                                                             234/272 
  Verifying  : libuuid-2.23.2-63.el7.x86_64                                                                               235/272 
  Verifying  : 1:NetworkManager-1.18.4-3.el7.x86_64                                                                       236/272 
  Verifying  : sudo-1.8.23-9.el7.x86_64                                                                                   237/272 
  Verifying  : 1:nfs-utils-1.3.0-0.66.el7.x86_64                                                                          238/272 
  Verifying  : polkit-0.112-26.el7.x86_64                                                                                 239/272 
  Verifying  : python-firewall-0.6.3-8.el7_8.1.noarch                                                                     240/272 
  Verifying  : samba-client-libs-4.10.4-10.el7.x86_64                                                                     241/272 
  Verifying  : 1:mariadb-libs-5.5.65-1.el7.x86_64                                                                         242/272 
  Verifying  : systemd-libs-219-73.el7_8.5.x86_64                                                                         243/272 
  Verifying  : rpm-libs-4.11.3-43.el7.x86_64                                                                              244/272 
  Verifying  : 12:dhclient-4.2.5-79.el7.centos.x86_64                                                                     245/272 
  Verifying  : 1:grub2-pc-2.02-0.81.el7.centos.x86_64                                                                     246/272 
  Verifying  : 1:grub2-common-2.02-0.81.el7.centos.noarch                                                                 247/272 
  Verifying  : rpm-4.11.3-43.el7.x86_64                                                                                   248/272 
  Verifying  : krb5-libs-1.15.1-46.el7.x86_64                                                                             249/272 
  Verifying  : openssh-7.4p1-21.el7.x86_64                                                                                250/272 
  Verifying  : xfsprogs-4.5.0-20.el7.x86_64                                                                               251/272 
  Verifying  : curl-7.29.0-57.el7.x86_64                                                                                  252/272 
  Verifying  : 1:dbus-1.10.24-13.el7_6.x86_64                                                                             253/272 
  Verifying  : cronie-anacron-1.4.11-23.el7.x86_64                                                                        254/272 
  Verifying  : libstdc++-4.8.5-39.el7.x86_64                                                                              255/272 
  Verifying  : elfutils-default-yama-scope-0.176-4.el7.noarch                                                             256/272 
  Verifying  : libwbclient-4.10.4-10.el7.x86_64                                                                           257/272 
  Verifying  : dracut-033-568.el7.x86_64                                                                                  258/272 
  Verifying  : pyldb-1.5.4-1.el7.x86_64                                                                                   259/272 
  Verifying  : kbd-1.15.5-15.el7.x86_64                                                                                   260/272 
  Verifying  : binutils-2.27-43.base.el7.x86_64                                                                           261/272 
  Verifying  : kernel-tools-3.10.0-1127.el7.x86_64                                                                        262/272 
  Verifying  : libxslt-1.1.28-5.el7.x86_64                                                                                263/272 
  Verifying  : 1:grub2-2.02-0.81.el7.centos.x86_64                                                                        264/272 
  Verifying  : systemd-sysv-219-73.el7_8.5.x86_64                                                                         265/272 
  Verifying  : libss-1.42.9-17.el7.x86_64                                                                                 266/272 
  Verifying  : lshw-B.02.18-14.el7.x86_64                                                                                 267/272 
  Verifying  : expat-2.1.0-11.el7.x86_64                                                                                  268/272 
  Verifying  : nss-util-3.44.0-4.el7_7.x86_64                                                                             269/272 
  Verifying  : linux-firmware-20191203-76.gite8a0f4c.el7.noarch                                                           270/272 
  Verifying  : cronie-1.4.11-23.el7.x86_64                                                                                271/272 
  Verifying  : teamd-1.29-1.el7.x86_64                                                                                    272/272 

Installed:
  kernel.x86_64 0:3.10.0-1160.66.1.el7                                                                                            

Dependency Installed:
  bc.x86_64 0:1.06.95-13.el7                                                                                                      

Updated:
  NetworkManager.x86_64 1:1.18.8-2.el7_9                           NetworkManager-libnm.x86_64 1:1.18.8-2.el7_9                  
  NetworkManager-team.x86_64 1:1.18.8-2.el7_9                      NetworkManager-tui.x86_64 1:1.18.8-2.el7_9                    
  bash.x86_64 0:4.2.46-35.el7_9                                    bind-export-libs.x86_64 32:9.11.4-26.P2.el7_9.9               
  binutils.x86_64 0:2.27-44.base.el7_9.1                           ca-certificates.noarch 0:2021.2.50-72.el7_9                   
  centos-release.x86_64 0:7-9.2009.1.el7.centos                    chkconfig.x86_64 0:1.7.6-1.el7                                
  coreutils.x86_64 0:8.22-24.el7_9.2                               cpio.x86_64 0:2.11-28.el7                                     
  cronie.x86_64 0:1.4.11-24.el7_9                                  cronie-anacron.x86_64 0:1.4.11-24.el7_9                       
  cups-libs.x86_64 1:1.6.3-51.el7                                  curl.x86_64 0:7.29.0-59.el7_9.1                               
  cyrus-sasl-lib.x86_64 0:2.1.26-24.el7_9                          dbus.x86_64 1:1.10.24-15.el7                                  
  dbus-libs.x86_64 1:1.10.24-15.el7                                device-mapper.x86_64 7:1.02.170-6.el7_9.5                     
  device-mapper-libs.x86_64 7:1.02.170-6.el7_9.5                   dhclient.x86_64 12:4.2.5-83.el7.centos.1                      
  dhcp-common.x86_64 12:4.2.5-83.el7.centos.1                      dhcp-libs.x86_64 12:4.2.5-83.el7.centos.1                     
  dmidecode.x86_64 1:3.2-5.el7_9.1                                 dracut.x86_64 0:033-572.el7                                   
  e2fsprogs.x86_64 0:1.42.9-19.el7                                 e2fsprogs-libs.x86_64 0:1.42.9-19.el7                         
  elfutils-default-yama-scope.noarch 0:0.176-5.el7                 elfutils-libelf.x86_64 0:0.176-5.el7                          
  elfutils-libs.x86_64 0:0.176-5.el7                               expat.x86_64 0:2.1.0-14.el7_9                                 
  file.x86_64 0:5.11-37.el7                                        file-libs.x86_64 0:5.11-37.el7                                
  firewalld.noarch 0:0.6.3-13.el7_9                                firewalld-filesystem.noarch 0:0.6.3-13.el7_9                  
  freetype.x86_64 0:2.8-14.el7_9.1                                 glib2.x86_64 0:2.56.1-9.el7_9                                 
  glibc.x86_64 0:2.17-326.el7_9                                    glibc-common.x86_64 0:2.17-326.el7_9                          
  grub2.x86_64 1:2.02-0.87.0.1.el7.centos.9                        grub2-common.noarch 1:2.02-0.87.0.1.el7.centos.9              
  grub2-pc.x86_64 1:2.02-0.87.0.1.el7.centos.9                     grub2-pc-modules.noarch 1:2.02-0.87.0.1.el7.centos.9          
  grub2-tools.x86_64 1:2.02-0.87.0.1.el7.centos.9                  grub2-tools-extra.x86_64 1:2.02-0.87.0.1.el7.centos.9         
  grub2-tools-minimal.x86_64 1:2.02-0.87.0.1.el7.centos.9          gssproxy.x86_64 0:0.7.0-30.el7_9                              
  gzip.x86_64 0:1.5-11.el7_9                                       hwdata.x86_64 0:0.252-9.7.el7                                 
  initscripts.x86_64 0:9.49.53-1.el7_9.1                           iproute.x86_64 0:4.11.0-30.el7                                
  iptables.x86_64 0:1.4.21-35.el7                                  kbd.x86_64 0:1.15.5-16.el7_9                                  
  kbd-legacy.noarch 0:1.15.5-16.el7_9                              kbd-misc.noarch 0:1.15.5-16.el7_9                             
  kernel-tools.x86_64 0:3.10.0-1160.66.1.el7                       kernel-tools-libs.x86_64 0:3.10.0-1160.66.1.el7               
  kpartx.x86_64 0:0.4.9-135.el7_9                                  krb5-libs.x86_64 0:1.15.1-51.el7_9                            
  libblkid.x86_64 0:2.23.2-65.el7_9.1                              libcom_err.x86_64 0:1.42.9-19.el7                             
  libcroco.x86_64 0:0.6.12-6.el7_9                                 libcurl.x86_64 0:7.29.0-59.el7_9.1                            
  libgcc.x86_64 0:4.8.5-44.el7                                     libgomp.x86_64 0:4.8.5-44.el7                                 
  libldb.x86_64 0:1.5.4-2.el7                                      libmount.x86_64 0:2.23.2-65.el7_9.1                           
  libmspack.x86_64 0:0.5-0.8.alpha.el7                             libpng.x86_64 2:1.5.13-8.el7                                  
  libsmartcols.x86_64 0:2.23.2-65.el7_9.1                          libss.x86_64 0:1.42.9-19.el7                                  
  libssh2.x86_64 0:1.8.0-4.el7                                     libstdc++.x86_64 0:4.8.5-44.el7                               
  libteam.x86_64 0:1.29-3.el7                                      libuuid.x86_64 0:2.23.2-65.el7_9.1                            
  libwbclient.x86_64 0:4.10.16-18.el7_9                            libxml2.x86_64 0:2.9.1-6.el7_9.6                              
  libxml2-python.x86_64 0:2.9.1-6.el7_9.6                          libxslt.x86_64 0:1.1.28-6.el7                                 
  linux-firmware.noarch 0:20200421-80.git78c0348.el7_9             lshw.x86_64 0:B.02.18-17.el7                                  
  lz4.x86_64 0:1.8.3-1.el7                                         mariadb-libs.x86_64 1:5.5.68-1.el7                            
  nettle.x86_64 0:2.7.1-9.el7_9                                    nfs-utils.x86_64 1:1.3.0-0.68.el7.2                           
  nspr.x86_64 0:4.32.0-1.el7_9                                     nss.x86_64 0:3.67.0-4.el7_9                                   
  nss-softokn.x86_64 0:3.67.0-3.el7_9                              nss-softokn-freebl.x86_64 0:3.67.0-3.el7_9                    
  nss-sysinit.x86_64 0:3.67.0-4.el7_9                              nss-tools.x86_64 0:3.67.0-4.el7_9                             
  nss-util.x86_64 0:3.67.0-1.el7_9                                 open-vm-tools.x86_64 0:11.0.5-3.el7_9.3                       
  openldap.x86_64 0:2.4.44-25.el7_9                                openssh.x86_64 0:7.4p1-22.el7_9                               
  openssh-clients.x86_64 0:7.4p1-22.el7_9                          openssh-server.x86_64 0:7.4p1-22.el7_9                        
  openssl.x86_64 1:1.0.2k-25.el7_9                                 openssl-libs.x86_64 1:1.0.2k-25.el7_9                         
  polkit.x86_64 0:0.112-26.el7_9.1                                 procps-ng.x86_64 0:3.3.10-28.el7                              
  pyldb.x86_64 0:1.5.4-2.el7                                       python.x86_64 0:2.7.5-90.el7                                  
  python-firewall.noarch 0:0.6.3-13.el7_9                          python-libs.x86_64 0:2.7.5-90.el7                             
  python-perf.x86_64 0:3.10.0-1160.66.1.el7                        rpm.x86_64 0:4.11.3-48.el7_9                                  
  rpm-build-libs.x86_64 0:4.11.3-48.el7_9                          rpm-libs.x86_64 0:4.11.3-48.el7_9                             
  rpm-python.x86_64 0:4.11.3-48.el7_9                              rsyslog.x86_64 0:8.24.0-57.el7_9.2                            
  samba-client-libs.x86_64 0:4.10.16-18.el7_9                      samba-common.noarch 0:4.10.16-18.el7_9                        
  samba-common-libs.x86_64 0:4.10.16-18.el7_9                      samba-libs.x86_64 0:4.10.16-18.el7_9                          
  sed.x86_64 0:4.2.2-7.el7                                         selinux-policy.noarch 0:3.13.1-268.el7_9.2                    
  selinux-policy-targeted.noarch 0:3.13.1-268.el7_9.2              sudo.x86_64 0:1.8.23-10.el7_9.2                               
  systemd.x86_64 0:219-78.el7_9.5                                  systemd-libs.x86_64 0:219-78.el7_9.5                          
  systemd-sysv.x86_64 0:219-78.el7_9.5                             teamd.x86_64 0:1.29-3.el7                                     
  tuned.noarch 0:2.11.0-11.el7_9                                   tzdata.noarch 0:2022a-1.el7                                   
  util-linux.x86_64 0:2.23.2-65.el7_9.1                            vim-minimal.x86_64 2:7.4.629-8.el7_9                          
  virt-what.x86_64 0:1.18-4.el7_9.1                                wpa_supplicant.x86_64 1:2.6-12.el7_9.2                        
  xfsprogs.x86_64 0:4.5.0-22.el7                                   yum.noarch 0:3.4.3-168.el7.centos                             
  yum-plugin-fastestmirror.noarch 0:1.1.31-54.el7_8                yum-utils.noarch 0:1.1.31-54.el7_8                            
  zlib.x86_64 0:1.2.7-20.el7_9                                    

Complete!

sambaパッケージ有無の確認

[vagrant@localhost ~]$ rpm -q samba   
パッケージ samba はインストールされていません。
[vagrant@localhost ~]$ rpm -aq | grep samba
samba-common-4.10.16-18.el7_9.noarch
samba-libs-4.10.16-18.el7_9.x86_64
samba-client-libs-4.10.16-18.el7_9.x86_64
samba-common-libs-4.10.16-18.el7_9.x86_64

samba本体はインストールされていません。
インストールします。

[vagrant@localhost ~]$ sudo yum install samba
読み込んだプラグイン:fastestmirror
Loading mirror speeds from cached hostfile
 * base: ftp.iij.ad.jp
 * extras: ftp.iij.ad.jp
 * updates: ftp.iij.ad.jp
依存性の解決をしています
--> トランザクションの確認を実行しています。
---> パッケージ samba.x86_64 0:4.10.16-18.el7_9 を インストール
--> 依存性の処理をしています: samba-common-tools = 4.10.16-18.el7_9 のパッケージ: samba-4.10.16-18.el7_9.x86_64
--> トランザクションの確認を実行しています。
---> パッケージ samba-common-tools.x86_64 0:4.10.16-18.el7_9 を インストール
--> 依存性解決を終了しました。

依存性を解決しました

==================================================================================================================================
 Package                              アーキテクチャー         バージョン                         リポジトリー               容量
==================================================================================================================================
インストール中:
 samba                                x86_64                   4.10.16-18.el7_9                   updates                   720 k
依存性関連でのインストールをします:
 samba-common-tools                   x86_64                   4.10.16-18.el7_9                   updates                   466 k

トランザクションの要約
==================================================================================================================================
インストール  1 パッケージ (+1 個の依存関係のパッケージ)

総ダウンロード容量: 1.2 M
インストール容量: 3.3 M
Is this ok [y/d/N]: y
Downloading packages:
(1/2): samba-4.10.16-18.el7_9.x86_64.rpm                                                                   | 720 kB  00:00:00     
(2/2): samba-common-tools-4.10.16-18.el7_9.x86_64.rpm                                                      | 466 kB  00:00:00     
----------------------------------------------------------------------------------------------------------------------------------
合計                                                                                              3.7 MB/s | 1.2 MB  00:00:00     
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
  インストール中          : samba-common-tools-4.10.16-18.el7_9.x86_64                                                        1/2 
  インストール中          : samba-4.10.16-18.el7_9.x86_64                                                                     2/2 
  検証中                  : samba-common-tools-4.10.16-18.el7_9.x86_64                                                        1/2 
  検証中                  : samba-4.10.16-18.el7_9.x86_64                                                                     2/2 

インストール:
  samba.x86_64 0:4.10.16-18.el7_9                                                                                                 

依存性関連をインストールしました:
  samba-common-tools.x86_64 0:4.10.16-18.el7_9                                                                                    

完了しました!
[vagrant@localhost ~]$ rpm -q samba
samba-4.10.16-18.el7_9.x86_64

sambaサーバーの起動

[vagrant@localhost ~]$ systemctl status smb
● smb.service - Samba SMB Daemon
   Loaded: loaded (/usr/lib/systemd/system/smb.service; disabled; vendor preset: disabled)
   Active: inactive (dead)
     Docs: man:smbd(8)
           man:samba(7)
           man:smb.conf(5)
[vagrant@localhost ~]$ sudo systemctl start smb
[vagrant@localhost ~]$ sudo systemctl start nmb
[vagrant@localhost ~]$ systemctl status smb
● smb.service - Samba SMB Daemon
   Loaded: loaded (/usr/lib/systemd/system/smb.service; disabled; vendor preset: disabled)
   Active: active (running) since 日 2022-05-29 05:04:13 UTC; 23s ago
     Docs: man:smbd(8)
           man:samba(7)
           man:smb.conf(5)
 Main PID: 11110 (smbd)
   Status: "smbd: ready to serve connections..."
   CGroup: /system.slice/smb.service
           ├─11110 /usr/sbin/smbd --foreground --no-process-group
           ├─11112 /usr/sbin/smbd --foreground --no-process-group
           ├─11113 /usr/sbin/smbd --foreground --no-process-group
           └─11114 /usr/sbin/smbd --foreground --no-process-group
[vagrant@localhost ~]$ systemctl status nmb
● nmb.service - Samba NMB Daemon
   Loaded: loaded (/usr/lib/systemd/system/nmb.service; disabled; vendor preset: disabled)
   Active: active (running) since 日 2022-05-29 05:04:17 UTC; 22s ago
     Docs: man:nmbd(8)
           man:samba(7)
           man:smb.conf(5)
 Main PID: 11123 (nmbd)
   Status: "nmbd: ready to serve connections..."
   CGroup: /system.slice/nmb.service
           └─11123 /usr/sbin/nmbd --foreground --no-process-group

共有用のディレクトリとファイルを作成

[vagrant@localhost ~]$ sudo mkdir /opt/share
[vagrant@localhost ~]$ sudo chmod 777 /opt/share/
[vagrant@localhost ~]$ touch /opt/share/share.txt
[vagrant@localhost ~]$ ls -l /opt/share/
合計 0
-rw-rw-r-- 1 vagrant vagrant 0  5月 29 06:02 share.txt

sambaの設定を変更

[vagrant@localhost ~]$ cat /etc/samba/smb.conf
# See smb.conf.example for a more detailed config file or
# read the smb.conf manpage.
# Run 'testparm' to verify the config is correct after
# you modified it.

[global]
    workgroup = SAMBA
    security = user

    passdb backend = tdbsam

    printing = cups
    printcap name = cups
    load printers = yes
    cups options = raw

[homes]
    comment = Home Directories
    valid users = %S, %D%w%S
    browseable = No
    read only = No
    inherit acls = Yes

[printers]
    comment = All Printers
    path = /var/tmp
    printable = Yes
    create mask = 0600
    browseable = No

[print$]
    comment = Printer Drivers
    path = /var/lib/samba/drivers
    write list = @printadmin root
    force group = @printadmin
    create mask = 0664
    directory mask = 0775
[vagrant@localhost ~]$ sudo vi /etc/samba/smb.conf
[vagrant@localhost ~]$ cat /etc/samba/smb.conf
[global]
    security = user
    map to guest = bad user

[share]
    path = /opt/share
    guest ok = yes

userにないユーザーがアクセスしてきた時に、guestとしてアクセスさせ、/opt/shareをshareとして公開し、guestユーザーはアクセスが可能、という意味のようです。

Windowsからアクセス

ファイルエクスプローラーから、\sambaサーバーのipアドレス で接続。

フォルダを作成しようとしたところ、権限がないとはじかれてしまいました。

書き込み権限を振り、サービスを再起動します。

[vagrant@localhost ~]$ sudo vi /etc/samba/smb.conf
[vagrant@localhost ~]$ cat /etc/samba/smb.conf
[global]
    security = user
    map to guest = bad user

[share]
    path = /opt/share
    guest ok = yes
    writable = yes
[vagrant@localhost ~]$ sudo systemctl restart smb
[vagrant@localhost ~]$ sudo systemctl restart nmb

書き込みができるようになりました。

windowsから作成したファイル/フォルダのパーミッション

見てみると、デフォルトでフォルダは755で作られるようです。
umask値は0002ですので、samba側でそのように設定しているみたいです。

[vagrant@localhost ~]$ ls -l /opt/share/
合計 0
drwxr-xr-x 2 nobody  nobody  6  5月 29 06:44 from_windows
-rwxr--r-- 1 nobody  nobody  0  5月 29 06:44 from_windows_text.txt
-rw-rw-r-- 1 vagrant vagrant 0  5月 29 06:02 share.txt
[vagrant@localhost ~]$ stat --format="%a %u %g %n" /opt/share/*
755 99 99 /opt/share/from_windows
744 99 99 /opt/share/from_windows_text.txt
664 1000 1000 /opt/share/share.txt
[vagrant@localhost ~]$ umask
0002

強制的にパーミッションを指定できるパラメータがあるので、それを設定してみます。

[vagrant@localhost ~]$ sudo vi /etc/samba/smb.conf
[vagrant@localhost ~]$ cat /etc/samba/smb.conf
[global]
    security = user
    map to guest = bad user

[share]
    path = /opt/share
    guest ok = yes
    writable = yes
    force directory mode = 775 #これを追加
[vagrant@localhost ~]$ ls -l /opt/share/
合計 0
drwxr-xr-x 2 nobody  nobody  6  5月 29 07:10 force
drwxr-xr-x 2 nobody  nobody  6  5月 29 06:44 from_windows
-rwxr--r-- 1 nobody  nobody  0  5月 29 06:44 from_windows_text.txt
-rw-rw-r-- 1 vagrant vagrant 0  5月 29 06:02 share.txt
[vagrant@localhost ~]$ sudo systemctl restart smb #restartしないと更新されないようです。
[vagrant@localhost ~]$ ls -l /opt/share/
合計 0
drwxr-xr-x 2 nobody  nobody  6  5月 29 07:10 force
drwxrwxr-x 2 nobody  nobody  6  5月 29 07:11 force2
drwxr-xr-x 2 nobody  nobody  6  5月 29 06:44 from_windows
-rwxr--r-- 1 nobody  nobody  0  5月 29 06:44 from_windows_text.txt
-rw-rw-r-- 1 vagrant vagrant 0  5月 29 06:02 share.txt

本日はこれにて終了です。